Home
last modified time | relevance | path

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

12

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DGsmAlphabetTest.java133 byte[] packed; in testBasic()
138 packed = GsmAlphabet.stringToGsm7BitPacked(testString.toString(), 0, 0); in testBasic()
140 GsmAlphabet.gsm7BitPackedToString(packed, 1, 0xff & packed[0])); in testBasic()
159 packed = GsmAlphabet.stringToGsm7BitPacked(testString.toString(), 0, 0); in testBasic()
161 GsmAlphabet.gsm7BitPackedToString(packed, 1, 0xff & packed[0])); in testBasic()
174 packed = GsmAlphabet.stringToGsm7BitPacked(testString.toString(), 0, 0); in testBasic()
176 GsmAlphabet.gsm7BitPackedToString(packed, 1, 0xff & packed[0])); in testBasic()
185 packed = GsmAlphabet.stringToGsm7BitPacked(testString.toString(), 0, 0); in testBasic()
187 GsmAlphabet.gsm7BitPackedToString(packed, 1, 0xff & packed[0])); in testBasic()
206 packed = GsmAlphabet.stringToGsm7BitPacked(testString.toString(), 0, 0); in testBasic()
[all …]
/frameworks/base/libs/common_time/
Dcommon_time_server_packets.cpp70 inline uint64_t unpackDeviceID(uint64_t packed) { in unpackDeviceID() argument
71 return (packed & kDeviceIDMask); in unpackDeviceID()
74 inline uint8_t unpackDevicePriority(uint64_t packed) { in unpackDevicePriority() argument
75 return static_cast<uint8_t>(packed >> kDevicePriorityShift); in unpackDevicePriority()
188 uint64_t packed = packDeviceID(senderDeviceID, senderDevicePriority); in serializePacket() local
189 SERIALIZE_INT64(packed); in serializePacket()
198 uint64_t packed; in deserializePacket() local
199 DESERIALIZE_INT64(packed); in deserializePacket()
200 senderDeviceID = unpackDeviceID(packed); in deserializePacket()
201 senderDevicePriority = unpackDevicePriority(packed); in deserializePacket()
[all …]
/frameworks/rs/scriptc/
Drs_value_types.rsh106 * Vector version of the half float type. Provides two half fields packed
116 * Vector version of the half float type. Provides three half fields packed
126 * Vector version of the half float type. Provides four half fields packed
258 * A vector of two floats. These two floats are packed into a single 64 bit field
261 * A vector of two floats. These two floats are packed into a single 64 bit field
269 * A vector of three floats. These three floats are packed into a single 128 bit field
277 * A vector of four floats type. These four floats are packed into a single 128 bit field
285 * A vector of two doubles. These two double fields packed into a single 128 bit field
293 * A vector of three doubles. These three double fields packed into a single 256 bit field
301 * A vector of four doubles. These four double fields packed into a single 256 bit field
[all …]
Drs_object_types.rsh36 } __attribute__((packed, aligned(4)))
132 * RS_TYPE_UNSIGNED_5_6_5, RS_TYPE_UNSIGNED_5_5_5_1, RS_TYPE_UNSIGNED_4_4_4_4 are for packed
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
DInput.java34 public boolean packed; field in Input
48 packed = false; in Input()
63 packed = in.readInt() == 1 ? true : false; in Input()
84 dest.writeInt(packed ? 1 : 0); in writeToParcel()
DResponseData.java80 public GetInkeyInputResponseData(String inData, boolean ucs2, boolean packed) { in GetInkeyInputResponseData() argument
83 mIsPacked = packed; in GetInkeyInputResponseData()
DCommandParamsFactory.java539 input.packed = (cmdDet.commandQualifier & 0x08) != 0; in processGetInput()
548 } else if (!input.packed && input.maxLen > MAX_GSM7_DEFAULT_CHARS) { in processGetInput()
DCatService.java988 input.ucs2, input.packed); in handleCmdResponse()
/frameworks/rs/
Drs_hal.h110 #define RS_BASE_OBJ(_t_) typedef struct { const _t_* p; } __attribute__((packed, aligned(4)))
124 typedef struct { const int* p; } __attribute__((packed, aligned(4))) rs_mesh;
125 typedef struct { const int* p; } __attribute__((packed, aligned(4))) rs_program_fragment;
126 typedef struct { const int* p; } __attribute__((packed, aligned(4))) rs_program_vertex;
127 typedef struct { const int* p; } __attribute__((packed, aligned(4))) rs_program_raster;
128 typedef struct { const int* p; } __attribute__((packed, aligned(4))) rs_program_store;
129 typedef struct { const int* p; } __attribute__((packed, aligned(4))) rs_font;
/frameworks/native/libs/binder/tests/
DbinderDriverInterfaceTest.cpp221 } __attribute__((packed)) bc1 = { in TEST_F()
241 } __attribute__((packed)) br; in TEST_F()
281 } __attribute__((packed)) bc2 = { in TEST_F()
308 } __attribute__((packed)) bc = { in TEST_F()
329 } __attribute__((packed)) br; in TEST_F()
/frameworks/base/docs/html/guide/topics/renderscript/reference/
Drs_value_types.jd518 <p> A vector of two chars. These two chars are packed into a single 16 bit field
532 <p> A vector of three chars. These three chars are packed into a single 32 bit field
546 <p> A vector of four chars. These four chars are packed into a single 32 bit field
560 <p> A vector of two doubles. These two double fields packed into a single 128 bit field
574 <p> A vector of three doubles. These three double fields packed into a single 256 bit field
588 <p> A vector of four doubles. These four double fields packed into a single 256 bit field
602 <p> A vector of two floats. These two floats are packed into a single 64 bit field
606 <p> A vector of two floats. These two floats are packed into a single 64 bit field
620 <p> A vector of three floats. These three floats are packed into a single 128 bit field
634 <p> A vector of four floats type. These four floats are packed into a single 128 bit field
[all …]
Drs_object_types.jd242 <p> RS_TYPE_UNSIGNED_5_6_5, RS_TYPE_UNSIGNED_5_5_5_1, RS_TYPE_UNSIGNED_4_4_4_4 are for packed
/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
Dmime_io.tab28 /* size of packed frame for each mode, excluding TOC byte */
32 /* number of unused speech bits in packed format for each mode */
/frameworks/rs/java/tests/Balls/src/com/example/android/rs/balls/
Dballs.rsh2 typedef struct __attribute__((packed, aligned(4))) Ball {
Dballs.rs14 typedef struct __attribute__((packed, aligned(4))) Point {
/frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/plugin/
DStream.h34 } __attribute__((packed));
/frameworks/native/cmds/servicemanager/
Dbinder.c176 } __attribute__((packed)) data; in binder_free_buffer()
192 } __attribute__((packed)) data; in binder_send_reply()
326 } __attribute__((packed)) data; in binder_link_to_death()
343 } __attribute__((packed)) writebuf; in binder_call()
474 } __attribute__((packed)) data; in binder_done()
/frameworks/minikin/doc/
Dhyb_file_format.md20 At heart, the file contains packed tries with suffix compression, actually quite similar
26 The second section contains the trie in packed form. It is an array of 3-tuples, packed
/frameworks/rs/api/
Drs_object_types.spec30 } __attribute__((packed, aligned(4)))
156 RS_TYPE_UNSIGNED_5_6_5, RS_TYPE_UNSIGNED_5_5_5_1, RS_TYPE_UNSIGNED_4_4_4_4 are for packed
/frameworks/base/include/androidfw/
DCursorWindow.h79 } __attribute((packed));
DResourceTypes.h181 } __attribute__((packed));
/frameworks/base/docs/html/distribute/stories/apps/
Dremember-the-milk.jd22 Remember The Milk</a> their feature-packed to-do list app; never forget the
/frameworks/minikin/tools/
Dmk_hyb_file.py364 packed = (pat_array[i] << pattern_shift) | (link_array[i] << link_shift) | ch_array[i]
365 result.append(struct.pack('<I', packed))
/frameworks/base/docs/html/training/custom-views/
Dcustom-drawing.jd168 values are stored as packed integers, and you use the static methods of
/frameworks/compile/slang/
DREADME.rst171 typedef struct __attribute__((packed, aligned(4))) Point {

12