Home
last modified time | relevance | path

Searched refs:extraBytes (Results 1 – 7 of 7) sorted by relevance

/aosp12/packages/modules/GeoTZ/s2storage/src/readonly/java/com/android/timezone/location/storage/tzs2range/read/
H A DSuffixTableExtraInfo.java71 byte[] extraBytes = blockInfo.getExtraBytes(); in create()
72 if (extraBytes == null || extraBytes.length == 0) { in create()
78 new ByteArrayInputStream(extraBytes))) { in create()
/aosp12/packages/modules/GeoTZ/s2storage/src/test/java/com/android/timezone/location/storage/block/read/
H A DBlockInfoTest.java34 byte[] extraBytes = "Extra bytes".getBytes(); in visit()
35 BlockInfo blockInfo = new BlockInfo(id, type, startOffset, size, extraBytes); in visit()
/aosp12/packages/modules/GeoTZ/s2storage/src/write/java/com/android/timezone/location/storage/block/write/
H A DBlockFileWriter.java135 byte[] extraBytes = blockInfo.getExtraBytes(); in writeHeaderAndAppendTempFile()
136 int blockInfoSize = blockInfoLengthWithoutExtraBytes + extraBytes.length; in writeHeaderAndAppendTempFile()
141 bos.writeTinyByteArray(extraBytes); in writeHeaderAndAppendTempFile()
/aosp12/packages/modules/GeoTZ/s2storage/src/readonly/java/com/android/timezone/location/storage/block/read/
H A DBlockInfo.java46 byte[] extraBytes) { in BlockInfo() argument
51 mExtraBytes = extraBytes; in BlockInfo()
H A DBlockFileReader.java122 byte[] extraBytes = tis.readTinyVarByteArray(); in open()
124 blockDataSizeBytes, extraBytes); in open()
/aosp12/packages/modules/NeuralNetworks/runtime/
H A DModelBuilder.cpp163 uint32_t extraBytes = alignBytesNeeded(existingSize, valueLength); in setOperandValue() local
164 mSmallOperandValues.resize(existingSize + extraBytes + valueLength); in setOperandValue()
167 .poolIndex = 0, .offset = existingSize + extraBytes, .length = valueLength}; in setOperandValue()
/aosp12/frameworks/base/telephony/java/android/telephony/
H A DPhoneNumberUtils.java1210 int extraBytes = 1; // Prepended TOA byte. in numberToCalledPartyBCDHelper() local
1211 if (includeLength) extraBytes++; // Optional prepended length byte. in numberToCalledPartyBCDHelper()
1212 resultLen += extraBytes; in numberToCalledPartyBCDHelper()
1221 result[extraBytes + (digitCount >> 1)] |= in numberToCalledPartyBCDHelper()
1227 if ((digitCount & 0x01) == 1) result[extraBytes + (digitCount >> 1)] |= 0xF0; in numberToCalledPartyBCDHelper()