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

/frameworks/base/libs/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/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.java974 input.ucs2, input.packed);
H A DCommandParamsFactory.java499 input.packed = (cmdDet.commandQualifier & 0x08) != 0;
/frameworks/compile/libbcc/include/bcc/Renderscript/
H A DRSInfo.h54 struct __attribute__((packed)) ListHeader {
66 struct __attribute__((packed)) Header {
97 struct __attribute__((packed)) PragmaItem {
103 struct __attribute__((packed)) ObjectSlotItem {
107 struct __attribute__((packed)) ExportVarNameItem {
111 struct __attribute__((packed)) ExportFuncNameItem {
115 struct __attribute__((packed)) ExportForeachFuncItem {
/frameworks/rs/scriptc/
H A Drs_types.rsh128 #define RS_BASE_OBJ typedef struct { const int* const p; } __attribute__((packed, aligned(4)))
170 typedef struct { const int* const p; } __attribute__((packed, aligned(4))) rs_mesh;
176 typedef struct { const int* const p; } __attribute__((packed, aligned(4))) rs_path;
182 typedef struct { const int* const p; } __attribute__((packed, aligned(4))) rs_program_fragment;
188 typedef struct { const int* const p; } __attribute__((packed, aligned(4))) rs_program_vertex;
194 typedef struct { const int* const p; } __attribute__((packed, aligned(4))) rs_program_raster;
200 typedef struct { const int* const p; } __attribute__((packed, aligned(4))) rs_program_store;
206 typedef struct { const int* const p; } __attribute__((packed, aligned(4))) rs_font;
211 * Provides two float fields packed into a single 64 bit field with 64 bit
216 * Vector version of the basic float type. Provides three float fields packed
[all...]
/frameworks/rs/
H A Drs_hal.h60 #define RS_BASE_OBJ(_t_) typedef struct { const _t_* p; } __attribute__((packed, aligned(4)))
74 typedef struct { const int* p; } __attribute__((packed, aligned(4))) rs_mesh;
75 typedef struct { const int* p; } __attribute__((packed, aligned(4))) rs_path;
76 typedef struct { const int* p; } __attribute__((packed, aligned(4))) rs_program_fragment;
77 typedef struct { const int* p; } __attribute__((packed, aligned(4))) rs_program_vertex;
78 typedef struct { const int* p; } __attribute__((packed, aligned(4))) rs_program_raster;
79 typedef struct { const int* p; } __attribute__((packed, aligned(4))) rs_program_store;
80 typedef struct { const int* p; } __attribute__((packed, aligned(4))) rs_font;
/frameworks/base/include/androidfw/
H A DCursorWindow.h79 } __attribute((packed));
H A DResourceTypes.h178 } __attribute__((packed));
920 // - A single 16 bit little endian packed value representing an
943 // - An UN M.49 3 digit region code. For simplicity, these are packed
/frameworks/native/cmds/servicemanager/
H A Dbinder.c177 } __attribute__((packed)) data;
307 } __attribute__((packed)) data;
324 } __attribute__((packed)) writebuf;
455 } __attribute__((packed)) data;
/frameworks/base/core/jni/
H A DAndroid.mk13 LOCAL_CFLAGS += -DPACKED="__attribute__ ((packed))"
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp77 typedef struct { const int* const p; } __attribute__((packed, aligned(4))) t;

Completed in 195 milliseconds