Home
last modified time | relevance | path

Searched refs:values (Results 1 – 25 of 381) sorted by relevance

12345678910>>...16

/dragonfly/usr.sbin/nscd/
H A Dhashtable.h54 type *values; \
85 (table)->entries[var].field.values = (type *)malloc(\
88 assert((table)->entries[var].field.values != NULL);\
99 free((table)->entries[var].field.values); \
117 for ((var) = &((entry)->field.values[0]); \
118 (var) < &((entry)->field.values[(entry)->field.size]); \
133 (entry)->field.values = (type *)realloc((entry)->field.values, \
139 (entry)->field.values = (type *)realloc((entry)->field.values, \
172 qsort(the_entry->field.values, the_entry->field.size, \
179 return ((type *)bsearch(key, the_entry->field.values, \
[all …]
/dragonfly/contrib/ncurses/ncurses/tinfo/
H A Ddb_iterator.c290 const char *values[dbdLAST]; in _nc_first_db() local
298 values[j] = 0; in _nc_first_db()
304 values[dbdTIC] = TicDirectory; in _nc_first_db()
311 values[dbdCfgOnce] = TERMINFO; in _nc_first_db()
316 values[dbdCfgList2] = TERMPATH; in _nc_first_db()
330 if (values[dbdEnvOnce2] != 0 in _nc_first_db()
331 && *values[dbdEnvOnce2] != '/') { in _nc_first_db()
332 values[dbdEnvOnce2] = 0; in _nc_first_db()
339 if (values[j] == 0) in _nc_first_db()
340 values[j] = ""; in _nc_first_db()
[all …]
/dragonfly/usr.bin/sdpquery/
H A Dsearch.c94 #define values_len (sizeof(values)/sizeof(values[0]))
590 values[n].attr = 0; in do_sdp_search()
591 values[n].vlen = BSIZE; in do_sdp_search()
592 values[n].value = buffer[n]; in do_sdp_search()
615 switch (values[n].attr) { in do_sdp_search()
618 if (values[n].vlen == 5) { in do_sdp_search()
631 values[n].vlen); in do_sdp_search()
637 values[n].value + values[n].vlen); in do_sdp_search()
643 values[n].value + values[n].vlen); in do_sdp_search()
649 values[n].value + values[n].vlen); in do_sdp_search()
[all …]
/dragonfly/tools/regression/usr.sbin/installer/libaura/dict2/
H A Ddict2.c28 int values[16]; variable
62 values[i] = i; in test_store()
64 &values[i], sizeof(int)); in test_store()
66 m2s(method), keys[i], values[i]); in test_store()
83 if (*val != values[i]) { in test_fetch()
86 *val, i, values[i]); in test_fetch()
/dragonfly/contrib/gdb-7/gdb/mi/
H A Dmi-cmd-stack.c38 enum print_values values,
250 enum print_values values) in list_arg_or_local() argument
261 gdb_assert ((values == PRINT_NO_VALUES && arg->val == NULL in list_arg_or_local()
263 || values == PRINT_SIMPLE_VALUES in list_arg_or_local()
264 || (values == PRINT_ALL_VALUES in list_arg_or_local()
270 if (values != PRINT_NO_VALUES || what == all) in list_arg_or_local()
281 if (values == PRINT_SIMPLE_VALUES) in list_arg_or_local()
314 if (values != PRINT_NO_VALUES || what == all) in list_arg_or_local()
411 switch (values) in list_args_or_locals()
429 list_arg_or_local (&arg, what, values); in list_args_or_locals()
[all …]
/dragonfly/contrib/gcc-8.0/gcc/
H A Dfibonacci_heap.c65 int values[TEST_HEAP_N]; in test_basic_heap_operations() local
70 values[i] = TEST_CALCULATE_VALUE (i); in test_basic_heap_operations()
72 h1->insert (i, &values[i]); in test_basic_heap_operations()
74 ASSERT_EQ (values[0], *h1->min ()); in test_basic_heap_operations()
81 ASSERT_EQ (values[i], *h1->min ()); in test_basic_heap_operations()
114 int values[TEST_HEAP_N]; in test_replace_key() local
117 int_heap_t *heap = build_simple_heap (values, nodes); in test_replace_key()
141 int values[3 * TEST_HEAP_N]; in test_duplicate_keys() local
146 values[i] = TEST_CALCULATE_VALUE (i); in test_duplicate_keys()
147 heap->insert (i / 3, &values[i]); in test_duplicate_keys()
H A Dsreal.c320 int values[] = {-14123413, -7777, -17, -10, -2, 0, 17, 139, 1234123}; in sreal_verify_arithmetics() local
321 unsigned c = sizeof (values) / sizeof (int); in sreal_verify_arithmetics()
326 int a = values[i]; in sreal_verify_arithmetics()
327 int b = values[j]; in sreal_verify_arithmetics()
356 int values[] = {0, 17, 32, 139, 1024, 55555, 1234123}; in sreal_verify_shifting() local
357 unsigned c = sizeof (values) / sizeof (int); in sreal_verify_shifting()
360 verify_shifting (values[i]); in sreal_verify_shifting()
H A Dtree-outof-ssa.h35 bitmap values; member
72 if (SA.values && bitmap_bit_p (SA.values, v)) in get_gimple_for_ssa_name()
/dragonfly/contrib/gcc-4.7/gcc/objc/
H A Dobjc-map.c71 map->values = (tree *)ggc_internal_cleared_vec_alloc_stat (initial_capacity, sizeof (tree)); in objc_map_alloc_ggc()
76 if (map->values == NULL) in objc_map_alloc_ggc()
102 tree *old_values = map->values; in objc_map_private_resize()
116 map->values = (tree *)ggc_internal_cleared_vec_alloc_stat (map->number_of_slots, sizeof (tree)); in objc_map_private_resize()
121 if (map->values == NULL) in objc_map_private_resize()
132 map->values[k] = old_values[i]; in objc_map_private_resize()
143 map->values[k] = old_values[i]; in objc_map_private_resize()
H A Dobjc-map.h78 tree * GTY ((length ("%h.number_of_slots"))) values;
148 return map->values[i]; in objc_map_get()
158 return map->values[i]; in objc_map_get()
190 map->values[i] = value; in objc_map_put()
195 map->values[i] = value; in objc_map_put()
306 return map->values[i - 1]; in objc_map_iterator_current_value()
/dragonfly/contrib/gcc-4.7/gcc/
H A Dpointer-set.c198 void **values; member
212 result->values = XCNEWVEC (void *, result->n_slots); in pointer_map_create()
220 XDELETEVEC (pmap->values); in pointer_map_destroy()
236 return &pmap->values[n]; in pointer_map_contains()
271 new_values[n] = pmap->values[i]; in pointer_map_insert()
275 XDELETEVEC (pmap->values); in pointer_map_insert()
279 pmap->values = new_values; in pointer_map_insert()
289 return &pmap->values[n]; in pointer_map_insert()
301 if (pmap->keys[i] && !fn (pmap->keys[i], &pmap->values[i], data)) in pointer_map_traverse()
H A Dssaexpand.h36 bitmap values; member
69 if (SA.values && bitmap_bit_p (SA.values, v)) in get_gimple_for_ssa_name()
H A Dread-rtl.c58 struct map_value *values; member
211 for (v = m->values; v != 0; v = v->next) in map_attr_string()
494 for (v = iterator->values; v != 0; v = v->next) in apply_iterator_traverse()
500 if (v != iterator->values) in apply_iterator_traverse()
528 m->values = 0; in add_mapping()
584 lower_ptr = &lower->values; in initialize_iterators()
585 upper_ptr = &upper->values; in initialize_iterators()
598 lower_ptr = &lower->values; in initialize_iterators()
599 upper_ptr = &upper->values; in initialize_iterators()
759 end_ptr = &m->values; in read_mapping()
[all …]
/dragonfly/sys/dev/drm/
H A Ddrm_property.c90 if (!property->values) in drm_property_create()
113 kfree(property->values); in drm_property_create()
233 property->values[0] = min; in property_create_range()
234 property->values[1] = max; in property_create_range()
328 property->values[0] = type; in drm_property_create_object()
407 property->values[index] = value; in drm_property_add_enum()
431 kfree(property->values); in drm_property_destroy()
866 if (value < property->values[0] || value > property->values[1]) in drm_property_change_valid_get()
873 svalue > U642I64(property->values[1])) in drm_property_change_valid_get()
901 property->values[0]); in drm_property_change_valid_get()
[all …]
H A Ddrm_dp_helper.c331 u8 values[3]; in drm_dp_link_probe() local
336 err = drm_dp_dpcd_read(aux, DP_DPCD_REV, values, sizeof(values)); in drm_dp_link_probe()
340 link->revision = values[0]; in drm_dp_link_probe()
341 link->rate = drm_dp_bw_code_to_link_rate(values[1]); in drm_dp_link_probe()
342 link->num_lanes = values[2] & DP_MAX_LANE_COUNT_MASK; in drm_dp_link_probe()
344 if (values[2] & DP_ENHANCED_FRAME_CAP) in drm_dp_link_probe()
429 u8 values[2]; in drm_dp_link_configure() local
432 values[0] = drm_dp_link_rate_to_bw_code(link->rate); in drm_dp_link_configure()
433 values[1] = link->num_lanes; in drm_dp_link_configure()
436 values[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN; in drm_dp_link_configure()
[all …]
/dragonfly/contrib/gcc-8.0/libgcc/
H A Dlibgcov-driver.c93 free (buffer->info.ctrs[n_ctr++].values); in free_fn_data()
125 gcov_type *values; in buffer_fn_data() local
138 values = (gcov_type *) xmalloc (len); in buffer_fn_data()
139 if (!values) in buffer_fn_data()
143 fn_buffer->info.ctrs[n_ctrs].values = values; in buffer_fn_data()
146 *values++ = gcov_read_counter (); in buffer_fn_data()
476 (*merge) (ci_ptr->values, ci_ptr->num); in merge_one_data()
583 c_ptr = ci_ptr->values; in write_one_data()
710 gcov_type *values; in gcov_sort_icall_topn_counter() local
714 values = counters->values; in gcov_sort_icall_topn_counter()
[all …]
/dragonfly/contrib/gcc-8.0/libgomp/
H A Denv.c300 free (values); in parse_unsigned_long_list()
305 values = n; in parse_unsigned_long_list()
307 values[nvalues++] = value; in parse_unsigned_long_list()
329 *p1stvalue = values[0]; in parse_unsigned_long_list()
330 *pvalues = values; in parse_unsigned_long_list()
341 free (values); in parse_unsigned_long_list()
412 free (values); in parse_bind_var()
417 values = n; in parse_bind_var()
446 *p1stvalue = values[0]; in parse_bind_var()
447 *pvalues = values; in parse_bind_var()
[all …]
/dragonfly/contrib/gdb-7/gdb/
H A Dgdb.gdb17 define print-values
29 document print-values
30 Print a list of values.
31 Takes one argument, the value to print, and prints all the values which
32 are chained through the next field. Thus the most recently created values
/dragonfly/crypto/libressl/ssl/
H A Dssl_sigalgs.c228 const uint16_t *values; in ssl_sigalg_from_value() local
233 &values, &len); in ssl_sigalg_from_value()
236 if (values[i] == value) in ssl_sigalg_from_value()
247 const uint16_t *values; in ssl_sigalgs_build() local
252 ssl_sigalgs_for_version(tls_version, &values, &len); in ssl_sigalgs_build()
257 if (values[i] == SIGALG_RSA_PKCS1_MD5_SHA1) in ssl_sigalgs_build()
259 if ((sigalg = ssl_sigalg_lookup(values[i])) == NULL) in ssl_sigalgs_build()
264 if (!CBB_add_u16(cbb, values[i])) in ssl_sigalgs_build()
/dragonfly/contrib/gcc-4.7/libgomp/
H A Denv.c197 unsigned long value, *values = NULL; in parse_unsigned_long_list() local
228 n = realloc (values, nalloced * sizeof (unsigned long)); in parse_unsigned_long_list()
231 free (values); in parse_unsigned_long_list()
236 values = n; in parse_unsigned_long_list()
238 values[nvalues++] = value; in parse_unsigned_long_list()
251 values[nvalues++] = value; in parse_unsigned_long_list()
260 *p1stvalue = values[0]; in parse_unsigned_long_list()
261 *pvalues = values; in parse_unsigned_long_list()
272 free (values); in parse_unsigned_long_list()
/dragonfly/sys/dev/misc/syscons/
H A Dsyscons_nexus.c194 sc_get_bios_values(bios_values_t *values) in sc_get_bios_values() argument
196 values->cursor_start = 0; in sc_get_bios_values()
197 values->cursor_end = 32; in sc_get_bios_values()
198 values->shift_state = 0; in sc_get_bios_values()
199 values->bell_pitch = BELL_PITCH; in sc_get_bios_values()
/dragonfly/contrib/gcc-4.7/libgcc/
H A Dlibgcov.c155 free (buffer->info.ctrs[n_ctr++].values); in free_fn_data()
187 gcov_type *values; in buffer_fn_data() local
200 values = (gcov_type *)malloc (len); in buffer_fn_data()
201 if (!values) in buffer_fn_data()
205 fn_buffer->info.ctrs[n_ctrs].values = values; in buffer_fn_data()
208 *values++ = gcov_read_counter (); in buffer_fn_data()
323 cs_ptr->sum_all += ci_ptr->values[c_num]; in gcov_exit()
324 if (cs_ptr->run_max < ci_ptr->values[c_num]) in gcov_exit()
325 cs_ptr->run_max = ci_ptr->values[c_num]; in gcov_exit()
540 (*merge) (ci_ptr->values, ci_ptr->num); in gcov_exit()
[all …]
/dragonfly/crypto/libressl/crypto/x509/
H A Dx509_pcons.c72 X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *values);
160 STACK_OF(CONF_VALUE) *values) in v2i_POLICY_CONSTRAINTS()
170 for (i = 0; i < sk_CONF_VALUE_num(values); i++) { in v2i_POLICY_CONSTRAINTS()
171 val = sk_CONF_VALUE_value(values, i); in v2i_POLICY_CONSTRAINTS()
H A Dx509_bcons.c71 X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *values);
170 STACK_OF(CONF_VALUE) *values) in v2i_BASIC_CONSTRAINTS()
180 for (i = 0; i < sk_CONF_VALUE_num(values); i++) { in v2i_BASIC_CONSTRAINTS()
181 val = sk_CONF_VALUE_value(values, i); in v2i_BASIC_CONSTRAINTS()
/dragonfly/contrib/gcc-4.7/libgcc/config/
H A Dvxlib-tls.c86 void *values[MAX_KEYS]; member
181 dtor (data->values[key]); in tls_delete_hook()
306 return data->values[key]; in __gthread_getspecific()
358 data->values[key] = value; in __gthread_setspecific()

12345678910>>...16