Home
last modified time | relevance | path

Searched refs:basicLength (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
166 basicLength=dest.length(); in encode()
167 if(basicLength>0) { in encode()
183 for(handledCPCount=basicLength; handledCPCount<srcCPCount; /* no op */) { in encode()
240 bias=adaptBias(delta, handledCPCount+1,(handledCPCount==basicLength)); in encode()
276 int n, i, bias, basicLength, j, in, oldi, w, k, digit, t, in decode() local
293 basicLength=destCPCount=j; in decode()
295 for(j=0; j<basicLength; ++j) { in decode()
318 for(in=basicLength>0 ? basicLength+1 : 0; in<srcLength; /* no op */) { in decode()
/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
168 basicLength=dest.length(); in encode()
169 if(basicLength>0) { in encode()
185 for(handledCPCount=basicLength; handledCPCount<srcCPCount; /* no op */) { in encode()
242 bias=adaptBias(delta, handledCPCount+1,(handledCPCount==basicLength)); in encode()
278 int n, i, bias, basicLength, j, in, oldi, w, k, digit, t, in decode() local
295 basicLength=destCPCount=j; in decode()
297 for(j=0; j<basicLength; ++j) { in decode()
320 for(in=basicLength>0 ? basicLength+1 : 0; in<srcLength; /* no op */) { in decode()
/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
279 basicLength=destLength; in u_strToPunycode()
280 if(basicLength>0) { in u_strToPunycode()
299 for(handledCPCount=basicLength; handledCPCount<srcCPCount; /* no op */) { in u_strToPunycode()
363 bias=adaptBias(delta, handledCPCount+1, (UBool)(handledCPCount==basicLength)); in u_strToPunycode()
381 int32_t n, destLength, i, bias, basicLength, j, in, oldi, w, k, digit, t, in u_strFromPunycode() local
412 destLength=basicLength=destCPCount=j; in u_strFromPunycode()
442 for(in=basicLength>0 ? basicLength+1 : 0; in<srcLength; /* no op */) { in u_strFromPunycode()