HomeSort by: relevance | last modified time | path
    Searched defs:vf (Results 1 - 25 of 54) sorted by relevancy

1 2 3

  /src/external/lgpl3/gmp/dist/mpf/
cmp_z.c 36 mpf_t vf; variable
39 SIZ (vf) = size = SIZ (v); variable
40 EXP (vf) = size = ABS (size); variable
41 /* PREC (vf) = size; */
42 PTR (vf) = PTR (v); variable
44 return mpf_cmp (u, vf);
div_ui.c 51 mpf_t vf; local
53 SIZ(vf) = 2;
54 EXP(vf) = 2;
55 PTR(vf) = vl;
58 mpf_div (r, u, vf);
mul_ui.c 110 mpf_t vf; local
114 PTR(vf) = vp;
115 SIZ(vf) = 2;
116 ASSERT_CODE (PREC(vf) = 2);
117 EXP(vf) = 2;
118 mpf_mul (r, u, vf);
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
vdev_file.c 54 vdev_file_t *vf; local
73 vf = vd->vdev_tsd;
74 vp = vf->vf_vnode;
78 vf = vd->vdev_tsd = kmem_zalloc(sizeof (vdev_file_t), KM_SLEEP);
97 vf->vf_vnode = vp;
145 vdev_file_t *vf = vd->vdev_tsd; local
147 if (vd->vdev_reopening || vf == NULL)
150 if (vf->vf_vnode != NULL) {
151 (void) VOP_CLOSE(vf->vf_vnode, spa_mode(vd->vdev_spa), 1, 0,
156 kmem_free(vf, sizeof (vdev_file_t))
164 vdev_file_t *vf; local
    [all...]
  /src/external/lgpl3/mpfr/dist/src/
agm.c 34 mpfr_t u, v, uf, vf, sc1, sc2; local
128 MPFR_TMP_INIT (vfp, vf, p, s);
228 mpfr_add (vf, u, v, MPFR_RNDN); /* No overflow? */
229 mpfr_div_2ui (vf, vf, 1, MPFR_RNDN);
238 /* vf = V(k) */
245 mpfr_div (w, w, vf, MPFR_RNDN); /* 1/4*e^2/V(k) */
249 mpfr_sub (v, vf, w, MPFR_RNDN);
250 err = MPFR_GET_EXP (vf) - MPFR_GET_EXP (v); /* 0 or 1 */
279 mpfr_swap (v, vf);
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
graphds.cc 73 struct vertex *vf = &g->vertices[f], *vt = &g->vertices[t]; local
81 e->succ_next = vf->succ;
82 vf->succ = e;
tree-vect-data-refs.cc 136 VF. If the smallest datatype in the loop is present only as the rhs of a
358 maximum VF set to safelen. However, if the user has
370 of limiting VF or checking for an alias at runtime.
372 the VF unnecessarily when the bases are in fact independent.
374 Note that the alias checks will be removed if the VF ends up
610 "dependence distance >= VF.\n");
733 bounded by VF so accesses are within range. We only need to check
897 using VF of original loop. */
1389 poly_uint64 vf = LOOP_VINFO_VECT_FACTOR (loop_vinfo); local
1391 = multiple_p (DR_STEP_ALIGNMENT (dr_info->dr) * vf, vect_align_c)
    [all...]
tree-vect-loop-manip.cc 396 STEP = MIN_EXPR <ivtmp_34, VF>;
398 First length (MIN (X, VF/N)):
399 loop_len_15 = MIN_EXPR <STEP, VF/N>;
403 loop_len_16 = MIN (tmp, VF/N);
407 loop_len_17 = MIN (tmp2, VF/N);
427 /* First iteration: MIN (X, VF/N) capped to the range [0, VF/N]. */
434 /* Last iteration: Remain capped to the range [0, VF/N]. */
441 /* (MIN (remain, VF*I/N)) capped to the range [0, VF/N]. *
515 poly_uint64 vf = LOOP_VINFO_VECT_FACTOR (loop_vinfo); local
961 tree vf = build_int_cst (ftype, LOOP_VINFO_VECT_FACTOR (loop_vinfo)); local
992 poly_uint64 vf = LOOP_VINFO_VECT_FACTOR (loop_vinfo); local
    [all...]
omp-general.cc 993 poly_uint64 vf = 0; local
998 vf = ordered_max (vf, GET_MODE_NUNITS (modes[i]));
999 return vf;
  /src/external/gpl3/gcc.old/dist/gcc/
graphds.cc 73 struct vertex *vf = &g->vertices[f], *vt = &g->vertices[t]; local
81 e->succ_next = vf->succ;
82 vf->succ = e;
tree-vect-data-refs.cc 108 VF. If the smallest datatype in the loop is present only as the rhs of a
309 maximum VF set to safelen. However, if the user has
321 of limiting VF or checking for an alias at runtime.
323 the VF unnecessarily when the bases are in fact independent.
325 Note that the alias checks will be removed if the VF ends up
561 "dependence distance >= VF.\n");
606 using VF of original loop. */
1093 poly_uint64 vf = LOOP_VINFO_VECT_FACTOR (loop_vinfo); local
1095 = multiple_p (DR_STEP_ALIGNMENT (dr_info->dr) * vf, vect_align_c);
1343 the prolog loop ({VF - misalignment}), is a multiple of th
    [all...]
  /src/sys/dev/pci/ixgbe/
if_sriov.c 95 /* Support functions for SR-IOV/VF management */
97 ixgbe_send_vf_msg(struct ixgbe_hw *hw, struct ixgbe_vf *vf, u32 msg)
99 if (vf->flags & IXGBE_VF_CTS)
102 hw->mbx.ops[vf->pool].write(hw, &msg, 1, vf->pool);
106 ixgbe_send_vf_ack(struct ixgbe_softc *sc, struct ixgbe_vf *vf, u32 msg)
109 ixgbe_send_vf_msg(&sc->hw, vf, msg | IXGBE_VT_MSGTYPE_SUCCESS);
113 ixgbe_send_vf_nack(struct ixgbe_softc *sc, struct ixgbe_vf *vf, u32 msg)
116 ixgbe_send_vf_msg(&sc->hw, vf, msg | IXGBE_VT_MSGTYPE_FAILURE);
120 ixgbe_process_vf_ack(struct ixgbe_softc *sc, struct ixgbe_vf *vf)
207 struct ixgbe_vf *vf; local
649 struct ixgbe_vf *vf; local
871 struct ixgbe_vf *vf; local
886 struct ixgbe_vf *vf; local
    [all...]
ixgbe_x550.c 1246 * @vf: Virtual Function pool - VF Pool to set for Ethertype anti-spoofing
1250 bool enable, int vf)
1252 int vf_target_reg = vf >> 3;
1253 int vf_target_shift = vf % 8 + IXGBE_SPOOF_ETHERTYPEAS_SHIFT;
1576 * @vf: vf index
1578 * Restore VF that was disabled during malicious driver detection event
1580 void ixgbe_restore_mdd_vf_X550(struct ixgbe_hw *hw, u32 vf)
1586 /* Map VF to queues *
1623 u32 i, j, reg, q, shift, vf, idx; local
    [all...]
  /src/sys/dev/usb/
auvitek_video.c 443 struct video_frequency vf; local
482 vf.tuner_index = AUVITEK_TUNER_DEFAULT;
483 vf.frequency = sc->sc_curfreq;
484 auvitek_set_frequency(sc, &vf);
491 auvitek_get_frequency(void *opaque, struct video_frequency *vf)
499 vf->tuner_index = AUVITEK_TUNER_DEFAULT;
500 vf->frequency = sc->sc_curfreq;
506 auvitek_set_frequency(void *opaque, struct video_frequency *vf)
515 if (vf->tuner_index != AUVITEK_TUNER_DEFAULT)
525 params.frequency = vf->frequency
    [all...]
uhci.c 3260 struct uhci_vframe *vf = &sc->sc_vframes[sqh->pos]; local
3266 eqh = vf->eqh;
3277 vf->eqh = sqh;
3278 vf->bandwidth++;
3285 struct uhci_vframe *vf = &sc->sc_vframes[sqh->pos]; local
3305 pqh = uhci_find_prev_qh(vf->hqh, sqh);
3315 if (vf->eqh == sqh)
3316 vf->eqh = pqh;
3317 vf->bandwidth--;
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_amdkfd.c 71 bool vf = amdgpu_sriov_vf(adev); local
74 adev->pdev, adev->asic_type, vf);
705 unsigned int asic_type, bool vf)
  /src/crypto/external/apache2/openssl/dist/crypto/srp/
srp_vfy.c 616 char *result = NULL, *vf = NULL; local
670 if (((vf = OPENSSL_malloc(vfsize)) == NULL))
672 if (!t_tob64(vf, tmp, BN_num_bytes(v)))
688 *verifier = vf;
689 vf = NULL;
695 OPENSSL_clear_free(vf, vfsize);
  /src/crypto/external/bsd/openssl/dist/crypto/srp/
srp_vfy.c 615 char *result = NULL, *vf = NULL; local
670 if (((vf = OPENSSL_malloc(vfsize)) == NULL))
672 if (!t_tob64(vf, tmp, BN_num_bytes(v)))
688 *verifier = vf;
689 vf = NULL;
695 OPENSSL_clear_free(vf, vfsize);
  /src/crypto/external/bsd/openssl.old/dist/crypto/srp/
srp_vfy.c 585 char *result = NULL, *vf = NULL; local
639 if (((vf = OPENSSL_malloc(vfsize)) == NULL))
641 if (!t_tob64(vf, tmp, BN_num_bytes(v)))
657 *verifier = vf;
658 vf = NULL;
664 OPENSSL_clear_free(vf, vfsize);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
Hashing.h 230 uint64_t vf = a + z; local
241 uint64_t r = shift_mix((vf + ws) * k2 + (wf + vs) * k0);
  /src/external/bsd/wpa/dist/src/drivers/
driver_macsec_qca.c 683 fal_rx_sc_validate_frame_e vf; local
710 vf = FAL_RX_SC_VALIDATE_FRAME_STRICT;
712 vf = FAL_RX_SC_VALIDATE_FRAME_CHECK;
714 vf = FAL_RX_SC_VALIDATE_FRAME_DISABLED;
719 vf);
  /src/sys/dev/ic/
vga.c 593 const struct vga_funcs *vf)
649 vc->vc_funcs = vf;
784 const struct vga_funcs *vf = vc->vc_funcs; local
841 if (vf->vf_ioctl == NULL)
844 return ((*vf->vf_ioctl)(v, cmd, data, flag, l));
851 const struct vga_funcs *vf = vc->vc_funcs; local
856 if (vf->vf_mmap == NULL)
859 return ((*vf->vf_mmap)(v, offset, prot));
vga_raster.c 382 struct vga_raster_font *vf; local
415 vf = &vga_console_fontset_ascii;
429 vf->font = wf;
432 vf->font = &builtinfont;
434 LIST_INSERT_HEAD(&vc->vc_fontlist, vf, next);
524 const struct vga_funcs *vf)
541 vc->vc_funcs = vf;
627 const struct vga_funcs *vf = vc->vc_funcs; local
675 if (vf->vf_ioctl == NULL) {
682 return ((*vf->vf_ioctl)(v, cmd, data, flag, l))
689 const struct vga_funcs *vf = vc->vc_funcs; local
848 struct vga_raster_font *vf; local
    [all...]
  /src/external/bsd/wpa/dist/src/pae/
ieee802_1x_kay.h 155 enum validate_frames vf,
235 enum validate_frames vf; member in struct:ieee802_1x_kay
  /src/external/bsd/file/dist/src/
softmagic.c 612 float vf; local
755 vf = p->f;
760 (void)snprintf(buf, sizeof(buf), "%g", vf);
765 if (file_printf(ms, F(ms, desc, "%g"), vf) == -1)

Completed in 268 milliseconds

1 2 3