Lines Matching refs:nc
70 char *binary, int *nc);
78 int nc, int *first, int *last);
263 int nc; /* The number of characters in binary[] */ in _kt_set_keyfn() local
297 if(_kt_parse_keybinding_string(keyseq, binary, &nc)) { in _kt_set_keyfn()
304 switch(_kt_locate_keybinding(kt, binary, nc, &first, &last)) { in _kt_set_keyfn()
366 sym->nc = nc; in _kt_set_keyfn()
407 int nc, int *first, int *last) in _kt_locate_keybinding() argument
420 test = _kt_compare_strings(kt->table[mid].keyseq, kt->table[mid].nc, in _kt_locate_keybinding()
421 binary_keyseq, nc); in _kt_locate_keybinding()
442 if(*last < kt->nkey && kt->table[*last].nc > nc && in _kt_locate_keybinding()
443 _kt_compare_strings(kt->table[*last].keyseq, nc, binary_keyseq, nc)==0) { in _kt_locate_keybinding()
445 while(*last+1 < kt->nkey && kt->table[*last+1].nc > nc && in _kt_locate_keybinding()
446 _kt_compare_strings(kt->table[*last+1].keyseq, nc, binary_keyseq, nc)==0) in _kt_locate_keybinding()
481 int nc, KeySym **matches, int *nmatch) in _kt_lookup_keybinding() argument
489 if(!kt || !binary_keyseq || !matches || !nmatch || nc < 0) { in _kt_lookup_keybinding()
499 status = _kt_locate_keybinding(kt, binary_keyseq, nc, &first, &last); in _kt_lookup_keybinding()
545 int *nc) in _kt_parse_keybinding_string() argument
643 *nc = optr - binary; in _kt_parse_keybinding_string()