Searched refs:packed (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/services/common_time/
H A Dcommon_time_server_packets.cpp70 inline uint64_t unpackDeviceID(uint64_t packed) { argument
71 return (packed & kDeviceIDMask);
74 inline uint8_t unpackDevicePriority(uint64_t packed) { argument
75 return static_cast<uint8_t>(packed >> kDevicePriorityShift);
188 uint64_t packed = packDeviceID(senderDeviceID, senderDevicePriority); local
189 SERIALIZE_INT64(packed);
198 uint64_t packed; local
199 DESERIALIZE_INT64(packed);
200 senderDeviceID = unpackDeviceID(packed);
201 senderDevicePriority = unpackDevicePriority(packed);
210 uint64_t packed = packDeviceID(deviceID, devicePriority); local
220 uint64_t packed; local
274 uint64_t packed = packDeviceID(deviceID, devicePriority); local
284 uint64_t packed; local
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DGsmAlphabetTest.java133 byte[] packed;
138 packed = GsmAlphabet.stringToGsm7BitPacked(testString.toString(), 0, 0);
140 GsmAlphabet.gsm7BitPackedToString(packed, 1, 0xff & packed[0]));
159 packed = GsmAlphabet.stringToGsm7BitPacked(testString.toString(), 0, 0);
161 GsmAlphabet.gsm7BitPackedToString(packed, 1, 0xff & packed[0]));
174 packed = GsmAlphabet.stringToGsm7BitPacked(testString.toString(), 0, 0);
176 GsmAlphabet.gsm7BitPackedToString(packed, 1, 0xff & packed[
[all...]
/frameworks/rs/scriptc/
H A Drs_types.rsh122 typedef struct { const int* const p; } __attribute__((packed, aligned(4))) rs_element;
128 typedef struct { const int* const p; } __attribute__((packed, aligned(4))) rs_type;
134 typedef struct { const int* const p; } __attribute__((packed, aligned(4))) rs_allocation;
140 typedef struct { const int* const p; } __attribute__((packed, aligned(4))) rs_sampler;
146 typedef struct { const int* const p; } __attribute__((packed, aligned(4))) rs_script;
152 typedef struct { const int* const p; } __attribute__((packed, aligned(4))) rs_mesh;
158 typedef struct { const int* const p; } __attribute__((packed, aligned(4))) rs_path;
164 typedef struct { const int* const p; } __attribute__((packed, aligned(4))) rs_program_fragment;
170 typedef struct { const int* const p; } __attribute__((packed, aligned(4))) rs_program_vertex;
176 typedef struct { const int* const p; } __attribute__((packed, aligne
[all...]
/frameworks/compile/libbcc/include/bcc/Renderscript/
H A DRSInfo.h53 struct __attribute__((packed)) ListHeader {
63 struct __attribute__((packed)) Header {
88 struct __attribute__((packed)) DependencyTableItem {
95 struct __attribute__((packed)) PragmaItem {
101 struct __attribute__((packed)) ObjectSlotItem {
105 struct __attribute__((packed)) ExportVarNameItem {
109 struct __attribute__((packed)) ExportFuncNameItem {
113 struct __attribute__((packed)) ExportForeachFuncItem {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DInput.java34 public boolean packed; field in class:Input
48 packed = false;
63 packed = in.readInt() == 1 ? true : false;
84 dest.writeInt(packed ? 1 : 0);
H A DResponseData.java80 public GetInkeyInputResponseData(String inData, boolean ucs2, boolean packed) { argument
83 mIsPacked = packed;
148 buf.write(0x00); // 7 bit packed
H A DCatService.java713 input.ucs2, input.packed);
H A DCommandParamsFactory.java488 input.packed = (cmdDet.commandQualifier & 0x08) != 0;
/frameworks/base/include/androidfw/
H A DCursorWindow.h79 } __attribute((packed));
/frameworks/base/core/jni/
H A DAndroid.mk9 LOCAL_CFLAGS += -DPACKED="__attribute__ ((packed))"
/frameworks/native/cmds/servicemanager/
H A Dbinder.c170 } __attribute__((packed)) data;
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp77 typedef struct { const int* const p; } __attribute__((packed, aligned(4))) t;

Completed in 332 milliseconds