HomeSort by relevance Sort by last modified time
    Searched refs:byte_order (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/libunwind/src/aarch64/
Gcreate_addr_space.c 32 unw_create_addr_space (unw_accessors_t *a, int byte_order)
40 if (byte_order != 0 && byte_order != __LITTLE_ENDIAN
41 && byte_order != __BIG_ENDIAN)
53 if (byte_order == 0 || byte_order == __LITTLE_ENDIAN)
  /external/libunwind/src/arm/
Gcreate_addr_space.c 30 unw_create_addr_space (unw_accessors_t *a, int byte_order)
40 if (byte_order != 0 && byte_order != __LITTLE_ENDIAN
41 && byte_order != __BIG_ENDIAN)
53 if (byte_order == 0 || byte_order == __LITTLE_ENDIAN)
  /external/libunwind/src/ia64/
Gcreate_addr_space.c 31 unw_create_addr_space (unw_accessors_t *a, int byte_order)
42 if (byte_order != 0
43 && byte_order != __LITTLE_ENDIAN
44 && byte_order != __BIG_ENDIAN)
56 if (byte_order == 0)
60 as->big_endian = (byte_order == __BIG_ENDIAN);
  /external/libunwind/src/sh/
Gcreate_addr_space.c 31 unw_create_addr_space (unw_accessors_t *a, int byte_order)
39 if (byte_order != 0 && byte_order != __LITTLE_ENDIAN
40 && byte_order != __BIG_ENDIAN)
52 if (byte_order == 0 || byte_order == __LITTLE_ENDIAN)
  /external/libunwind/src/mips/
Gcreate_addr_space.c 30 unw_create_addr_space (unw_accessors_t *a, int byte_order)
41 if (byte_order != 0
42 && byte_order != __LITTLE_ENDIAN
43 && byte_order != __BIG_ENDIAN)
54 if (byte_order == 0)
58 as->big_endian = (byte_order == __BIG_ENDIAN);
  /external/libunwind/src/hppa/
Gcreate_addr_space.c 31 unw_create_addr_space (unw_accessors_t *a, int byte_order)
41 if (byte_order != 0 && byte_order != __BIG_ENDIAN)
  /external/libunwind/src/ppc/
Gcreate_addr_space.c 33 unw_create_addr_space (unw_accessors_t *a, int byte_order)
43 if (byte_order != 0 && byte_order != __BIG_ENDIAN)
  /external/libunwind/src/x86/
Gcreate_addr_space.c 35 unw_create_addr_space (unw_accessors_t *a, int byte_order)
45 if (byte_order != 0 && byte_order != __LITTLE_ENDIAN)
  /external/libunwind/src/x86_64/
Gcreate_addr_space.c 38 unw_create_addr_space (unw_accessors_t *a, int byte_order)
48 if (byte_order != 0 && byte_order != __LITTLE_ENDIAN)
  /external/dbus/dbus/
dbus-marshal-byteswap-util.c 32 do_byteswap_test (int byte_order)
42 opposite_order = byte_order == DBUS_LITTLE_ENDIAN ? DBUS_BIG_ENDIAN : DBUS_LITTLE_ENDIAN;
46 byte_order,
60 byte_order,
64 _dbus_type_reader_init (&body_reader, byte_order, &signature, 0,
93 sequence, byte_order, opposite_order);
dbus-marshal-basic.c 92 int byte_order,
97 if ((byte_order) == DBUS_LITTLE_ENDIAN)
105 int byte_order,
110 if ((byte_order) == DBUS_LITTLE_ENDIAN)
118 int byte_order,
124 if ((byte_order) == DBUS_LITTLE_ENDIAN)
130 swap_8_octets ((DBusBasicValue*)data, byte_order);
138 * @param byte_order the byte order to use
143 int byte_order,
146 pack_4_octets (value, byte_order, data)
1702 int byte_order; local
    [all...]
dbus-marshal-basic.h 150 #define _dbus_unpack_uint16(byte_order, data) \
151 (((byte_order) == DBUS_LITTLE_ENDIAN) ? \
155 #define _dbus_unpack_uint32(byte_order, data) \
156 (((byte_order) == DBUS_LITTLE_ENDIAN) ? \
162 dbus_uint16_t _dbus_unpack_uint16 (int byte_order,
167 int byte_order,
170 dbus_uint32_t _dbus_unpack_uint32 (int byte_order,
178 int byte_order,
185 int byte_order,
192 int byte_order,
    [all...]
dbus-marshal-recursive.h 41 dbus_uint32_t byte_order : 8; /**< byte order of the block */ member in struct:DBusTypeReader
66 dbus_uint32_t byte_order : 8; /**< byte order to write values with */ member in struct:DBusTypeWriter
100 int byte_order,
140 int byte_order,
146 int byte_order,
154 int byte_order,
dbus-marshal-header.h 59 dbus_uint32_t byte_order : 8; /**< byte order of header */ member in struct:DBusHeader
66 int byte_order,
105 int *byte_order,
115 int byte_order,
dbus-marshal-header.c 455 * @param byte_order byte order of the header
527 int byte_order,
540 _dbus_assert (byte_order == DBUS_LITTLE_ENDIAN ||
541 byte_order == DBUS_BIG_ENDIAN);
550 _dbus_type_writer_init_values_only (&writer, byte_order,
555 v_BYTE = byte_order;
661 * @param byte_order return location for byte order
673 int *byte_order,
692 *byte_order = _dbus_string_get_byte (str, start + BYTE_ORDER_OFFSET);
694 if (*byte_order != DBUS_LITTLE_ENDIAN && *byte_order != DBUS_BIG_ENDIAN
1497 char byte_order; local
    [all...]
dbus-message-factory.c 173 char byte_order; local
183 byte_order = _dbus_header_get_byte_order (&message->header);
191 byte_order,
208 byte_order);
584 char byte_order; local
587 byte_order = _dbus_header_get_byte_order (&message->header);
592 byte_order);
595 byte_order);
870 int byte_order; local
874 byte_order = _dbus_string_get_byte (data, BYTE_ORDER_OFFSET)
1118 int byte_order; local
    [all...]
dbus-marshal-recursive.c 104 reader->byte_order, NULL));
110 reader->byte_order);
146 int byte_order,
152 reader->byte_order = byte_order;
166 parent->byte_order,
225 array_len = _dbus_unpack_uint32 (reader->byte_order,
483 reader->byte_order,
493 current_type, reader->byte_order,
603 reader->byte_order,
    [all...]
dbus-test.h 75 int byte_order,
dbus-marshal-validate.c 299 int byte_order,
361 dbus_uint32_t v = _dbus_unpack_uint32 (byte_order,
386 claimed_len = _dbus_unpack_uint32 (byte_order, p);
475 v = _dbus_unpack_uint32 (byte_order, p);
494 validity = validate_body_helper (&sub, byte_order, FALSE,
613 validity = validate_body_helper (&sub, byte_order, FALSE,
644 validity = validate_body_helper (&sub, byte_order, TRUE,
695 * @param byte_order the byte order
705 int byte_order,
731 validity = validate_body_helper (&reader, byte_order, TRUE, 0, p, end, &p)
    [all...]
  /external/webrtc/webrtc/base/
bytebuffer.h 30 // |byte_order| defines order of bytes in the buffer.
32 explicit ByteBuffer(ByteOrder byte_order);
34 ByteBuffer(const char* bytes, size_t len, ByteOrder byte_order);
106 void Construct(const char* bytes, size_t size, ByteOrder byte_order);
bytebuffer.cc 29 ByteBuffer::ByteBuffer(ByteOrder byte_order) {
30 Construct(NULL, DEFAULT_SIZE, byte_order);
37 ByteBuffer::ByteBuffer(const char* bytes, size_t len, ByteOrder byte_order) {
38 Construct(bytes, len, byte_order);
50 ByteOrder byte_order) {
54 byte_order_ = byte_order;
  /external/srtp/crypto/test/
datatypes_driver.c 52 byte_order(void);
84 byte_order();
146 /* byte_order() prints out byte ordering of datatypes */
149 byte_order(void) { function
  /external/dbus/test/
break-loader.c 300 int byte_order; local
322 byte_order = *d;
327 orig = _dbus_demarshal_uint32 (mutated, byte_order, i, NULL);
331 _dbus_marshal_set_uint32 (mutated, byte_order, i,
340 int byte_order; local
380 byte_order = *d;
385 orig = _dbus_demarshal_uint32 (mutated, byte_order, i, NULL);
392 _dbus_marshal_set_uint32 (mutated, byte_order, i,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
XWDFile.h 62 CARD32 byte_order B32; /* of image data: MSBFirst, LSBFirst */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
XWDFile.h 62 CARD32 byte_order B32; /* of image data: MSBFirst, LSBFirst */

Completed in 328 milliseconds

1 2 3