Home
last modified time | relevance | path

Searched refs:ntokens (Results 1 – 25 of 571) sorted by relevance

12345678910>>...23

/dports/games/libretro-scummvm/scummvm-7b1e929/backends/platform/libretro/deps/fluidsynth/src/
H A Dfluid_settings.c305 int ntokens; in fluid_settings_register_str() local
340 int ntokens; in fluid_settings_register_num() local
380 int ntokens; in fluid_settings_register_int() local
416 int ntokens; in fluid_settings_get_type() local
429 int ntokens; in fluid_settings_get_hints() local
454 int ntokens; in fluid_settings_is_realtime() local
478 int ntokens; in fluid_settings_setstr() local
518 int ntokens; in fluid_settings_getstr() local
538 int ntokens; in fluid_settings_str_equal() local
557 int ntokens; in fluid_settings_getstr_default() local
[all …]
/dports/games/libretro-prboom/libretro-prboom-cc80175/deps/fluidlite/src/
H A Dfluid_settings.c305 int ntokens; in fluid_settings_register_str() local
340 int ntokens; in fluid_settings_register_num() local
380 int ntokens; in fluid_settings_register_int() local
416 int ntokens; in fluid_settings_get_type() local
429 int ntokens; in fluid_settings_get_hints() local
454 int ntokens; in fluid_settings_is_realtime() local
478 int ntokens; in fluid_settings_setstr() local
518 int ntokens; in fluid_settings_getstr() local
538 int ntokens; in fluid_settings_str_equal() local
557 int ntokens; in fluid_settings_getstr_default() local
[all …]
/dports/science/siesta/siesta-4.1.5/Util/Optimizer/
H A Dparse.f312 integer ntokens local
321 ntokens = p%ntokens - starting_pos
323 end function ntokens
477 pline%ntokens = ntokens
482 do i=1,ntokens
531 ntokens = 0
552 ntokens = ntokens+1
560 ntokens=ntokens+1
586 ntokens = ntokens+1
606 do i=1,ntokens
[all …]
/dports/databases/memcached/memcached-1.6.12/
H A Dproto_text.c242 if ((min != -1 && ntokens < min) || (max != -1 && ntokens > max)) { \
250 if (ntokens != a && ntokens != b) { \
283 size_t ntokens = 0; in tokenize_command() local
311 ntokens++; in tokenize_command()
320 ntokens++; in tokenize_command()
322 return ntokens; in tokenize_command()
327 size_t ntokens; in try_read_command_asciiauth() local
363 if (ntokens < 6 in try_read_command_asciiauth()
414 if (ntokens < 3) { in try_read_command_asciiauth()
739 if (ntokens < 2) { in process_stat()
[all …]
/dports/science/siesta/siesta-4.1.5/Src/fdf/
H A Dparse.F90491 ntokens = pline%ntokens - starting_pos
499 END FUNCTION ntokens
1074 pline%ntokens = ntokens
1082 do i= 1, ntokens
1146 ntokens = 0
1173 ntokens = ntokens + 1
1181 ntokens = ntokens + 1
1192 ntokens = ntokens + 1
1221 ntokens = ntokens + 1
1253 do i= 1, ntokens
[all …]
/dports/devel/bison/bison-3.7.6/src/
H A Dreduce.c202 for (symbol_number i = ntokens; i < nsyms; ++i) in inaccessable_symbols()
270 symbol_number n = ntokens; in nonterminals_reduce()
271 for (symbol_number i = ntokens; i < nsyms; ++i) in nonterminals_reduce()
273 nterm_map[i - ntokens] = n++; in nonterminals_reduce()
274 for (symbol_number i = ntokens; i < nsyms; ++i) in nonterminals_reduce()
277 nterm_map[i - ntokens] = n++; in nonterminals_reduce()
288 for (symbol_number i = ntokens; i < nsyms; ++i) in nonterminals_reduce()
291 symbols_sorted[nterm_map[i - ntokens] - ntokens] = symbols[i]; in nonterminals_reduce()
293 symbols[i] = symbols_sorted[i - ntokens]; in nonterminals_reduce()
329 for (int i = 0; i < ntokens; ++i) in reduce_output()
[all …]
H A Dclosure.c48 #define FDERIVES(Var) fderives[(Var) - ntokens]
49 #define FIRSTS(Var) firsts[(Var) - ntokens]
76 for (symbol_number i = ntokens; i < nsyms; ++i) in print_firsts()
92 for (symbol_number i = ntokens; i < nsyms; ++i) in print_fderives()
123 for (symbol_number i = ntokens; i < nsyms; ++i) in set_firsts()
124 for (symbol_number j = 0; derives[i - ntokens][j]; ++j) in set_firsts()
126 item_number sym = derives[i - ntokens][j]->rhs[0]; in set_firsts()
128 bitset_set (FIRSTS (i), sym - ntokens); in set_firsts()
158 for (symbol_number i = ntokens; i < nsyms; ++i) in set_fderives()
159 for (symbol_number j = ntokens; j < nsyms; ++j) in set_fderives()
[all …]
H A Dnullable.c48 for (int i = ntokens; i < nsyms; i++) in nullable_print()
50 nullable[i - ntokens] ? "yes" : "no"); in nullable_print()
89 p->next = rsets[*rp - ntokens]; in nullable_compute()
91 rsets[*rp - ntokens] = p; in nullable_compute()
99 && ! nullable[r->lhs->number - ntokens]) in nullable_compute()
101 nullable[r->lhs->number - ntokens] = true; in nullable_compute()
110 for (rule_list *p = rsets[*s1++ - ntokens]; p; p = p->next) in nullable_compute()
114 if (r->useful && ! nullable[r->lhs->number - ntokens]) in nullable_compute()
116 nullable[r->lhs->number - ntokens] = true; in nullable_compute()
H A Dderives.c45 for (symbol_number i = ntokens; i < nsyms; ++i) in print_derives()
48 for (rule **rp = derives[i - ntokens]; *rp; ++rp) in print_derives()
77 p->next = dset[lhs - ntokens]; in derives_compute()
79 dset[lhs - ntokens] = p; in derives_compute()
89 for (symbol_number i = ntokens; i < nsyms; ++i) in derives_compute()
91 rule_list *p = dset[i - ntokens]; in derives_compute()
92 derives[i - ntokens] = q; in derives_compute()
/dports/misc/heyu2/heyu-2.10/
H A Dmodules.c1309 *ntokens -= count; in remote_options()
1362 *ntokens -= count; in sensor_options()
1393 if ( *ntokens < 2 ) { in opt_rfxsensor()
1474 if ( *ntokens < 1 ) { in opt_rfxmeter()
2840 *ntokens -= count; in opt_x10std()
3048 *ntokens -= count; in opt_aux()
3999 *ntokens -= count; in temp_parm()
4061 *ntokens -= count; in rh_parm()
4122 *ntokens -= count; in bp_parm()
4182 *ntokens -= count; in timeout_parm()
[all …]
/dports/databases/p5-Memcached-libmemcached/Memcached-libmemcached-1.001801/src/libmemcached/libmemcachedprotocol/
H A Dascii_handler.c641 if (ntokens != 1) in process_version()
660 if (ntokens > 2) in process_flush()
673 if (ntokens == 2) in process_flush()
864 if (ntokens != 6) in process_cas_command()
883 if (ntokens != 5) in process_set_command()
902 if (ntokens != 5) in process_add_command()
921 if (ntokens != 5) in process_replace_command()
940 if (ntokens != 5) in process_append_command()
959 if (ntokens != 5) in process_prepend_command()
1026 if (ntokens < 10) in memcached_ascii_protocol_process_data()
[all …]
/dports/databases/libmemcached/libmemcached-1.0.18/libmemcachedprotocol/
H A Dascii_handler.c641 if (ntokens != 1) in process_version()
660 if (ntokens > 2) in process_flush()
673 if (ntokens == 2) in process_flush()
864 if (ntokens != 6) in process_cas_command()
883 if (ntokens != 5) in process_set_command()
902 if (ntokens != 5) in process_add_command()
921 if (ntokens != 5) in process_replace_command()
940 if (ntokens != 5) in process_append_command()
959 if (ntokens != 5) in process_prepend_command()
1026 if (ntokens < 10) in memcached_ascii_protocol_process_data()
[all …]
/dports/x11-wm/pwm/pwm-20070720/libtu/
H A Dparser.c49 int ntokens=0; in read_statement() local
56 tok=&tokens[ntokens]; in read_statement()
69 ntokens++; in read_statement()
86 ntokens--; in read_statement()
102 if(ntokens==0){ in read_statement()
147 *ntok_ret=ntokens; in read_statement()
217 int i, t, ntokens=0; in parse_config_tokz() local
250 while(ntokens--) in parse_config_tokz()
376 while(ntokens--) in parse_config_tokz()
589 if(ntokens!=1) in do_check_args()
[all …]
/dports/math/parmetis/parmetis-4.0.3/metis/GKlib/
H A Dfs.c82 size_t nlines=0, ntokens=0, max_nlntokens=0, nbytes=0, oldntokens=0, nread; in gk_getfilestats() local
97 ntokens += intoken; in gk_getfilestats()
99 if (max_nlntokens < ntokens-oldntokens) in gk_getfilestats()
100 max_nlntokens = ntokens-oldntokens; in gk_getfilestats()
101 oldntokens = ntokens; in gk_getfilestats()
104 ntokens += intoken; in gk_getfilestats()
112 ntokens += intoken; in gk_getfilestats()
113 if (max_nlntokens < ntokens-oldntokens) in gk_getfilestats()
114 max_nlntokens = ntokens-oldntokens; in gk_getfilestats()
121 *r_ntokens = ntokens; in gk_getfilestats()
/dports/math/py-PyMetis/PyMetis-2020.1/src/metis/GKlib/
H A Dfs.c82 size_t nlines=0, ntokens=0, max_nlntokens=0, nbytes=0, oldntokens=0, nread; in gk_getfilestats() local
97 ntokens += intoken; in gk_getfilestats()
99 if (max_nlntokens < ntokens-oldntokens) in gk_getfilestats()
100 max_nlntokens = ntokens-oldntokens; in gk_getfilestats()
101 oldntokens = ntokens; in gk_getfilestats()
104 ntokens += intoken; in gk_getfilestats()
112 ntokens += intoken; in gk_getfilestats()
113 if (max_nlntokens < ntokens-oldntokens) in gk_getfilestats()
114 max_nlntokens = ntokens-oldntokens; in gk_getfilestats()
121 *r_ntokens = ntokens; in gk_getfilestats()
/dports/cad/gmsh/gmsh-4.9.2-source/contrib/metis/GKlib/
H A Dfs.c82 size_t nlines=0, ntokens=0, max_nlntokens=0, nbytes=0, oldntokens=0, nread; in gk_getfilestats() local
97 ntokens += intoken; in gk_getfilestats()
99 if (max_nlntokens < ntokens-oldntokens) in gk_getfilestats()
100 max_nlntokens = ntokens-oldntokens; in gk_getfilestats()
101 oldntokens = ntokens; in gk_getfilestats()
104 ntokens += intoken; in gk_getfilestats()
112 ntokens += intoken; in gk_getfilestats()
113 if (max_nlntokens < ntokens-oldntokens) in gk_getfilestats()
114 max_nlntokens = ntokens-oldntokens; in gk_getfilestats()
121 *r_ntokens = ntokens; in gk_getfilestats()
/dports/math/libmesh/libmesh-1.6.2/contrib/metis/GKlib/
H A Dfs.c82 size_t nlines=0, ntokens=0, max_nlntokens=0, nbytes=0, oldntokens=0, nread; in gk_getfilestats() local
97 ntokens += intoken; in gk_getfilestats()
99 if (max_nlntokens < ntokens-oldntokens) in gk_getfilestats()
100 max_nlntokens = ntokens-oldntokens; in gk_getfilestats()
101 oldntokens = ntokens; in gk_getfilestats()
104 ntokens += intoken; in gk_getfilestats()
112 ntokens += intoken; in gk_getfilestats()
113 if (max_nlntokens < ntokens-oldntokens) in gk_getfilestats()
114 max_nlntokens = ntokens-oldntokens; in gk_getfilestats()
121 *r_ntokens = ntokens; in gk_getfilestats()
/dports/science/octopus/octopus-10.5/external_libs/metis-5.1/GKlib/
H A Dfs.c81 size_t nlines=0, ntokens=0, max_nlntokens=0, nbytes=0, oldntokens=0, nread; in gk_getfilestats() local
96 ntokens += intoken; in gk_getfilestats()
98 if (max_nlntokens < ntokens-oldntokens) in gk_getfilestats()
99 max_nlntokens = ntokens-oldntokens; in gk_getfilestats()
100 oldntokens = ntokens; in gk_getfilestats()
103 ntokens += intoken; in gk_getfilestats()
111 ntokens += intoken; in gk_getfilestats()
112 if (max_nlntokens < ntokens-oldntokens) in gk_getfilestats()
113 max_nlntokens = ntokens-oldntokens; in gk_getfilestats()
120 *r_ntokens = ntokens; in gk_getfilestats()
/dports/math/metis/metis-5.1.0/GKlib/
H A Dfs.c82 size_t nlines=0, ntokens=0, max_nlntokens=0, nbytes=0, oldntokens=0, nread; in gk_getfilestats() local
97 ntokens += intoken; in gk_getfilestats()
99 if (max_nlntokens < ntokens-oldntokens) in gk_getfilestats()
100 max_nlntokens = ntokens-oldntokens; in gk_getfilestats()
101 oldntokens = ntokens; in gk_getfilestats()
104 ntokens += intoken; in gk_getfilestats()
112 ntokens += intoken; in gk_getfilestats()
113 if (max_nlntokens < ntokens-oldntokens) in gk_getfilestats()
114 max_nlntokens = ntokens-oldntokens; in gk_getfilestats()
121 *r_ntokens = ntokens; in gk_getfilestats()
/dports/databases/grass7/grass-7.8.6/vector/v.in.ascii/
H A Dpoints.c75 int ntokens; /* number of tokens */ in points_analyse() local
128 ntokens = G_number_of_tokens(tokens); in points_analyse()
129 if (ntokens == 0) { in points_analyse()
133 if (ncols > 0 && ntokens != ncols) { in points_analyse()
144 if (xcol >= ntokens || ycol >= ntokens || zcol >= ntokens || in points_analyse()
145 catcol >= ntokens) { in points_analyse()
160 if (ntokens > ncols) { in points_analyse()
170 ncols = ntokens; in points_analyse()
174 minncols = ntokens; in points_analyse()
177 for (i = 0; i < ntokens; i++) { in points_analyse()
[all …]
/dports/mail/pecl-mailparse/mailparse-3.1.2/
H A Dphp_mailparse_rfc822.c59 *ntokens = 0; in tokenize()
175 ++*ntokens; in tokenize()
263 ++*ntokens; in tokenize()
279 ++*ntokens; in tokenize()
299 ++*ntokens; in tokenize()
320 ++*ntokens; in tokenize()
343 toks->tokens = toks->ntokens ? ecalloc(toks->ntokens, sizeof(php_rfc822_token_t)) : NULL; in php_mailparse_rfc822_tokenize()
363 if (upper > toks->ntokens) in php_rfc822_recombine_tokens()
364 upper = toks->ntokens; in php_rfc822_recombine_tokens()
446 if (start_tok >= toks->ntokens) { in parse_address_tokens()
[all …]
/dports/mail/mairix/mairix-0.24/dfasyn/
H A Dtabcompr.c69 compute_transition_sigs(struct DFA *dfa, int ntokens) in compute_transition_sigs() argument
74 for (j=0; j<ntokens; j++) { in compute_transition_sigs()
89 find_default_states(struct DFA *dfa, int ntokens) in find_default_states() argument
99 for (t=0; t<ntokens; t++) { in find_default_states()
105 best_diff = ntokens + 1; /* Worse than any computed value */ in find_default_states()
131 for (t=0; t<ntokens; t++) { in find_default_states()
153 compress_transition_table(struct DFA *dfa, int ntokens) in compress_transition_table() argument
155 compute_transition_sigs(dfa, ntokens); in compress_transition_table()
156 find_default_states(dfa, ntokens); in compress_transition_table()
/dports/lang/yap/yap-6.2.2/packages/clib/maildrop/rfc822/
H A Drfc822.c212 while (ntokens) in parseaddr()
219 for (i=0; i<ntokens; i++) in parseaddr()
237 ntokens -= i; in parseaddr()
257 --ntokens; in parseaddr()
324 ntokens -= i; in parseaddr()
338 ntokens -= i; in parseaddr()
339 if (ntokens) /* Skip the '>' token */ in parseaddr()
341 --ntokens; in parseaddr()
369 --ntokens; in parseaddr()
413 ntokens -= i; in parseaddr()
[all …]
/dports/databases/beansdb/beansdb-0.7.1.4/src/
H A Dbeansdb.c715 size_t ntokens = 0; in tokenize_command() local
727 ntokens++; in tokenize_command()
738 ntokens++; in tokenize_command()
751 ntokens++; in tokenize_command()
753 return ntokens; in tokenize_command()
816 if(ntokens < 2) in process_stat()
1182 size_t ntokens; in process_command() local
1210 if (ntokens >= 3 && in process_command()
1217 else if ((ntokens == 6 || ntokens == 7) && in process_command()
1284 if (ntokens >= 3) in process_command()
[all …]
/dports/mail/cone/cone-1.1/libs/rfc822/
H A Drfc822.c254 while (ntokens) in parseaddr()
261 for (i=0; i<ntokens; i++) in parseaddr()
279 ntokens -= i; in parseaddr()
299 --ntokens; in parseaddr()
366 ntokens -= i; in parseaddr()
380 ntokens -= i; in parseaddr()
381 if (ntokens) /* Skip the '>' token */ in parseaddr()
383 --ntokens; in parseaddr()
411 --ntokens; in parseaddr()
455 ntokens -= i; in parseaddr()
[all …]

12345678910>>...23