Home
last modified time | relevance | path

Searched refs:cpBuffer (Results 1 – 3 of 3) sorted by relevance

/external/icu/icu4c/source/common/
Dpunycode.cpp189 int32_t cpBuffer[MAX_CP_COUNT]; in u_strToPunycode() local
220 cpBuffer[srcCPCount++]=0; in u_strToPunycode()
240 cpBuffer[srcCPCount++]=n; in u_strToPunycode()
253 cpBuffer[srcCPCount++]=0; in u_strToPunycode()
273 cpBuffer[srcCPCount++]=n; in u_strToPunycode()
305 q=cpBuffer[j]&0x7fffffff; /* remove case flag from the sign bit */ in u_strToPunycode()
324 q=cpBuffer[j]&0x7fffffff; /* remove case flag from the sign bit */ in u_strToPunycode()
360 dest[destLength]=digitToBasic(q, (UBool)(cpBuffer[j]<0)); in u_strToPunycode()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DPunycode.java136 int[] cpBuffer = new int[srcLength]; in encode() local
147 cpBuffer[srcCPCount++]=0; in encode()
161 cpBuffer[srcCPCount++]=n; in encode()
189 q=cpBuffer[j]&0x7fffffff; /* remove case flag from the sign bit */ in encode()
207 q=cpBuffer[j]&0x7fffffff; /* remove case flag from the sign bit */ in encode()
239 dest.append(digitToBasic(q, (cpBuffer[j]<0))); in encode()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DPunycode.java138 int[] cpBuffer = new int[srcLength]; in encode() local
149 cpBuffer[srcCPCount++]=0; in encode()
163 cpBuffer[srcCPCount++]=n; in encode()
191 q=cpBuffer[j]&0x7fffffff; /* remove case flag from the sign bit */ in encode()
209 q=cpBuffer[j]&0x7fffffff; /* remove case flag from the sign bit */ in encode()
241 dest.append(digitToBasic(q, (cpBuffer[j]<0))); in encode()