Home
last modified time | relevance | path

Searched refs:NUM_PARM (Results 1 – 4 of 4) sorted by relevance

/dragonfly/contrib/ncurses/ncurses/tinfo/
HDlib_tparm.c344 _nc_tparm_analyze(const char *string, char *p_is_s[NUM_PARM], int *popcount) in _nc_tparm_analyze() argument
365 memset(p_is_s, 0, sizeof(p_is_s[0]) * NUM_PARM); in _nc_tparm_analyze()
403 if (i >= 0 && i <= NUM_PARM) { in _nc_tparm_analyze()
467 if (number > NUM_PARM) in _nc_tparm_analyze()
468 number = NUM_PARM; in _nc_tparm_analyze()
475 char *p_is_s[NUM_PARM]; in tparam_internal()
476 TPARM_ARG param[NUM_PARM]; in tparam_internal()
510 if (number > NUM_PARM) in tparam_internal()
511 number = NUM_PARM; in tparam_internal()
512 if (popcount > NUM_PARM) in tparam_internal()
[all …]
/dragonfly/contrib/ncurses/progs/
HDtput.c225 long numbers[1 + NUM_PARM]; in tput_cmd()
226 char *strings[1 + NUM_PARM]; in tput_cmd()
227 char *p_is_s[NUM_PARM]; in tput_cmd()
234 for (k = 1; (k < argc) && (k < NUM_PARM); k++) { in tput_cmd()
241 for (k = argc; k <= NUM_PARM; k++) { in tput_cmd()
HDtic.c1913 bool params[NUM_PARM]; in check_params()
1922 for (n = 0; n < NUM_PARM; n++) in check_params()
1981 char *p_is_s[NUM_PARM]; in check_params()
2170 long numbers[1 + NUM_PARM]; in check_1_infotocap()
2171 char *strings[1 + NUM_PARM]; in check_1_infotocap()
2172 char *p_is_s[NUM_PARM]; in check_1_infotocap()
2174 char blob[NUM_PARM * 10]; in check_1_infotocap()
2178 for (k = 1; k <= NUM_PARM; k++) { in check_1_infotocap()
/dragonfly/contrib/ncurses/include/
HDtic.h336 #define NUM_PARM 9 macro