Lines Matching refs:nc
72 char *binary, int *nc);
80 int nc, int *first, int *last);
265 int nc; /* The number of characters in binary[] */
299 if(_kt_parse_keybinding_string(keyseq, binary, &nc)) {
306 switch(_kt_locate_keybinding(kt, binary, nc, &first, &last)) {
368 sym->nc = nc;
393 * nc int the number of characters in keyseq[].
409 int nc, int *first, int *last)
422 test = _kt_compare_strings(kt->table[mid].keyseq, kt->table[mid].nc,
423 binary_keyseq, nc);
444 if(*last < kt->nkey && kt->table[*last].nc > nc &&
445 _kt_compare_strings(kt->table[*last].keyseq, nc, binary_keyseq, nc)==0) {
447 while(*last+1 < kt->nkey && kt->table[*last+1].nc > nc &&
448 _kt_compare_strings(kt->table[*last+1].keyseq, nc, binary_keyseq, nc)==0)
465 * nc int the number of characters in keyseq[].
483 int nc, KeySym **matches, int *nmatch)
491 if(!kt || !binary_keyseq || !matches || !nmatch || nc < 0) {
501 status = _kt_locate_keybinding(kt, binary_keyseq, nc, &first, &last);
540 * nc int * The number of characters assigned to binary[]
541 * will be recorded in *nc.
547 int *nc)
645 *nc = optr - binary;