Home | History | Annotate | Download | only in i18n

Lines Matching refs:idx

29 #define REMAINING_CAPACITY(idx,len) ((((len)-(idx))>0)?((len)-(idx)):0)
1329 static inline void appendToBuf(UChar c, int32_t *idx, UChar *buf, int32_t bufCapacity) {
1330 if (*idx < bufCapacity) {
1331 buf[*idx] = c;
1333 (*idx)++;