Searched refs:byteIndex (Results 1 - 20 of 20) sorted by relevance

/external/proguard/src/proguard/classfile/constant/
H A DUtf8Constant.java207 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
[all...]
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dbytestriebuilder.h129 virtual UChar getElementUnit(int32_t i, int32_t byteIndex) const;
132 virtual int32_t getLimitOfLinearMatch(int32_t first, int32_t last, int32_t byteIndex) const;
134 virtual int32_t countElementUnits(int32_t start, int32_t limit, int32_t byteIndex) const;
135 virtual int32_t skipElementsBySomeUnits(int32_t i, int32_t byteIndex, int32_t count) const;
136 virtual int32_t indexOfElementWithNextUnit(int32_t i, int32_t byteIndex, UChar byte) const;
158 virtual Node *createLinearMatchNode(int32_t i, int32_t byteIndex, int32_t length,
164 virtual int32_t writeElementUnits(int32_t i, int32_t byteIndex, int32_t length);
/external/icu/icu4c/source/common/unicode/
H A Dbytestriebuilder.h129 virtual UChar getElementUnit(int32_t i, int32_t byteIndex) const;
132 virtual int32_t getLimitOfLinearMatch(int32_t first, int32_t last, int32_t byteIndex) const;
134 virtual int32_t countElementUnits(int32_t start, int32_t limit, int32_t byteIndex) const;
135 virtual int32_t skipElementsBySomeUnits(int32_t i, int32_t byteIndex, int32_t count) const;
136 virtual int32_t indexOfElementWithNextUnit(int32_t i, int32_t byteIndex, UChar byte) const;
158 virtual Node *createLinearMatchNode(int32_t i, int32_t byteIndex, int32_t length,
164 virtual int32_t writeElementUnits(int32_t i, int32_t byteIndex, int32_t length);
/external/chromium_org/third_party/icu/source/common/
H A Dbytestriebuilder.cpp284 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, *string
319 skipElementsBySomeUnits(int32_t i, int32_t byteIndex, int32_t count) const argument
330 indexOfElementWithNextUnit(int32_t i, int32_t byteIndex, UChar byte) const argument
364 createLinearMatchNode(int32_t i, int32_t byteIndex, int32_t length, Node *nextNode) const argument
420 writeElementUnits(int32_t i, int32_t byteIndex, int32_t length) argument
[all...]
H A Ducnv_u7.c215 uint8_t byteIndex; local
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
897 uint8_t byteIndex; local
[all...]
H A Ducnvbocu.cpp949 int8_t byteIndex; local
971 byteIndex=cnv->toULength;
975 sourceIndex=byteIndex==0 ? 0 : -1;
979 if(count>0 && byteIndex>0 && target<targetLimit) {
1061 byteIndex=2;
1077 byteIndex=1;
1088 c=bytes[byteIndex++]=*source++;
1100 byteIndex=0;
1145 cnv->toULength=byteIndex;
1171 int8_t byteIndex; local
[all...]
H A Ducnvmbcs.c1024 * @return if(U_FAILURE) return the length (toULength, byteIndex) for the input
1836 cnv->toULength=0; /* byteIndex */
2005 } else /* unassigned sequences indicated with byteIndex>0 */ {
2206 } else /* unassigned sequences indicated with byteIndex>0 */ {
2330 int8_t byteIndex; local
2379 byteIndex=cnv->toULength;
2392 sourceIndex=byteIndex==0 ? 0 : -1;
2411 if(byteIndex==0) {
2433 byteIndex=1;
2473 byteIndex
[all...]
/external/icu/icu4c/source/common/
H A Dbytestriebuilder.cpp284 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, *string
319 skipElementsBySomeUnits(int32_t i, int32_t byteIndex, int32_t count) const argument
330 indexOfElementWithNextUnit(int32_t i, int32_t byteIndex, UChar byte) const argument
364 createLinearMatchNode(int32_t i, int32_t byteIndex, int32_t length, Node *nextNode) const argument
420 writeElementUnits(int32_t i, int32_t byteIndex, int32_t length) argument
[all...]
H A Ducnv_u7.c215 uint8_t byteIndex; local
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
897 uint8_t byteIndex; local
[all...]
H A Ducnvbocu.cpp949 int8_t byteIndex; local
971 byteIndex=cnv->toULength;
975 sourceIndex=byteIndex==0 ? 0 : -1;
979 if(count>0 && byteIndex>0 && target<targetLimit) {
1061 byteIndex=2;
1077 byteIndex=1;
1088 c=bytes[byteIndex++]=*source++;
1100 byteIndex=0;
1145 cnv->toULength=byteIndex;
1171 int8_t byteIndex; local
[all...]
H A Ducnvmbcs.c1024 * @return if(U_FAILURE) return the length (toULength, byteIndex) for the input
1836 cnv->toULength=0; /* byteIndex */
2005 } else /* unassigned sequences indicated with byteIndex>0 */ {
2206 } else /* unassigned sequences indicated with byteIndex>0 */ {
2330 int8_t byteIndex; local
2379 byteIndex=cnv->toULength;
2392 sourceIndex=byteIndex==0 ? 0 : -1;
2411 if(byteIndex==0) {
2433 byteIndex=1;
2473 byteIndex
[all...]
/external/clang/test/Analysis/
H A Dreference.cpp177 int refParam(int &byteIndex) { argument
178 return byteIndex;
187 int ptrRefParam(int *&byteIndex) { argument
188 return *byteIndex; // expected-warning {{Dereference of null pointer}}
/external/chromium_org/third_party/skia/tools/
H A Dsk_tool_utils_font.cpp164 for (unsigned byteIndex = 0; byteIndex < byteCount; ++byteIndex) {
165 char unibyte = utf8[byteIndex];
/external/chromium_org/third_party/skia/src/sfnt/
H A DSkOTTable_glyf.h200 } byteIndex; member in union:SkOTTableGlyphData::Composite::Component::Transform
/external/skia/src/sfnt/
H A DSkOTTable_glyf.h200 } byteIndex; member in union:SkOTTableGlyphData::Composite::Component::Transform
/external/chromium_org/third_party/icu/source/i18n/
H A Dcsrsbcs.h29 int32_t byteIndex; member in class:NGramParser
H A Dcsrsbcs.cpp23 : ngram(0), byteIndex(0)
92 if (byteIndex >= det->fInputLen) {
96 return det->fInputBytes[byteIndex++];
188 if (byteIndex >= det->fInputLen || det->fInputBytes[byteIndex] == 0) {
193 alef = isLamAlef(det->fInputBytes[byteIndex]);
197 next = unshapeMap_IBM420[det->fInputBytes[byteIndex]& 0xFF] & 0xFF;
199 byteIndex++;
/external/icu/icu4c/source/i18n/
H A Dcsrsbcs.h29 int32_t byteIndex; member in class:NGramParser
H A Dcsrsbcs.cpp23 : ngram(0), byteIndex(0)
92 if (byteIndex >= det->fInputLen) {
96 return det->fInputBytes[byteIndex++];
188 if (byteIndex >= det->fInputLen || det->fInputBytes[byteIndex] == 0) {
193 alef = isLamAlef(det->fInputBytes[byteIndex]);
197 next = unshapeMap_IBM420[det->fInputBytes[byteIndex]& 0xFF] & 0xFF;
199 byteIndex++;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 312 milliseconds