Home
last modified time | relevance | path

Searched refs:packed (Results 1 – 25 of 36) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_aepack.py30 packed = aepack.pack(o)
31 unpacked = aepack.unpack(packed)
36 packed = aepack.pack(o)
37 unpacked = aepack.unpack(packed)
42 packed = aepack.pack(o)
43 unpacked = aepack.unpack(packed)
48 packed = aepack.pack(o)
49 unpacked = aepack.unpack(packed)
54 packed = aepack.pack(o)
55 unpacked = aepack.unpack(packed)
[all …]
Dtest_struct.py392 packed = struct.pack("<f", smaller)
393 unpacked = struct.unpack("<f", packed)[0]
398 self.assertEqual(bigpacked, string_reverse(packed))
405 packed = struct.pack(">f", big)
406 unpacked = struct.unpack(">f", packed)[0]
522 packed = struct.pack(prefix+'?', 1)
524 self.assertEqual(len(packed), struct.calcsize(prefix+'?'))
526 if len(packed) != 1:
528 %packed)
/device/google/contexthub/util/nanotool/
Dapptohostevent.h30 } __attribute((packed));
40 } __attribute__((packed));
45 } __attribute__((packed));
53 } __attribute__((packed));
111 } __attribute__((packed));
115 } __attribute__((packed));
121 } __attribute__((packed));
125 } __attribute__((packed));
132 } __attribute__((packed));
Dsensorevent.h45 } __attribute__((packed));
52 } __attribute__((packed));
71 } __attribute__((packed));
80 } __attribute__((packed));
87 } __attribute__((packed));
Dnanomessage.h87 } __attribute__((packed)) info;
95 } __attribute__((packed));
115 } __attribute__((packed)) response;
128 } __attribute__((packed)) request;
191 } __attribute__((packed)) config = {};
Dnanomessage.cpp243 } __attribute__((packed)); in GetBytes()
/device/linaro/hikey/wpan/uim/
Duim.h98 } __attribute__ ((packed)) hci_command_hdr;
104 } __attribute__ ((packed)) hci_event_hdr;
110 } __attribute__ ((packed)) evt_cmd_complete;
117 } __attribute__ ((packed)) evt_cmd_status;
126 } __attribute__ ((packed)) command_complete_t;
133 } __attribute__ ((packed)) uim_speed_change_cmd;
138 } __attribute__((packed)) bdaddr_t;
145 } __attribute__ ((packed)) uim_bdaddr_change_cmd;\
/device/google/contexthub/sensorhal/
Dhubconnection.h143 } __attribute__((packed));
149 } __attribute__((packed));
174 } __attribute__((packed));
180 } __attribute__((packed));
190 } __attribute__((packed));
212 } __attribute__((packed));
/device/google/dragon/recovery/updater/
Dfmap.h38 } __attribute__((packed));
50 } __attribute__((packed));
/device/linaro/bootloader/edk2/StdLib/Include/X64/machine/
Dfpu.h26 } __attribute__((packed));
51 } __attribute__ ((packed));
/device/asus/fugu/kernel-headers/linux/
Dpsb_drm.h322 } __attribute__((packed));
351 } __attribute__((packed));
362 } __attribute__((packed));
375 } __attribute__((packed));
391 } __attribute__((packed));
405 } __attribute__((packed));
432 } __attribute__((packed));
535 } __attribute__ ((packed));
550 } __attribute__((packed));
565 } __attribute__((packed));
[all …]
/device/asus/fugu/original-kernel-headers/linux/
Dpsb_drm.h357 } __attribute__((packed));
381 } __attribute__((packed));
410 } __attribute__((packed));
440 } __attribute__((packed));
458 } __attribute__((packed));
470 } __attribute__((packed));
495 } __attribute__((packed));
588 } __attribute__ ((packed));
605 } __attribute__((packed));
622 } __attribute__((packed));
[all …]
/device/google/contexthub/contexthubhal/
Dsystem_comms.h65 } __attribute__((packed));
75 } __attribute__((packed));
77 } __attribute__((packed));
87 } __attribute__((packed));
Dnanohubhal.h42 } __attribute__((packed));
47 } __attribute__((packed));
/device/google/contexthub/firmware/os/platform/stm32/inc/plat/
DeeData.h30 } __attribute__((packed));
/device/google/contexthub/lib/include/nanohub/
Dnanohub.h68 } __attribute__((packed));
75 } __attribute__((packed));
/device/google/contexthub/firmware/app/test0.app/
Dtest_app0.c32 } __attribute__((packed));
/device/linaro/bootloader/arm-trusted-firmware/plat/hikey/include/
Dusb.h684 } __attribute__ ((packed));
731 } __attribute__((packed));
749 } __attribute__((packed));
779 } __attribute__ ((packed));
/device/google/contexthub/firmware/app/chre/chre_test0.app/
Dmain.c36 } __attribute__((packed));
/device/google/contexthub/firmware/app/chre/chre_test1.app/
Dmain.cpp36 } __attribute__((packed));
/device/google/contexthub/firmware/os/inc/
Dtoolchain.h104 #define ATTRIBUTE_PACKED __attribute__((packed))
/device/google/contexthub/firmware/os/drivers/bosch_bmp280/
Dbosch_bmp280.c94 } __attribute__((packed));
133 } __attribute__((packed));
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dsocketmodule.c3953 char packed[MAX(sizeof(struct in_addr), sizeof(struct in6_addr))]; local
3955 char packed[sizeof(struct in_addr)]; local
3969 retval = inet_pton(af, ip, packed);
3978 return PyString_FromStringAndSize(packed,
3982 return PyString_FromStringAndSize(packed,
4000 char* packed; local
4012 if (!PyArg_ParseTuple(args, "is#:inet_ntop", &af, &packed, &len)) {
4036 retval = inet_ntop(af, packed, ip, sizeof(ip));
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dsocketmodule.c4035 char packed[MAX(sizeof(struct in_addr), sizeof(struct in6_addr))]; local
4037 char packed[sizeof(struct in_addr)]; local
4051 retval = inet_pton(af, ip, packed);
4060 return PyString_FromStringAndSize(packed,
4064 return PyString_FromStringAndSize(packed,
4082 char* packed; local
4094 if (!PyArg_ParseTuple(args, "is#:inet_ntop", &af, &packed, &len)) {
4118 retval = inet_ntop(af, packed, ip, sizeof(ip));
/device/google/contexthub/util/nanoapp_cmd/
Dnanoapp_cmd.c72 } __attribute__((packed));

12