Home | History | Annotate | Download | only in common

Lines Matching refs:buffer

17  * @param buffer UChar buffer to receive result
18 * @param capacity capacity of buffer
28 uprv_itou (UChar * buffer, int32_t capacity,
38 buffer[length++]=(UChar)(digit<=9?(0x0030+digit):(0x0030+digit+7));
43 buffer[length++] = (UChar) 0x0030;/*zero padding */
45 /* null terminate the buffer */
47 buffer[length] = (UChar) 0x0000;
52 temp = buffer[(length-1) - j];
53 buffer[(length-1) - j] = buffer[j];
54 buffer[j] = temp;