Home | History | Annotate | Download | only in common

Lines Matching defs:length

26  * @return the length of the result, not including any terminating
33 int32_t length = 0;
40 buffer[length++]=(UChar)(digit<=9?(0x0030+digit):(0x0030+digit+7));
42 } while(i && length<capacity);
44 while (length < minwidth){
45 buffer[length++] = (UChar) 0x0030;/*zero padding */
48 if(length<capacity){
49 buffer[length] = (UChar) 0x0000;
53 for (j = 0; j < (length / 2); j++){
54 temp = buffer[(length-1) - j];
55 buffer[(length-1) - j] = buffer[j];
58 return length;