Home | History | Annotate | Download | only in common

Lines Matching refs:length

24  * @return the length of the result, not including any terminating
31 int32_t length = 0;
38 buffer[length++]=(UChar)(digit<=9?(0x0030+digit):(0x0030+digit+7));
40 } while(i && length<capacity);
42 while (length < minwidth){
43 buffer[length++] = (UChar) 0x0030;/*zero padding */
46 if(length<capacity){
47 buffer[length] = (UChar) 0x0000;
51 for (j = 0; j < (length / 2); j++){
52 temp = buffer[(length-1) - j];
53 buffer[(length-1) - j] = buffer[j];
56 return length;