Lines Matching refs:ntp_keywords
40 struct key_tok ntp_keywords[] = {
366 * Sort ntp_keywords in alphabetical keyword order. This is
370 qsort(ntp_keywords, COUNTOF(ntp_keywords),
371 sizeof(ntp_keywords[0]), compare_key_tok_text);
381 for (i = 0; i < COUNTOF(ntp_keywords); i++) {
382 token = ntp_keywords[i].token;
388 ntp_keywords[i].key,
399 (int)COUNTOF(ntp_keywords),
556 " keyword_gen.c ntp_keywords[].\n",
637 for (i = 0; i < COUNTOF(ntp_keywords); i++) {
638 current_keyword = ntp_keywords[i].key;
641 ntp_keywords[i].key,
642 ntp_keywords[i].token,
643 ntp_keywords[i].followedby,
660 /* sort ntp_keywords in token ID order */
661 qsort(ntp_keywords, COUNTOF(ntp_keywords),
662 sizeof(ntp_keywords[0]), compare_key_tok_id);
664 lowest_id = ntp_keywords[0].token;
665 highest_id = ntp_keywords[COUNTOF(ntp_keywords) - 1].token;
674 while (i < COUNTOF(ntp_keywords)) {
675 while (id < ntp_keywords[i].token) {
684 ntp_keywords[i].key);