Home
last modified time | relevance | path

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

/frameworks/ml/nn/runtime/
DModelBuilder.cpp151 uint32_t extraBytes = alignBytesNeeded(existingSize, valueLength); in setOperandValue() local
152 mSmallOperandValues.resize(existingSize + extraBytes + valueLength); in setOperandValue()
155 .poolIndex = 0, .offset = existingSize + extraBytes, .length = valueLength}; in setOperandValue()
929 uint32_t extraBytes = alignBytesNeeded(existingSize, valueLength); in updateOperandLocations() local
931 uint32_t offset = existingSize + extraBytes; in updateOperandLocations()
/frameworks/base/telephony/java/android/telephony/
DPhoneNumberUtils.java1205 int extraBytes = 1; // Prepended TOA byte. in numberToCalledPartyBCDHelper() local
1206 if (includeLength) extraBytes++; // Optional prepended length byte. in numberToCalledPartyBCDHelper()
1207 resultLen += extraBytes; in numberToCalledPartyBCDHelper()
1216 result[extraBytes + (digitCount >> 1)] |= in numberToCalledPartyBCDHelper()
1222 if ((digitCount & 0x01) == 1) result[extraBytes + (digitCount >> 1)] |= 0xF0; in numberToCalledPartyBCDHelper()