Home | History | Annotate | Download | only in common

Lines Matching defs:in

31     and distribute it in any way that does not diminish the rights
88 * (when used for representing integers) is d, which must be in the
90 * nonzero, in which case the uppercase form is used.
109 * point (for use in representing integers) in the range 0 to
156 * The following code omits the {parts} of the pseudo-algorithm in the spec
203 * convert extended ones to UTF-32 in cpBuffer (caseFlag in sign bit):
379 int32_t n, destLength, i, bias, basicLength, j, in, oldi, w, k, digit, t,
440 for(in=basicLength>0 ? basicLength+1 : 0; in<srcLength; /* no op */) {
442 * in is the index of the next character to be consumed, and
443 * destCPCount is the number of code points in the output array.
451 if(in>=srcLength) {
456 digit=basicToDigit[(uint8_t)src[in++]];
497 * where needed instead of in for() loop tail.
531 * In almost all cases, there will be only BMP code points before i
532 * and even in the entire string.
571 caseFlags[codeUnitIndex]=IS_BASIC_UPPERCASE(src[in-1]);