Lines Matching full:as

31 // Returns a uint8_t with the value in `bytes` interpreted as the native endian
35 // encoding, such as when stored in shared-memory (or through IPC) as a byte
46 // Returns a uint16_t with the value in `bytes` interpreted as the native endian
50 // encoding, such as when stored in shared-memory (or through IPC) as a byte
57 // Returns a uint32_t with the value in `bytes` interpreted as the native endian
61 // encoding, such as when stored in shared-memory (or through IPC) as a byte
68 // Returns a uint64_t with the value in `bytes` interpreted as the native endian
72 // encoding, such as when stored in shared-memory (or through IPC) as a byte
79 // Returns a int8_t with the value in `bytes` interpreted as the native endian
83 // encoding, such as when stored in shared-memory (or through IPC) as a byte
93 // Returns a int16_t with the value in `bytes` interpreted as the native endian
97 // encoding, such as when stored in shared-memory (or through IPC) as a byte
104 // Returns a int32_t with the value in `bytes` interpreted as the native endian
108 // encoding, such as when stored in shared-memory (or through IPC) as a byte
115 // Returns a int64_t with the value in `bytes` interpreted as the native endian
119 // encoding, such as when stored in shared-memory (or through IPC) as a byte
127 // Returns a float with the value in `bytes` interpreted as the native endian
131 // encoding, such as when stored in shared-memory (or through IPC) as a byte
138 // Returns a double with the value in `bytes` interpreted as the native endian
142 // encoding, such as when stored in shared-memory (or through IPC) as a byte
150 // Returns a uint8_t with the value in `bytes` interpreted as a little-endian
156 // memory, such as when stored in shared-memory (or through IPC) as a byte
166 // Returns a uint16_t with the value in `bytes` interpreted as a little-endian
172 // memory, such as when stored in shared-memory (or through IPC) as a byte
178 // Returns a uint32_t with the value in `bytes` interpreted as a little-endian
184 // memory, such as when stored in shared-memory (or through IPC) as a byte
190 // Returns a uint64_t with the value in `bytes` interpreted as a little-endian
196 // memory, such as when stored in shared-memory (or through IPC) as a byte
202 // Returns a int8_t with the value in `bytes` interpreted as a little-endian
208 // memory, such as when stored in shared-memory (or through IPC) as a byte
217 // Returns a int16_t with the value in `bytes` interpreted as a little-endian
223 // memory, such as when stored in shared-memory (or through IPC) as a byte
229 // Returns a int32_t with the value in `bytes` interpreted as a little-endian
235 // memory, such as when stored in shared-memory (or through IPC) as a byte
241 // Returns a int64_t with the value in `bytes` interpreted as a little-endian
247 // memory, such as when stored in shared-memory (or through IPC) as a byte
253 // Returns a float with the value in `bytes` interpreted as a little-endian
259 // memory, such as when stored in shared-memory (or through IPC) as a byte
265 // Returns a double with the value in `bytes` interpreted as a little-endian
271 // memory, such as when stored in shared-memory (or through IPC) as a byte
278 // Returns a uint8_t with the value in `bytes` interpreted as a big-endian
282 // as for network order. Use the native-endian versions when working with values
283 // that were always in memory, such as when stored in shared-memory (or through
284 // IPC) as a byte buffer.
292 // Returns a uint16_t with the value in `bytes` interpreted as a big-endian
296 // as for network order. Use the native-endian versions when working with values
297 // that were always in memory, such as when stored in shared-memory (or through
298 // IPC) as a byte buffer.
302 // Returns a uint32_t with the value in `bytes` interpreted as a big-endian
306 // as for network order. Use the native-endian versions when working with values
307 // that were always in memory, such as when stored in shared-memory (or through
308 // IPC) as a byte buffer.
312 // Returns a uint64_t with the value in `bytes` interpreted as a big-endian
316 // as for network order. Use the native-endian versions when working with values
317 // that were always in memory, such as when stored in shared-memory (or through
318 // IPC) as a byte buffer.
322 // Returns a int8_t with the value in `bytes` interpreted as a big-endian
326 // as for network order. Use the native-endian versions when working with values
327 // that were always in memory, such as when stored in shared-memory (or through
328 // IPC) as a byte buffer.
336 // Returns a int16_t with the value in `bytes` interpreted as a big-endian
340 // as for network order. Use the native-endian versions when working with values
341 // that were always in memory, such as when stored in shared-memory (or through
342 // IPC) as a byte buffer.
346 // Returns a int32_t with the value in `bytes` interpreted as a big-endian
350 // as for network order. Use the native-endian versions when working with values
351 // that were always in memory, such as when stored in shared-memory (or through
352 // IPC) as a byte buffer.
356 // Returns a int64_t with the value in `bytes` interpreted as a big-endian
360 // as for network order. Use the native-endian versions when working with values
361 // that were always in memory, such as when stored in shared-memory (or through
362 // IPC) as a byte buffer.
366 // Returns a float with the value in `bytes` interpreted as a big-endian
370 // as for network order. Use the native-endian versions when working with values
371 // that were always in memory, such as when stored in shared-memory (or through
372 // IPC) as a byte buffer.
376 // Returns a double with the value in `bytes` interpreted as a big-endian
380 // as for network order. Use the native-endian versions when working with values
381 // that were always in memory, such as when stored in shared-memory (or through
382 // IPC) as a byte buffer.
388 // Returns a byte array holding the value of a uint8_t encoded as the native
392 // encoding, such as for storing in shared-memory (or sending through IPC) as a
398 // Returns a byte array holding the value of a uint16_t encoded as the native
402 // encoding, such as for storing in shared-memory (or sending through IPC) as a
408 // Returns a byte array holding the value of a uint32_t encoded as the native
412 // encoding, such as for storing in shared-memory (or sending through IPC) as a
418 // Returns a byte array holding the value of a uint64_t encoded as the native
422 // encoding, such as for storing in shared-memory (or sending through IPC) as a
428 // Returns a byte array holding the value of a int8_t encoded as the native
432 // encoding, such as for storing in shared-memory (or sending through IPC) as a
438 // Returns a byte array holding the value of a int16_t encoded as the native
442 // encoding, such as for storing in shared-memory (or sending through IPC) as a
448 // Returns a byte array holding the value of a int32_t encoded as the native
452 // encoding, such as for storing in shared-memory (or sending through IPC) as a
458 // Returns a byte array holding the value of a int64_t encoded as the native
462 // encoding, such as for storing in shared-memory (or sending through IPC) as a
468 // Returns a byte array holding the value of a float encoded as the native
472 // encoding, such as for storing in shared-memory (or sending through IPC) as a
478 // Returns a byte array holding the value of a double encoded as the native
482 // encoding, such as for storing in shared-memory (or sending through IPC) as a
489 // Returns a byte array holding the value of a uint8_t encoded as the
495 // memory, such as when stored in shared-memory (or passed through IPC) as a
500 // Returns a byte array holding the value of a uint16_t encoded as the
506 // memory, such as when stored in shared-memory (or passed through IPC) as a
511 // Returns a byte array holding the value of a uint32_t encoded as the
517 // memory, such as when stored in shared-memory (or passed through IPC) as a
522 // Returns a byte array holding the value of a uint64_t encoded as the
528 // memory, such as when stored in shared-memory (or passed through IPC) as a
533 // Returns a byte array holding the value of a int8_t encoded as the
539 // memory, such as when stored in shared-memory (or passed through IPC) as a
544 // Returns a byte array holding the value of a int16_t encoded as the
550 // memory, such as when stored in shared-memory (or passed through IPC) as a
555 // Returns a byte array holding the value of a int32_t encoded as the
561 // memory, such as when stored in shared-memory (or passed through IPC) as a
566 // Returns a byte array holding the value of a int64_t encoded as the
572 // memory, such as when stored in shared-memory (or passed through IPC) as a
577 // Returns a byte array holding the value of a float encoded as the
583 // memory, such as when stored in shared-memory (or passed through IPC) as a
588 // Returns a byte array holding the value of a double encoded as the
594 // memory, such as when stored in shared-memory (or passed through IPC) as a
600 // Returns a byte array holding the value of a uint8_t encoded as the big-endian
603 // This is suitable for encoding integers explicitly in big endian, such as for
605 // are always in memory, such as when stored in shared-memory (or passed through
606 // IPC) as a byte buffer. Use the little-endian encoding for storing and reading
611 // Returns a byte array holding the value of a uint16_t encoded as the
614 // This is suitable for encoding integers explicitly in big endian, such as for
616 // are always in memory, such as when stored in shared-memory (or passed through
617 // IPC) as a byte buffer. Use the little-endian encoding for storing and reading
622 // Returns a byte array holding the value of a uint32_t encoded as the
625 // This is suitable for encoding integers explicitly in big endian, such as for
627 // are always in memory, such as when stored in shared-memory (or passed through
628 // IPC) as a byte buffer. Use the little-endian encoding for storing and reading
633 // Returns a byte array holding the value of a uint64_t encoded as the
636 // This is suitable for encoding integers explicitly in big endian, such as for
638 // are always in memory, such as when stored in shared-memory (or passed through
639 // IPC) as a byte buffer. Use the little-endian encoding for storing and reading
644 // Returns a byte array holding the value of a int8_t encoded as the big-endian
647 // This is suitable for encoding integers explicitly in big endian, such as for
649 // are always in memory, such as when stored in shared-memory (or passed through
650 // IPC) as a byte buffer. Use the little-endian encoding for storing and reading
655 // Returns a byte array holding the value of a int16_t encoded as the
658 // This is suitable for encoding integers explicitly in big endian, such as for
660 // are always in memory, such as when stored in shared-memory (or passed through
661 // IPC) as a byte buffer. Use the little-endian encoding for storing and reading
666 // Returns a byte array holding the value of a int32_t encoded as the
669 // This is suitable for encoding integers explicitly in big endian, such as for
671 // are always in memory, such as when stored in shared-memory (or passed through
672 // IPC) as a byte buffer. Use the little-endian encoding for storing and reading
677 // Returns a byte array holding the value of a int64_t encoded as the
680 // This is suitable for encoding integers explicitly in big endian, such as for
682 // are always in memory, such as when stored in shared-memory (or passed through
683 // IPC) as a byte buffer. Use the little-endian encoding for storing and reading
688 // Returns a byte array holding the value of a float encoded as the big-endian
691 // This is suitable for encoding numbers explicitly in big endian, such as for
693 // are always in memory, such as when stored in shared-memory (or passed through
694 // IPC) as a byte buffer. Use the little-endian encoding for storing and reading
699 // Returns a byte array holding the value of a double encoded as the big-endian
702 // This is suitable for encoding numbers explicitly in big endian, such as for
704 // are always in memory, such as when stored in shared-memory (or passed through
705 // IPC) as a byte buffer. Use the little-endian encoding for storing and reading