Lines Matching defs:in
33 and distribute it in any way that does not diminish the rights
90 * (when used for representing integers) is d, which must be in the
92 * nonzero, in which case the uppercase form is used.
111 * point (for use in representing integers) in the range 0 to
158 * The following code omits the {parts} of the pseudo-algorithm in the spec
205 * convert extended ones to UTF-32 in cpBuffer (caseFlag in sign bit):
381 int32_t n, destLength, i, bias, basicLength, j, in, oldi, w, k, digit, t,
442 for(in=basicLength>0 ? basicLength+1 : 0; in<srcLength; /* no op */) {
444 * in is the index of the next character to be consumed, and
445 * destCPCount is the number of code points in the output array.
453 if(in>=srcLength) {
458 digit=basicToDigit[(uint8_t)src[in++]];
499 * where needed instead of in for() loop tail.
533 * In almost all cases, there will be only BMP code points before i
534 * and even in the entire string.
573 caseFlags[codeUnitIndex]=IS_BASIC_UPPERCASE(src[in-1]);