Lines Matching defs:code_length
311 int code_length = 0; // the number of bytes in the UTF-8 sequence for the current char
328 code_length = 1;
330 code_length = 2;
332 code_length = 3;
346 code_length = 4;
348 code_length = 5;
350 code_length = 6;
356 if ( code_length > 0 )
369 h = (h>>28) ^ (h<<4) ^ (sBytePrefix[code_length] | (U>>sShift[code_length]));
372 switch ( code_length )
379 default: code_length = 0;