Lines Matching full:tbuf
157 char tbuf[30];
158 int32_t tbx = sizeof(tbuf);
171 tbx = sizeof(tbuf)-1;
172 tbuf[tbx] = 0; /* We are generating the digits backwards. Null term the end. */
175 tbuf[--tbx] = (char)(T_CString_itosOffset(digit));
180 uprv_strcpy(buffer+length, tbuf+tbx);
181 length += sizeof(tbuf) - tbx -1;
195 char tbuf[30];
196 int32_t tbx = sizeof(tbuf);
209 tbx = sizeof(tbuf)-1;
210 tbuf[tbx] = 0; /* We are generating the digits backwards. Null term the end. */
213 tbuf[--tbx] = (char)(T_CString_itosOffset(digit));
218 uprv_strcpy(buffer+length, tbuf+tbx);
219 length += sizeof(tbuf) - tbx -1;