Home | History | Annotate | Download | only in genrb

Lines Matching refs:buffer

66 itostr(char * buffer, int32_t i, uint32_t radix, int32_t pad)
83 buffer[length++]= digits[digit];
88 buffer[length++] = '0';/*zero padding */
93 buffer[length++]='-';
96 /* null terminate the buffer */
98 buffer[length] = 0x0000;
106 temp = buffer[(length-1) - j];
107 buffer[(length-1) - j] = buffer[j];
108 buffer[j] = temp;