Home
last modified time | relevance | path

Searched refs:byteIndex (Results 1 – 5 of 5) sorted by relevance

/aosp12/system/chre/host/common/
H A Dfragmented_load_transaction.cc58 size_t byteIndex = 0; in FragmentedLoadTransaction() local
64 getSubVector(appBinary, byteIndex, fragmentSize)); in FragmentedLoadTransaction()
68 getSubVector(appBinary, byteIndex, fragmentSize)); in FragmentedLoadTransaction()
71 byteIndex += fragmentSize; in FragmentedLoadTransaction()
72 } while (byteIndex < appBinary.size()); in FragmentedLoadTransaction()
/aosp12/build/blueprint/parser/
H A Dsort.go37 byteIndex := 0
43 for ; byteIndex < minLength; byteIndex++ {
44 aByte, bByte = a[byteIndex], b[byteIndex]
52 numberStartIndex = byteIndex
57 if byteIndex == minLength {
83 numberStartIndex = byteIndex
/aosp12/hardware/interfaces/automotive/vehicle/2.0/default/common/src/
H A DObd2SensorStore.cpp37 const size_t byteIndex = index / 8; in set() local
39 const uint8_t byte = mStorage[byteIndex]; in set()
41 mStorage[byteIndex] = newValue; in set()
45 const size_t byteIndex = index / 8; in get() local
47 const uint8_t byte = mStorage[byteIndex]; in get()
/aosp12/packages/services/Car/obd2-lib/src/com/android/car/obd2/
H A DObd2Connection.java277 for (int byteIndex = 0; byteIndex < 4; ++byteIndex) { in getSupportedPIDs()
279 if (fourByteBitSet.getBit(byteIndex, bitIndex)) { in getSupportedPIDs()
280 int command = basePid + 8 * byteIndex + 7 - bitIndex; in getSupportedPIDs()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/screenrecord/
H A DScreenInternalAudioRecorder.java228 int byteIndex = i * 2; in addAndConvertBuffers() local
229 dst[byteIndex] = (byte) (sum & 0xff); in addAndConvertBuffers()
230 dst[byteIndex + 1] = (byte) ((sum >> 8) & 0xff); in addAndConvertBuffers()