Home
last modified time | relevance | path

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

/external/proguard/src/proguard/classfile/constant/
DUtf8Constant.java207 int byteIndex = 0; in getByteArrayRepresentation()
214 bytes[byteIndex++] = (byte)TWO_BYTE_CONSTANT1; in getByteArrayRepresentation()
215 bytes[byteIndex++] = (byte)TWO_BYTE_CONSTANT2; in getByteArrayRepresentation()
220 bytes[byteIndex++] = (byte)c; in getByteArrayRepresentation()
225 … bytes[byteIndex++] = (byte)(TWO_BYTE_CONSTANT1 | ((c >>> TWO_BYTE_SHIFT1) & TWO_BYTE_MASK1)); in getByteArrayRepresentation()
226 … bytes[byteIndex++] = (byte)(TWO_BYTE_CONSTANT2 | ( c & TWO_BYTE_MASK2)); in getByteArrayRepresentation()
231 …bytes[byteIndex++] = (byte)(THREE_BYTE_CONSTANT1 | ((c >>> THREE_BYTE_SHIFT1) & THREE_BYTE_MASK1)); in getByteArrayRepresentation()
232 …bytes[byteIndex++] = (byte)(THREE_BYTE_CONSTANT2 | ((c >>> THREE_BYTE_SHIFT2) & THREE_BYTE_MASK2)); in getByteArrayRepresentation()
233 …bytes[byteIndex++] = (byte)(THREE_BYTE_CONSTANT3 | ( c & THREE_BYTE_MASK3)); in getByteArrayRepresentation()
255 int byteIndex = 0; in getStringRepresentation() local
[all …]
/external/icu4c/common/
Ducnv_u7.c214 uint8_t byteIndex; in _UTF7ToUnicodeWithOffsets() local
244 byteIndex=cnv->toULength; in _UTF7ToUnicodeWithOffsets()
247 sourceIndex=byteIndex==0 ? 0 : -1; in _UTF7ToUnicodeWithOffsets()
260 byteIndex=0; in _UTF7ToUnicodeWithOffsets()
271 byteIndex=1; in _UTF7ToUnicodeWithOffsets()
284 byteIndex=0; in _UTF7ToUnicodeWithOffsets()
309 bytes[byteIndex++]=b=*source++; in _UTF7ToUnicodeWithOffsets()
338 byteIndex=1; in _UTF7ToUnicodeWithOffsets()
349 byteIndex=1; in _UTF7ToUnicodeWithOffsets()
359 byteIndex=0; in _UTF7ToUnicodeWithOffsets()
[all …]
Ducnvbocu.c944 int8_t byteIndex; in _Bocu1ToUnicodeWithOffsets() local
966 byteIndex=cnv->toULength; in _Bocu1ToUnicodeWithOffsets()
970 sourceIndex=byteIndex==0 ? 0 : -1; in _Bocu1ToUnicodeWithOffsets()
974 if(count>0 && byteIndex>0 && target<targetLimit) { in _Bocu1ToUnicodeWithOffsets()
1056 byteIndex=2; in _Bocu1ToUnicodeWithOffsets()
1072 byteIndex=1; in _Bocu1ToUnicodeWithOffsets()
1083 c=bytes[byteIndex++]=*source++; in _Bocu1ToUnicodeWithOffsets()
1095 byteIndex=0; in _Bocu1ToUnicodeWithOffsets()
1140 cnv->toULength=byteIndex; in _Bocu1ToUnicodeWithOffsets()
1166 int8_t byteIndex; in _Bocu1ToUnicode() local
[all …]
Ducnvmbcs.c2328 int8_t byteIndex; in ucnv_MBCSToUnicodeWithOffsets() local
2377 byteIndex=cnv->toULength; in ucnv_MBCSToUnicodeWithOffsets()
2390 sourceIndex=byteIndex==0 ? 0 : -1; in ucnv_MBCSToUnicodeWithOffsets()
2409 if(byteIndex==0) { in ucnv_MBCSToUnicodeWithOffsets()
2431 byteIndex=1; in ucnv_MBCSToUnicodeWithOffsets()
2471 byteIndex=1; in ucnv_MBCSToUnicodeWithOffsets()
2506 bytes[byteIndex++]=*source++; in ucnv_MBCSToUnicodeWithOffsets()
2509 entry=stateTable[state][bytes[byteIndex++]=*source++]; in ucnv_MBCSToUnicodeWithOffsets()
2538 byteIndex=0; in ucnv_MBCSToUnicodeWithOffsets()
2546 byteIndex=0; in ucnv_MBCSToUnicodeWithOffsets()
[all …]
/external/icu4c/i18n/
Dcsrsbcs.cpp21 :byteIndex(0), ngram(0) in NGramParser()
90 if (byteIndex >= det->fInputLen) { in nextByte()
94 return det->fInputBytes[byteIndex++]; in nextByte()
Dcsrsbcs.h22 int32_t byteIndex;