Home
last modified time | relevance | path

Searched refs:entryBytes (Results 1 – 4 of 4) sorted by relevance

/aosp12/packages/modules/GeoTZ/s2storage/src/readonly/java/com/android/timezone/location/storage/table/packed/read/
H A DPackedTableReader.java162 long entryBytes = getEntryBytesForIndex(i); in getEntryByIndex() local
163 return new Entry(i, entryBytes); in getEntryByIndex()
191 long entryBytes = getEntryBytesForIndex(mid); in binarySearch() local
192 int entryKey = getKeyFromEntryBytes(entryBytes); in binarySearch()
200 return new Entry(mid, entryBytes); in binarySearch()
214 private int getKeyFromEntryBytes(long entryBytes) { in getKeyFromEntryBytes() argument
222 private int getIntValueFromEntryBytes(long entryBytes) { in getIntValueFromEntryBytes() argument
224 long value = getLongValueFromEntryBytes(entryBytes); in getIntValueFromEntryBytes()
256 Entry(int index, long entryBytes) { in Entry() argument
258 mEntryBytes = entryBytes; in Entry()
[all …]
/aosp12/packages/modules/GeoTZ/s2storage/src/write/java/com/android/timezone/location/storage/table/packed/write/
H A DPackedTableWriter.java121 long entryBytes = createEntryBytes(mEntrySizeBitCount, mKeySizeBits, key, value, in addEntry() local
123 mBlockDataOutputStream.writeVarByteValue(mEntrySizeByteCount, entryBytes); in addEntry()
138 long entryBytes = ((long) key) << valueSizeBits; in createEntryBytes() local
141 entryBytes |= (value & valueMask); in createEntryBytes()
142 return entryBytes; in createEntryBytes()
/aosp12/frameworks/av/services/camera/libcameraservice/utils/
H A DTagMonitor.cpp167 size_t entryBytes = bytesPerValue * lastEntry.count; in monitorSingleMetadata() local
168 int cmp = memcmp(entry.data.u8, lastEntry.data.u8, entryBytes); in monitorSingleMetadata()
/aosp12/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Device.cpp4631 size_t entryBytes = bytesPerValue * lastEntry.count; in updateSessionParameters() local
4632 int cmp = memcmp(entry.data.u8, lastEntry.data.u8, entryBytes); in updateSessionParameters()