Symbol: NUM_STRINGS
lib/libcurses/term_entry.h
74
#define for_each_string(n,tp) for(n = 0; n < NUM_STRINGS(tp); n++)
lib/libcurses/term_entry.h
79
#define for_each_ext_string(n,tp) for(n = STRCOUNT; (int) n < (int) NUM_STRINGS(tp); n++)
lib/libcurses/tinfo/alloc_ttype.c
546
TYPE_MALLOC(char *, NUM_STRINGS(dst), dst->Strings);
lib/libcurses/tinfo/alloc_ttype.c
553
NUM_STRINGS(dst) * sizeof(dst->Strings[0]));
lib/libcurses/tinfo/init_keytry.c
95
for (n = STRCOUNT; n < NUM_STRINGS(tp); ++n) {
usr.bin/infocmp/infocmp.c
1406
|| (NUM_STRINGS(term) != STRCOUNT)) {
usr.bin/infocmp/infocmp.c
1417
for (n = STRCOUNT; n < NUM_STRINGS(term); ++n) {
usr.bin/infocmp/infocmp.c
1444
|| (NUM_STRINGS(term) != STRCOUNT))
usr.bin/infocmp/infocmp.c
1450
(void) printf("\t\t%d,\t\t/* count total Strings */\n", NUM_STRINGS(term));
usr.bin/infocmp/infocmp.c
1457
NUM_STRINGS(term) - STRCOUNT);
usr.bin/infocmp/infocmp.c
316
for (i = 0; i < NUM_STRINGS(t1); i++)
usr.bin/tic/dump_entry.c
1319
for (n = 0; n < NUM_STRINGS(tterm); ++n) {
usr.bin/tic/dump_entry.c
1332
for (n = 0; n < NUM_STRINGS(tterm); ++n) {
usr.bin/tic/dump_entry.c
1581
for (n = STRCOUNT; n < NUM_STRINGS(tterm); n++) {
usr.bin/tic/tic.c
2704
NAME_VALUE *result = typeMalloc(NAME_VALUE, NUM_STRINGS(tp) + 1);
usr.bin/tic/tic.c
2722
for (j = STRCOUNT; j < NUM_STRINGS(tp); ++j) {
usr.bin/tic/tic.c
2756
char *check = calloc((size_t) (NUM_STRINGS(tp) + 1), sizeof(char));
usr.bin/top/utils.c
307
static char retarray[NUM_STRINGS][16];
usr.bin/top/utils.c
312
idx = (idx + 1) % NUM_STRINGS;