Home | History | Annotate | Download | only in common

Lines Matching refs:tbuf

159     char      tbuf[30];
160 int32_t tbx = sizeof(tbuf);
173 tbx = sizeof(tbuf)-1;
174 tbuf[tbx] = 0; /* We are generating the digits backwards. Null term the end. */
177 tbuf[--tbx] = (char)(T_CString_itosOffset(digit));
182 uprv_strcpy(buffer+length, tbuf+tbx);
183 length += sizeof(tbuf) - tbx -1;
197 char tbuf[30];
198 int32_t tbx = sizeof(tbuf);
211 tbx = sizeof(tbuf)-1;
212 tbuf[tbx] = 0; /* We are generating the digits backwards. Null term the end. */
215 tbuf[--tbx] = (char)(T_CString_itosOffset(digit));
220 uprv_strcpy(buffer+length, tbuf+tbx);
221 length += sizeof(tbuf) - tbx -1;