Home
last modified time | relevance | path

Searched refs:alloc_values (Results 1 – 17 of 17) sorted by relevance

/dports/databases/grass7/grass-7.8.6/lib/vector/Vlib/
H A Dlist.c41 p->alloc_values = 0; in Vect_new_list()
73 if (list->alloc_values) { in Vect_destroy_list()
103 if (list->n_values == list->alloc_values) { in Vect_list_append()
106 list->alloc_values = list->n_values + 1000; in Vect_list_append()
236 p->alloc_values = 0; in Vect_new_boxlist()
268 if (list->alloc_values) { in Vect_destroy_boxlist()
301 if (list->n_values == list->alloc_values) { in Vect_boxlist_append()
310 list->alloc_values = list->n_values + 1000; in Vect_boxlist_append()
H A Dremove_duplicates.c34 if (list->n_values == list->alloc_values) { in boxlist_add_sorted()
38 list->alloc_values = list->n_values + 100; in boxlist_add_sorted()
/dports/databases/grass7/grass-7.8.6/lib/gis/
H A Dilist.c63 list->alloc_values = 0; in G_init_ilist()
79 if (list->n_values == list->alloc_values) { in G_ilist_add()
84 list->alloc_values = list->n_values + 1000; in G_ilist_add()
/dports/databases/grass7/grass-7.8.6/lib/vector/diglib/
H A Dlist.c28 list->alloc_values = 0; in dig_init_boxlist()
36 if (list->n_values == list->alloc_values) { in dig_boxlist_add()
53 list->alloc_values = list->n_values + 1000; in dig_boxlist_add()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/polly/lib/External/isl/imath/
H A Dimtimer.c41 mp_int alloc_values(int nt, int prec);
134 mp_int alloc_values(int nt, int prec) { in alloc_values() function
169 if ((values = alloc_values(3, prec)) == NULL) return 0.0; in get_multiply_time()
186 if ((values = alloc_values(4, prec)) == NULL) return 0.0; in get_exptmod_time()
/dports/databases/grass7/grass-7.8.6/lib/temporal/lib/
H A Dmap_list.c83 list->alloc_values = 0; in tgis_init_map_list()
102 if (list->n_values == list->alloc_values) { in tgis_map_list_add()
107 list->alloc_values = list->n_values + 1000; in tgis_map_list_add()
/dports/databases/grass7/grass-7.8.6/include/
H A Dtemporal.h70 int alloc_values; member
127 int alloc_values; member
H A Dgis.h703 int alloc_values; member
/dports/emulators/joytran/joytran-0.9.5.2/src/
H A Dalloc_values.h3 void alloc_values();
H A Dmain.c60 alloc_values(); in main()
H A Dalloc_values.c69 void alloc_values() { in alloc_values() function
/dports/textproc/datamash/datamash-1.7/src/
H A Dfield-ops.h106 size_t alloc_values;/* number of allocated values */ member
H A Dfield-ops.c190 if (op->num_values >= op->alloc_values) in field_op_add_value()
192 op->alloc_values += VALUES_BATCH_INCREMENT; in field_op_add_value()
193 op->values = xnrealloc (op->values, op->alloc_values, in field_op_add_value()
1129 op->alloc_values = 0; in field_op_free()
/dports/print/ghostscript9-agpl-x11/ghostscript-9.52/cups/libs/cups/
H A Dipp.c6448 int alloc_values; /* Number of values to allocate */ in ipp_add_attr() local
6467 alloc_values = 1; in ipp_add_attr()
6960 int alloc_values; /* Allocated values */ in ipp_set_value() local
6970 alloc_values = 1; in ipp_set_value()
6972 alloc_values = (temp->num_values + IPP_MAX_VALUES - 1) & in ipp_set_value()
6975 if (element < alloc_values) in ipp_set_value()
6988 if (alloc_values < IPP_MAX_VALUES) in ipp_set_value()
6989 alloc_values = IPP_MAX_VALUES; in ipp_set_value()
6991 alloc_values += IPP_MAX_VALUES; in ipp_set_value()
6994 alloc_values)); in ipp_set_value()
[all …]
/dports/print/cups/cups-2.3.3op2/cups/
H A Dipp.c6183 int alloc_values; /* Number of values to allocate */ in ipp_add_attr() local
6201 alloc_values = 1; in ipp_add_attr()
6206 (size_t)(alloc_values - 1) * sizeof(_ipp_value_t), 1); in ipp_add_attr()
6714 int alloc_values; /* Allocated values */ in ipp_set_value() local
6724 alloc_values = 1; in ipp_set_value()
6726 alloc_values = (temp->num_values + IPP_MAX_VALUES - 1) & in ipp_set_value()
6729 if (element < alloc_values) in ipp_set_value()
6742 if (alloc_values < IPP_MAX_VALUES) in ipp_set_value()
6743 alloc_values = IPP_MAX_VALUES; in ipp_set_value()
6745 alloc_values += IPP_MAX_VALUES; in ipp_set_value()
[all …]
/dports/databases/grass7/grass-7.8.6/vector/v.net.salesman/
H A Dmain.c86 if (list->n_values == list->alloc_values) { in tsp_list_append()
89 list->alloc_values = list->n_values + 1000; in tsp_list_append()
/dports/databases/grass7/grass-7.8.6/include/vect/
H A Ddig_structs.h1771 int alloc_values; member