Home
last modified time | relevance | path

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

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DPunycode.java133 int n, delta, handledCPCount, basicLength, bias, j, m, q, k, t, srcCPCount; in encode() local
183 for(handledCPCount=basicLength; handledCPCount<srcCPCount; /* no op */) { in encode()
199 if(m-n>(0x7fffffff-delta)/(handledCPCount+1)) { in encode()
202 delta+=(m-n)*(handledCPCount+1); in encode()
240 bias=adaptBias(delta, handledCPCount+1,(handledCPCount==basicLength)); in encode()
242 ++handledCPCount; in encode()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DPunycode.java135 int n, delta, handledCPCount, basicLength, bias, j, m, q, k, t, srcCPCount; in encode() local
185 for(handledCPCount=basicLength; handledCPCount<srcCPCount; /* no op */) { in encode()
201 if(m-n>(0x7fffffff-delta)/(handledCPCount+1)) { in encode()
204 delta+=(m-n)*(handledCPCount+1); in encode()
242 bias=adaptBias(delta, handledCPCount+1,(handledCPCount==basicLength)); in encode()
244 ++handledCPCount; in encode()
/external/icu/icu4c/source/common/
Dpunycode.cpp190 int32_t n, delta, handledCPCount, basicLength, destLength, bias, j, m, q, k, t, srcCPCount; in u_strToPunycode() local
299 for(handledCPCount=basicLength; handledCPCount<srcCPCount; /* no op */) { in u_strToPunycode()
315 if(m-n>(0x7fffffff-MAX_CP_COUNT-delta)/(handledCPCount+1)) { in u_strToPunycode()
319 delta+=(m-n)*(handledCPCount+1); in u_strToPunycode()
363 bias=adaptBias(delta, handledCPCount+1, (UBool)(handledCPCount==basicLength)); in u_strToPunycode()
365 ++handledCPCount; in u_strToPunycode()