Home
last modified time | relevance | path

Searched refs:vals (Results 1 – 25 of 35) sorted by relevance

12

/dragonfly/tools/regression/lib/libm/
H A Dtest-csqrt.c188 static const double vals[] = { in test_infinities() local
199 for (i = 0; i < N(vals); i++) { in test_infinities()
200 if (isfinite(vals[i])) { in test_infinities()
201 assert_equal(t_csqrt(cpackl(-INFINITY, vals[i])), in test_infinities()
202 cpackl(0.0, copysignl(INFINITY, vals[i]))); in test_infinities()
203 assert_equal(t_csqrt(cpackl(INFINITY, vals[i])), in test_infinities()
204 cpackl(INFINITY, copysignl(0.0, vals[i]))); in test_infinities()
206 assert_equal(t_csqrt(cpackl(vals[i], INFINITY)), in test_infinities()
208 assert_equal(t_csqrt(cpackl(vals[i], -INFINITY)), in test_infinities()
/dragonfly/crypto/libressl/crypto/bn/
H A Dbn_ctx.c96 BIGNUM vals[BN_CTX_POOL_SIZE]; member
169 item->vals[bnidx++ % BN_CTX_POOL_SIZE].dmax); in ctxdbg()
256 pool->vals[loop++].dmax); in BN_CTX_free()
400 BIGNUM *bn = p->head->vals; in BN_POOL_finish()
419 BIGNUM *bn = item->vals; in BN_POOL_reset()
442 bn = item->vals; in BN_POOL_get()
458 return item->vals; in BN_POOL_get()
464 return p->current->vals + ((p->used++) % BN_CTX_POOL_SIZE); in BN_POOL_get()
474 bn_check_top(p->current->vals + offset); in BN_POOL_release()
/dragonfly/sys/dev/drm/i915/
H A Dintel_dp_aux_backlight.c85 uint8_t vals[2] = { 0x0 }; in intel_dp_aux_set_backlight() local
87 vals[0] = level; in intel_dp_aux_set_backlight()
91 vals[0] = (level & 0xFF00) >> 8; in intel_dp_aux_set_backlight()
92 vals[1] = (level & 0xFF); in intel_dp_aux_set_backlight()
95 vals, sizeof(vals)) < 0) { in intel_dp_aux_set_backlight()
H A Dintel_engine_cs.c1135 u8 vals[3] = { 0, 0, 0 }; in skl_tune_iz_hashing() local
1155 vals[i] = 3 - ss; in skl_tune_iz_hashing()
1158 if (vals[0] == 0 && vals[1] == 0 && vals[2] == 0) in skl_tune_iz_hashing()
1166 GEN9_IZ_HASHING(2, vals[2]) | in skl_tune_iz_hashing()
1167 GEN9_IZ_HASHING(1, vals[1]) | in skl_tune_iz_hashing()
1168 GEN9_IZ_HASHING(0, vals[0])); in skl_tune_iz_hashing()
/dragonfly/crypto/libressl/crypto/x509/
H A Dx509_pci.c234 STACK_OF(CONF_VALUE) *vals; in r2i_pci()
240 vals = X509V3_parse_list(value); in r2i_pci()
241 for (i = 0; i < sk_CONF_VALUE_num(vals); i++) { in r2i_pci()
242 CONF_VALUE *cnf = sk_CONF_VALUE_value(vals, i); in r2i_pci()
309 sk_CONF_VALUE_pop_free(vals, X509V3_conf_free); in r2i_pci()
H A Dx509_cpols.c408 STACK_OF(CONF_VALUE) *vals; in STACK_OF()
417 vals = X509V3_parse_list(value); in STACK_OF()
418 if (vals == NULL) { in STACK_OF()
423 for (i = 0; i < sk_CONF_VALUE_num(vals); i++) { in STACK_OF()
424 cnf = sk_CONF_VALUE_value(vals, i); in STACK_OF()
461 sk_CONF_VALUE_pop_free(vals, X509V3_conf_free); in STACK_OF()
465 sk_CONF_VALUE_pop_free(vals, X509V3_conf_free); in STACK_OF()
/dragonfly/usr.sbin/efibootmgr/
H A Defibootmgr.c550 uint16_t *vals, next_free = 0; in make_next_boot_var_name() local
559 vals = malloc(sizeof(uint16_t) * cnt); in make_next_boot_var_name()
560 if (!vals) in make_next_boot_var_name()
565 vals[i++] = v->idx; in make_next_boot_var_name()
567 qsort(vals, cnt, sizeof(uint16_t), compare); in make_next_boot_var_name()
569 if (vals[0] > 0) { in make_next_boot_var_name()
574 if (vals[i] + 1 != vals[i + 1]) in make_next_boot_var_name()
575 next_free = vals[i] + 1; in make_next_boot_var_name()
577 next_free = vals[cnt - 1] + 1; in make_next_boot_var_name()
580 free(vals); in make_next_boot_var_name()
/dragonfly/contrib/binutils-2.34/binutils/
H A Drdcoff.c494 bfd_signed_vma *vals; in parse_coff_enum_type() local
502 vals = (bfd_signed_vma *) xmalloc (alloc * sizeof *vals); in parse_coff_enum_type()
520 free (vals); in parse_coff_enum_type()
535 vals = ((bfd_signed_vma *) in parse_coff_enum_type()
536 xrealloc (vals, alloc * sizeof *vals)); in parse_coff_enum_type()
540 vals[count] = bfd_asymbol_value (sym); in parse_coff_enum_type()
552 return debug_make_enum_type (dhandle, names, vals); in parse_coff_enum_type()
/dragonfly/contrib/binutils-2.27/binutils/
H A Drdcoff.c492 bfd_signed_vma *vals; in parse_coff_enum_type() local
500 vals = (bfd_signed_vma *) xmalloc (alloc * sizeof *vals); in parse_coff_enum_type()
531 vals = ((bfd_signed_vma *) in parse_coff_enum_type()
532 xrealloc (vals, alloc * sizeof *vals)); in parse_coff_enum_type()
536 vals[count] = bfd_asymbol_value (sym); in parse_coff_enum_type()
548 return debug_make_enum_type (dhandle, names, vals); in parse_coff_enum_type()
H A Dieee.c1488 bfd_signed_vma *vals; in parse_ieee_ty() local
1525 vals = (bfd_signed_vma *) xmalloc (c * sizeof *vals); in parse_ieee_ty()
1527 vals[i] = i; in parse_ieee_ty()
1592 bfd_signed_vma *vals; in parse_ieee_ty() local
1624 vals = ((bfd_signed_vma *) in parse_ieee_ty()
1625 xrealloc (vals, alloc * sizeof *vals)); in parse_ieee_ty()
3758 bfd_signed_vma *vals; member
5311 bfd_signed_vma *vals) in ieee_enum_type() argument
5348 || vals[i] != e->vals[i] in ieee_enum_type()
5382 if (vals[i] != i) in ieee_enum_type()
[all …]
/dragonfly/sys/dev/netif/iwm/
H A Dif_iwm_pcie_trans.c202 uint32_t *vals = buf; in iwm_read_mem() local
207 vals[offs] = IWM_READ(sc, IWM_HBUS_TARG_MEM_RDAT); in iwm_read_mem()
221 const uint32_t *vals = buf; in iwm_write_mem() local
227 uint32_t val = vals ? vals[offs] : 0; in iwm_write_mem()
/dragonfly/contrib/gcc-4.7/gcc/
H A Dtree-vect-generic.c561 tree vals = TREE_VECTOR_CST_ELTS (vect); in vector_element() local
562 for (i = 0; vals; vals = TREE_CHAIN (vals), ++i) in vector_element()
564 return TREE_VALUE (vals); in vector_element()
644 tree vals = TREE_VECTOR_CST_ELTS (mask); in lower_vec_perm() local
646 for (i = 0; i < elements; ++i, vals = TREE_CHAIN (vals)) in lower_vec_perm()
647 sel_int[i] = TREE_INT_CST_LOW (TREE_VALUE (vals)) & (2 * elements - 1); in lower_vec_perm()
H A Dprint-tree.c824 tree vals = TREE_VECTOR_CST_ELTS (node); in print_node() local
830 for (link = vals; link; link = TREE_CHAIN (link), ++i) in print_node()
H A Difcvt.c2699 struct pointer_map_t *vals, in check_cond_move_block() argument
2741 && pointer_map_contains (vals, src)) in check_cond_move_block()
2743 && pointer_map_contains (vals, SUBREG_REG (src)))) in check_cond_move_block()
2748 if (pointer_map_contains (vals, dest)) in check_cond_move_block()
2762 slot = pointer_map_insert (vals, (void *) dest); in check_cond_move_block()
/dragonfly/usr.bin/evtranalyze/
H A Devtranalyze.c302 uintmax_t *vals; member
314 if (!(v->vals = malloc(v->allocated * sizeof(v->vals[0])))) { in vector_new()
329 tmp = realloc(v->vals, 2 * v->allocated * sizeof(v->vals[0])); in vector_push()
332 v->vals = tmp; in vector_push()
335 v->vals[v->used++] = val; in vector_push()
342 free(v->vals); in vector_destroy()
354 for (i = 0, val = v->vals[0]; i < v->used; val = v->vals[++i])
/dragonfly/usr.bin/rpcgen/
H A Drpc_parse.h102 enumval_list *vals; member
H A Drpc_hout.c365 for (l = def->def.en.vals; l != NULL; l = l->next) { in penumdef()
H A Drpc_parse.c244 tailp = &defp->def.en.vals; in def_enum()
/dragonfly/contrib/tcsh-6/
H A Dsh.hist.c532 Char **vals = vp->vec; in testHash() local
533 while (*vals) { in testHash()
534 int length = getn(*vals); in testHash()
539 vals++; in testHash()
/dragonfly/crypto/libressl/apps/openssl/
H A Dapps.c998 STACK_OF(CONF_VALUE) *vals; in set_multi_opts()
1004 vals = X509V3_parse_list(arg); in set_multi_opts()
1005 for (i = 0; i < sk_CONF_VALUE_num(vals); i++) { in set_multi_opts()
1006 val = sk_CONF_VALUE_value(vals, i); in set_multi_opts()
1010 sk_CONF_VALUE_pop_free(vals, X509V3_conf_free); in set_multi_opts()
/dragonfly/contrib/wpa_supplicant/wpa_supplicant/dbus/
H A Ddbus_new_handlers_p2p.c2486 struct wpabuf *vals[MAX_WPS_VENDOR_EXTENSIONS]; in wpas_dbus_setter_p2p_group_vendor_ext() local
2500 os_memset(vals, 0, sizeof(vals)); in wpas_dbus_setter_p2p_group_vendor_ext()
2518 vals[i] = wpabuf_alloc_copy(val, len); in wpas_dbus_setter_p2p_group_vendor_ext()
2519 if (vals[i] == NULL) { in wpas_dbus_setter_p2p_group_vendor_ext()
2529 wpabuf_free(vals[i]); in wpas_dbus_setter_p2p_group_vendor_ext()
2535 hapd->conf->wps_vendor_ext[i] = vals[i]; in wpas_dbus_setter_p2p_group_vendor_ext()
/dragonfly/sys/bus/u4b/wlan/
H A Dif_urtwnreg.h1309 const uint32_t *vals; member
1839 const uint32_t *vals; member
/dragonfly/contrib/gcc-8.0/gcc/
H A Dtree.c1954 vec<constructor_elt, va_gc> *vals = CONSTRUCTOR_ELTS (c); in recompute_constructor_flags() local
1956 FOR_EACH_CONSTRUCTOR_VALUE (vals, i, val) in recompute_constructor_flags()
1984 FOR_EACH_CONSTRUCTOR_VALUE (vals, i, val) in verify_constructor_flags()
2001 CONSTRUCTOR_ELTS (c) = vals; in build_constructor()
2026 build_constructor_from_list (tree type, tree vals) in build_constructor_from_list() argument
2031 if (vals) in build_constructor_from_list()
2033 vec_alloc (v, list_length (vals)); in build_constructor_from_list()
2034 for (t = vals; t; t = TREE_CHAIN (t)) in build_constructor_from_list()
14329 build_vector (tree type, vec<tree> vals MEM_STAT_DECL) in build_vector()
14332 tree_vector_builder builder (type, vals.length (), 1); in build_vector()
[all …]
/dragonfly/crypto/openssh/
H A Dreadconf.c3190 dump_cfg_strarray(OpCodes code, u_int count, char **vals) in dump_cfg_strarray() argument
3195 printf("%s %s\n", lookup_opcode_name(code), vals[i]); in dump_cfg_strarray()
3199 dump_cfg_strarray_oneline(OpCodes code, u_int count, char **vals) in dump_cfg_strarray_oneline() argument
3207 printf(" %s", vals[i]); in dump_cfg_strarray_oneline()
H A Dservconf.c2809 dump_cfg_strarray(ServerOpCodes code, u_int count, char **vals) in dump_cfg_strarray() argument
2814 printf("%s %s\n", lookup_opcode_name(code), vals[i]); in dump_cfg_strarray()
2818 dump_cfg_strarray_oneline(ServerOpCodes code, u_int count, char **vals) in dump_cfg_strarray_oneline() argument
2826 printf(" %s", vals[i]); in dump_cfg_strarray_oneline()

12