Home | History | Annotate | Download | only in common

Lines Matching refs:buffer

19  * @param buffer UChar buffer to receive result
20 * @param capacity capacity of buffer
30 uprv_itou (UChar * buffer, int32_t capacity,
40 buffer[length++]=(UChar)(digit<=9?(0x0030+digit):(0x0030+digit+7));
45 buffer[length++] = (UChar) 0x0030;/*zero padding */
47 /* null terminate the buffer */
49 buffer[length] = (UChar) 0x0000;
54 temp = buffer[(length-1) - j];
55 buffer[(length-1) - j] = buffer[j];
56 buffer[j] = temp;