| /dflybsd-src/usr.sbin/nscd/ |
| H A D | hashtable.h | 54 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, \ 169 memcpy(&(the_entry->field.values[the_entry->field.size++]), \ 172 qsort(the_entry->field.values, the_entry->field.size, \ [all …]
|
| /dflybsd-src/contrib/ncurses/ncurses/tinfo/ |
| H A D | db_iterator.c | 290 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() 308 values[dbdCfgList] = TERMINFO_DIRS; in _nc_first_db() 311 values[dbdCfgOnce] = TERMINFO; in _nc_first_db() 316 values[dbdCfgList2] = TERMPATH; in _nc_first_db() 321 values[dbdEnvOnce] = cache_getenv("TERMINFO", dbdEnvOnce); in _nc_first_db() 322 values[dbdHome] = _nc_home_terminfo(); in _nc_first_db() 324 values[dbdEnvList] = cache_getenv("TERMINFO_DIRS", dbdEnvList); in _nc_first_db() 328 values[dbdEnvOnce2] = cache_getenv("TERMCAP", dbdEnvOnce2); in _nc_first_db() [all …]
|
| /dflybsd-src/usr.bin/sdpquery/ |
| H A D | search.c | 93 static sdp_attr_t values[NRECS * attrs_len]; variable 94 #define values_len (sizeof(values)/sizeof(values[0])) 589 values[n].flags = SDP_ATTR_INVALID; in do_sdp_search() 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() 604 n = sdp_search(xs, 1, &service, attrs_len, attrs, values_len, values); in do_sdp_search() 612 if (values[n].flags != SDP_ATTR_OK) in do_sdp_search() 615 switch (values[n].attr) { in do_sdp_search() 618 if (values[n].vlen == 5) { in do_sdp_search() [all …]
|
| /dflybsd-src/tools/regression/usr.sbin/installer/libaura/dict2/ |
| H A D | dict2.c | 28 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()
|
| /dflybsd-src/contrib/gdb-7/gdb/mi/ |
| H A D | mi-cmd-stack.c | 38 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() 325 list_args_or_locals (enum what_to_list what, enum print_values values, in list_args_or_locals() argument 411 switch (values) in list_args_or_locals() [all …]
|
| /dflybsd-src/contrib/gcc-8.0/gcc/ |
| H A D | fibonacci_heap.c | 65 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 D | sreal.c | 320 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 D | tree-outof-ssa.h | 35 bitmap values; member 72 if (SA.values && bitmap_bit_p (SA.values, v)) in get_gimple_for_ssa_name()
|
| /dflybsd-src/contrib/gcc-4.7/gcc/objc/ |
| H A D | objc-map.c | 71 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 D | objc-map.h | 78 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()
|
| /dflybsd-src/contrib/gcc-4.7/gcc/ |
| H A D | pointer-set.c | 198 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 D | ssaexpand.h | 36 bitmap values; member 69 if (SA.values && bitmap_bit_p (SA.values, v)) in get_gimple_for_ssa_name()
|
| H A D | read-rtl.c | 58 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 …]
|
| /dflybsd-src/sys/dev/drm/ |
| H A D | drm_property.c | 88 property->values = kcalloc(num_values, sizeof(uint64_t), in drm_property_create() 90 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() 466 put_user(property->values[i], values_ptr + i)) { in drm_mode_getproperty_ioctl() 866 if (value < property->values[0] || value > property->values[1]) in drm_property_change_valid_get() [all …]
|
| H A D | drm_dp_helper.c | 331 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 …]
|
| /dflybsd-src/contrib/gcc-8.0/libgcc/ |
| H A D | libgcov-driver.c | 93 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() 267 gcov_histogram_insert (cs_ptr->histogram, ci_ptr->values[ix]); in gcov_compute_histogram() 334 cs_ptr->sum_all += ci_ptr->values[c_num]; in compute_summary() 335 if (cs_ptr->run_max < ci_ptr->values[c_num]) in compute_summary() 336 cs_ptr->run_max = ci_ptr->values[c_num]; in compute_summary() [all …]
|
| /dflybsd-src/contrib/gcc-8.0/libgomp/ |
| H A D | env.c | 266 unsigned long value, *values = NULL; in parse_unsigned_long_list() local 297 n = realloc (values, nalloced * sizeof (unsigned long)); in parse_unsigned_long_list() 300 free (values); in parse_unsigned_long_list() 305 values = n; in parse_unsigned_long_list() 307 values[nvalues++] = value; in parse_unsigned_long_list() 320 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() 355 char value = omp_proc_bind_false, *values = NULL; in parse_bind_var() local [all …]
|
| /dflybsd-src/contrib/gdb-7/gdb/ |
| H A D | gdb.gdb | 17 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
|
| /dflybsd-src/crypto/libressl/ssl/ |
| H A D | ssl_sigalgs.c | 228 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()
|
| /dflybsd-src/contrib/gcc-4.7/libgomp/ |
| H A D | env.c | 197 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()
|
| /dflybsd-src/sys/dev/misc/syscons/ |
| H A D | syscons_nexus.c | 194 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()
|
| /dflybsd-src/contrib/gcc-4.7/libgcc/ |
| H A D | libgcov.c | 155 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 …]
|
| /dflybsd-src/crypto/libressl/crypto/x509/ |
| H A D | x509_pcons.c | 72 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 D | x509_bcons.c | 71 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()
|
| /dflybsd-src/contrib/gcc-4.7/libgcc/config/ |
| H A D | vxlib-tls.c | 86 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()
|