Home | History | Annotate | Download | only in common

Lines Matching defs:tbuf

146     char      tbuf[30];
147 int32_t tbx = sizeof(tbuf);
160 tbx = sizeof(tbuf)-1;
161 tbuf[tbx] = 0; /* We are generating the digits backwards. Null term the end. */
164 tbuf[--tbx] = (char)(T_CString_itosOffset(digit));
169 uprv_strcpy(buffer+length, tbuf+tbx);
170 length += sizeof(tbuf) - tbx -1;
184 char tbuf[30];
185 int32_t tbx = sizeof(tbuf);
198 tbx = sizeof(tbuf)-1;
199 tbuf[tbx] = 0; /* We are generating the digits backwards. Null term the end. */
202 tbuf[--tbx] = (char)(T_CString_itosOffset(digit));
207 uprv_strcpy(buffer+length, tbuf+tbx);
208 length += sizeof(tbuf) - tbx -1;