/external/proguard/src/proguard/classfile/constant/ |
Utf8Constant.java | 207 int byteIndex = 0; 214 bytes[byteIndex++] = (byte)TWO_BYTE_CONSTANT1; 215 bytes[byteIndex++] = (byte)TWO_BYTE_CONSTANT2; 220 bytes[byteIndex++] = (byte)c; 225 bytes[byteIndex++] = (byte)(TWO_BYTE_CONSTANT1 | ((c >>> TWO_BYTE_SHIFT1) & TWO_BYTE_MASK1)); 226 bytes[byteIndex++] = (byte)(TWO_BYTE_CONSTANT2 | ( c & TWO_BYTE_MASK2)); 231 bytes[byteIndex++] = (byte)(THREE_BYTE_CONSTANT1 | ((c >>> THREE_BYTE_SHIFT1) & THREE_BYTE_MASK1)); 232 bytes[byteIndex++] = (byte)(THREE_BYTE_CONSTANT2 | ((c >>> THREE_BYTE_SHIFT2) & THREE_BYTE_MASK2)); 233 bytes[byteIndex++] = (byte)(THREE_BYTE_CONSTANT3 | ( c & THREE_BYTE_MASK3)); 255 int byteIndex = 0 [all...] |
/external/icu4c/common/unicode/ |
bytestriebuilder.h | 123 virtual UChar getElementUnit(int32_t i, int32_t byteIndex) const; 126 virtual int32_t getLimitOfLinearMatch(int32_t first, int32_t last, int32_t byteIndex) const; 128 virtual int32_t countElementUnits(int32_t start, int32_t limit, int32_t byteIndex) const; 129 virtual int32_t skipElementsBySomeUnits(int32_t i, int32_t byteIndex, int32_t count) const; 130 virtual int32_t indexOfElementWithNextUnit(int32_t i, int32_t byteIndex, UChar byte) const; 152 virtual Node *createLinearMatchNode(int32_t i, int32_t byteIndex, int32_t length, 158 virtual int32_t writeElementUnits(int32_t i, int32_t byteIndex, int32_t length);
|
/external/icu4c/common/ |
bytestriebuilder.cpp | 284 BytesTrieBuilder::getElementUnit(int32_t i, int32_t byteIndex) const { 285 return (uint8_t)elements[i].charAt(byteIndex, *strings); 294 BytesTrieBuilder::getLimitOfLinearMatch(int32_t first, int32_t last, int32_t byteIndex) const { 298 while(++byteIndex<minStringLength && 299 firstElement.charAt(byteIndex, *strings)== 300 lastElement.charAt(byteIndex, *strings)) {} 301 return byteIndex; 305 BytesTrieBuilder::countElementUnits(int32_t start, int32_t limit, int32_t byteIndex) const { 306 int32_t length=0; // Number of different bytes at byteIndex. 309 char byte=elements[i++].charAt(byteIndex, *strings) [all...] |
ucnv_u7.c | 215 uint8_t byteIndex; 245 byteIndex=cnv->toULength; 248 sourceIndex=byteIndex==0 ? 0 : -1; 261 byteIndex=0; 272 byteIndex=1; 285 byteIndex=0; 310 bytes[byteIndex++]=b=*source++; 333 byteIndex=1; 340 --byteIndex; 378 byteIndex=1 [all...] |
ucnvbocu.cpp | 949 int8_t byteIndex; 971 byteIndex=cnv->toULength; 975 sourceIndex=byteIndex==0 ? 0 : -1; [all...] |
ucnvmbcs.c | [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/ |
SHA1Impl.java | 179 int byteIndex = index & 0x03; 188 if ( byteIndex != 0 ) { // appending bytes in non-full word (as if) 190 for ( ; ( i <= toByte ) && ( byteIndex < 4 ) ; i++ ) { 191 intArray[wordIndex] |= ( byteInput[i] & 0xFF ) << ((3 - byteIndex)<<3) ; 192 byteIndex++; 194 if ( byteIndex == 4 ) {
|
/external/clang/test/Analysis/ |
reference.cpp | 177 int refParam(int &byteIndex) { 178 return byteIndex; 187 int ptrRefParam(int *&byteIndex) { 188 return *byteIndex; // expected-warning {{Dereference of null pointer}}
|
/external/chromium_org/third_party/icu/source/common/ |
ucnv_u7.c | 214 uint8_t byteIndex; 244 byteIndex=cnv->toULength; 247 sourceIndex=byteIndex==0 ? 0 : -1; 260 byteIndex=0; 271 byteIndex=1; 284 byteIndex=0; 309 bytes[byteIndex++]=b=*source++; 338 byteIndex=1; 349 byteIndex=1; 359 byteIndex=0 [all...] |
ucnvbocu.c | 944 int8_t byteIndex; 966 byteIndex=cnv->toULength; 970 sourceIndex=byteIndex==0 ? 0 : -1; 974 if(count>0 && byteIndex>0 && target<targetLimit) { [all...] |
ucnvmbcs.c | [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/ |
PartitionAlloc.cpp | 487 size_t byteIndex = raw >> 3; 489 ASSERT(byteIndex < sizeof(s_bitmap)); 492 s_bitmap[byteIndex] |= (1 << bit); 501 size_t byteIndex = raw >> 3; 503 ASSERT(byteIndex < sizeof(s_bitmap)); 506 s_bitmap[byteIndex] &= ~(1 << bit);
|
PartitionAlloc.h | 254 size_t byteIndex = raw >> 3; 256 ASSERT(byteIndex < sizeof(s_bitmap)); 257 return s_bitmap[byteIndex] & (1 << bit);
|
/external/chromium_org/third_party/skia/src/sfnt/ |
SkOTTable_glyf.h | 196 struct ByteIndex { 200 } byteIndex;
|
/external/icu4c/i18n/ |
csrsbcs.h | 22 int32_t byteIndex;
|
csrsbcs.cpp | 23 :byteIndex(0), ngram(0) 92 if (byteIndex >= det->fInputLen) { 96 return det->fInputBytes[byteIndex++]; [all...] |
/external/skia/src/sfnt/ |
SkOTTable_glyf.h | 196 struct ByteIndex { 200 } byteIndex;
|
/external/chromium_org/third_party/icu/source/i18n/ |
csrsbcs.h | 22 int32_t byteIndex;
|
csrsbcs.cpp | 21 :byteIndex(0), ngram(0) 90 if (byteIndex >= det->fInputLen) { 94 return det->fInputBytes[byteIndex++]; [all...] |
/frameworks/base/cmds/pm/src/com/android/commands/pm/ |
Pm.java | [all...] |
/prebuilts/tools/common/m2/internal/net/sf/proguard/proguard-base/4.9/ |
proguard-base-4.9.jar | |
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/ |
compiler.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
com.ibm.icu_4.2.1.v20100412.jar | |
/prebuilts/misc/common/icu4j/ |
icu4j.jar | |