Home
last modified time | relevance | path

Searched refs:max_con (Results 1 – 3 of 3) sorted by relevance

/external/curl/docs/examples/
Dcrawler.c23 int max_con = 200; variable
155 curl_multi_setopt(multi_handle, CURLMOPT_MAX_TOTAL_CONNECTIONS, max_con); in main()
/external/llvm-project/polly/lib/External/isl/
Disl_tab.c71 tab->max_con = n_row; in isl_tab_alloc()
114 if (tab->max_con < tab->n_con + n_new) { in isl_tab_extend_cons()
118 struct isl_tab_var, tab->max_con + n_new); in isl_tab_extend_cons()
122 tab->max_con += n_new; in isl_tab_extend_cons()
244 dup->con = isl_alloc_array(tab->mat->ctx, struct isl_tab_var, tab->max_con); in isl_tab_dup()
245 if (tab->max_con && !dup->con) in isl_tab_dup()
281 dup->max_con = tab->max_con; in isl_tab_dup()
482 tab1->max_con + tab2->max_con); in isl_tab_product()
483 if ((tab1->max_con + tab2->max_con) && !prod->con) in isl_tab_product()
534 prod->max_con = tab1->max_con + tab2->max_con; in isl_tab_product()
[all …]
Disl_tab.h148 unsigned max_con; member