Searched defs:packed (Results 1 - 4 of 4) sorted by path

/frameworks/av/media/libstagefright/foundation/
H A DColorUtils.cpp346 ColorAspects ColorUtils::unpackToColorAspects(uint32_t packed) { argument
348 aspects.mRange = (ColorAspects::Range)((packed >> 24) & 0xFF);
349 aspects.mPrimaries = (ColorAspects::Primaries)((packed >> 16) & 0xFF);
350 aspects.mMatrixCoeffs = (ColorAspects::MatrixCoeffs)((packed >> 8) & 0xFF);
351 aspects.mTransfer = (ColorAspects::Transfer)(packed & 0xFF);
/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/src/java/com/android/internal/telephony/cat/
H A DInput.java34 public boolean packed; field in class:Input
49 packed = false;
65 packed = in.readInt() == 1 ? true : false;
87 dest.writeInt(packed ? 1 : 0);
H A DResponseData.java80 public GetInkeyInputResponseData(String inData, boolean ucs2, boolean packed) { argument
83 mIsPacked = packed;
123 // since 7-bit GSM packed only requires ((mInData.length * 7) + 7) / 8 bytes.
159 buf.write(0x00); // 7 bit packed

Completed in 123 milliseconds