Searched defs:vf (Results 1 - 25 of 53) sorted by relevance

123

/external/clang/test/Modules/
H A Dsubmodules.cpp16 vector<float> vf; variable
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_packed_float.c46 unsigned vf = (fu.s.sign << 7) | (exponent << 4) | mantissa; local
49 if ((vf & 0x7f) == 0)
56 return vf;
60 brw_vf_to_float(unsigned char vf) argument
65 if (vf == 0x00 || vf == 0x80) {
66 fu.u = vf << 24;
70 fu.s.sign = vf >> 7;
71 fu.s.exponent = ((vf & 0x70) >> 4) + (127 - 3);
72 fu.s.mantissa = (vf
[all...]
/external/clang/test/CodeGen/
H A Daltivec.c20 vector float vf; local
22 vf = (vector float)(1.0); // CHECK: <float 1.000000e+{{0+}}, float 1.000000e+{{0+}}, float 1.000000e+{{0+}}, float 1.000000e+{{0+}}>
38 vector float vf; local
39 vf++; // CHECK: fadd <4 x float> {{.*}} <float 1.000000e+{{0+}}, float 1.000000e+{{0+}}, float 1.000000e+{{0+}}, float 1.000000e+{{0+}}>
H A Dbuiltins-ppc-altivec.c25 vector float vf = { -1.5, 2.5, -3.5, 4.5 }; variable
79 vf = vec_abs(vf);
83 // CHECK: store <4 x float> %{{.*}}, <4 x float>* @vf
87 // CHECK-LE: store <4 x float> %{{.*}}, <4 x float>* @vf
88 // CHECK-NOALTIVEC: error: use of undeclared identifier 'vf'
89 // CHECK-NOALTIVEC: vf = vec_abs(vf)
183 res_vf = vec_add(vf, vf);
[all...]
H A Dbuiltins-ppc-vsx.c12 vector float vf = { -1.5, 2.5, -3.5, 4.5 }; variable
68 res_vf = vec_abs(vf);
143 res_vf = vec_ceil(vf);
151 res_vbi = vec_cmpeq(vf, vf);
159 res_vbi = vec_cmpge(vf, vf);
167 res_vbi = vec_cmpgt(vf, vf);
175 res_vbi = vec_cmple(vf, v
[all...]
/external/clang/test/CodeGenCXX/
H A Dconstructor-for-array-members.cpp9 float vf = 1.00; variable
12 S() : iS(i++), f1(vf++) {printf("S::S()\n");}
/external/clang/test/Sema/
H A Daltivec-init.c21 vector float vf; local
22 vf = (vector float)(1.0);
H A Dext_vector_casts.c101 float2 vf = f; local
117 vf = 1 + vf;
118 vf = l + vf;
119 vf = 2.0 + vf;
120 vf = d + vf; // expected-warning {{implicit conversion loses floating-point precision}}
121 vf
[all...]
/external/compiler-rt/test/cfi/cross-dso/
H A Dstats.cpp9 virtual void vf() {} function in struct:A
20 a->vf();
42 a->vf();
/external/compiler-rt/test/cfi/
H A Dstats.cpp11 virtual void vf() {} function in struct:A
17 a->vf();
37 a->vf();
/external/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_formats.c123 const struct vc4_format *vf = get_format(f); local
125 if (!vf)
128 return vf->rt_type != RT_NO;
134 const struct vc4_format *vf = get_format(f); local
136 if (!vf)
139 return vf->rt_type == RT_RGB565;
145 const struct vc4_format *vf = get_format(f); local
147 return vf != NULL;
153 const struct vc4_format *vf = get_format(f); local
155 if (!vf)
164 const struct vc4_format *vf = get_format(f); local
[all...]
/external/libvpx/libvpx/vpx_dsp/
H A Dvariance.h59 vpx_variance_fn_t vf; member in struct:variance_vtable
74 vpx_variance_fn_t vf; member in struct:vp9_variance_vtable
/external/eigen/test/
H A Dmixingtypes.cpp57 Vec_f vf = Vec_f::Random(size,1); local
58 Vec_d vd = vf.template cast<double>();
79 VERIFY_RAISES_ASSERT(vf=vd);
80 VERIFY_RAISES_ASSERT(vf+=vd);
86 VERIFY_MIX_SCALAR(vf * scf , vf.template cast<complex<float> >() * scf);
96 VERIFY_MIX_SCALAR(vf / scf , vf.template cast<complex<float> >() / scf);
97 VERIFY_MIX_SCALAR(vf.array() / scf, vf
[all...]
/external/mesa3d/src/gallium/drivers/ilo/
H A Dilo_blitter.h64 struct ilo_state_vf vf; member in struct:ilo_blitter
/external/wpa_supplicant_8/hostapd/src/pae/
H A Dieee802_1x_secy_ops.c21 enum validate_frames vf)
23 kay->vf = vf;
235 return ops->create_receive_sc(ops->ctx, rxsc, kay->vf, kay->co);
20 secy_cp_control_validate_frames(struct ieee802_1x_kay *kay, enum validate_frames vf) argument
/external/wpa_supplicant_8/src/pae/
H A Dieee802_1x_secy_ops.c21 enum validate_frames vf)
23 kay->vf = vf;
235 return ops->create_receive_sc(ops->ctx, rxsc, kay->vf, kay->co);
20 secy_cp_control_validate_frames(struct ieee802_1x_kay *kay, enum validate_frames vf) argument
/external/wpa_supplicant_8/wpa_supplicant/src/pae/
H A Dieee802_1x_secy_ops.c21 enum validate_frames vf)
23 kay->vf = vf;
235 return ops->create_receive_sc(ops->ctx, rxsc, kay->vf, kay->co);
20 secy_cp_control_validate_frames(struct ieee802_1x_kay *kay, enum validate_frames vf) argument
/external/clang/test/SemaCXX/
H A Daltivec.cpp16 vector float vf; local
31 int res12[vec_step(vf) == 4 ? 1 : -1];
62 vector float vf; local
63 vf++;
H A Ddestructor.cpp246 VF vf; use(vf); local
310 VF* vf = new VF(); local
311 delete vf;
315 void nowarn0_explicit_dtor(F* f, VB* vb, VD* vd, VF* vf) { argument
320 vf->~VF();
367 simple_ptr<VF> vf(new VF());
368 use(*vf);
/external/eigen/bench/
H A Dbench_norm.cpp230 for (int i=0; i<iters; ++i) { af += NRM(vf); } \
250 VectorXf vf = VectorXf::Ones(s) * yf; local
254 std::cout << "sqsumNorm\t" << sqsumNorm(vf) << "\t" << sqsumNorm(vd) << "\n";
255 std::cout << "hypotNorm\t" << hypotNorm(vf) << "\t" << hypotNorm(vd) << "\n";
256 std::cout << "blueNorm\t" << blueNorm(vf) << "\t" << blueNorm(vd) << "\n";
257 std::cout << "pblueNorm\t" << pblueNorm(vf) << "\t" << pblueNorm(vd) << "\n";
258 std::cout << "lapackNorm\t" << lapackNorm(vf) << "\t" << lapackNorm(vd) << "\n";
259 std::cout << "twopassNorm\t" << twopassNorm(vf) << "\t" << twopassNorm(vd) << "\n";
260 std::cout << "bl2passNorm\t" << bl2passNorm(vf) << "\t" << bl2passNorm(vd) << "\n";
265 VectorXf vf(
332 VectorXf vf = VectorXf::Random(s1) * y; local
348 VectorXf vf = VectorXf::Random(512) * y; local
[all...]
/external/mesa3d/src/gallium/drivers/ilo/core/
H A Dilo_state_vf.h166 const struct ilo_state_vf *vf = NULL; local
167 return (sizeof(vf->user_ve[0]) +
168 sizeof(vf->user_instancing[0])) * element_count;
176 ilo_state_vf_init(struct ilo_state_vf *vf,
181 ilo_state_vf_init_for_rectlist(struct ilo_state_vf *vf,
188 ilo_state_vf_set_params(struct ilo_state_vf *vf,
196 ilo_state_vf_get_attr_count(const struct ilo_state_vf *vf) argument
198 return vf->internal_ve_count + vf->user_ve_count;
202 ilo_state_vf_full_delta(const struct ilo_state_vf *vf,
[all...]
H A Dilo_builder_3d_top.h193 const struct ilo_state_vf *vf)
204 vf->cut[0];
205 dw[1] = vf->cut[1];
238 const struct ilo_state_vf *vf,
252 if (attr >= vf->internal_ve_count) {
253 attr -= vf->internal_ve_count;
255 dw[1] |= vf->user_instancing[attr][0];
256 dw[2] |= vf->user_instancing[attr][1];
262 const struct ilo_state_vf *vf)
273 dw[1] = vf
192 gen75_3DSTATE_VF(struct ilo_builder *builder, const struct ilo_state_vf *vf) argument
237 gen8_3DSTATE_VF_INSTANCING(struct ilo_builder *builder, const struct ilo_state_vf *vf, uint32_t attr) argument
261 gen8_3DSTATE_VF_SGVS(struct ilo_builder *builder, const struct ilo_state_vf *vf) argument
277 gen6_3DSTATE_VERTEX_BUFFERS(struct ilo_builder *builder, const struct ilo_state_vf *vf, const struct ilo_state_vertex_buffer *vb, unsigned vb_count) argument
384 gen6_3DSTATE_VERTEX_ELEMENTS(struct ilo_builder *builder, const struct ilo_state_vf *vf) argument
413 gen6_3DSTATE_INDEX_BUFFER(struct ilo_builder *builder, const struct ilo_state_vf *vf, const struct ilo_state_index_buffer *ib) argument
449 gen8_3DSTATE_INDEX_BUFFER(struct ilo_builder *builder, const struct ilo_state_vf *vf, const struct ilo_state_index_buffer *ib) argument
[all...]
H A Dilo_state_vf.c131 vf_set_gen6_3DSTATE_VERTEX_ELEMENTS(struct ilo_state_vf *vf, argument
172 STATIC_ASSERT(ARRAY_SIZE(vf->user_ve[i]) >= 2);
173 vf->user_ve[i][0] = dw0;
174 vf->user_ve[i][1] = dw1;
177 vf->user_ve_count = i;
179 vf->edge_flag_supported = (i && get_gen6_edge_flag_format(dev,
181 if (vf->edge_flag_supported) {
185 vf->last_user_ve[0][0] = dw0;
186 vf->last_user_ve[0][1] = dw1;
207 vf
215 vf_set_gen6_vertex_buffer_state(struct ilo_state_vf *vf, const struct ilo_dev *dev, const struct ilo_state_vf_info *info) argument
254 vf_set_gen8_3DSTATE_VF_INSTANCING(struct ilo_state_vf *vf, const struct ilo_dev *dev, const struct ilo_state_vf_info *info) argument
300 vf_params_set_gen6_internal_ve(struct ilo_state_vf *vf, const struct ilo_dev *dev, const struct ilo_state_vf_params_info *params, uint8_t user_ve_count) argument
359 vf_params_set_gen8_3DSTATE_VF_SGVS(struct ilo_state_vf *vf, const struct ilo_dev *dev, const struct ilo_state_vf_params_info *params) argument
432 vf_params_set_gen6_3dstate_index_buffer(struct ilo_state_vf *vf, const struct ilo_dev *dev, const struct ilo_state_vf_params_info *params) argument
456 vf_params_set_gen75_3DSTATE_VF(struct ilo_state_vf *vf, const struct ilo_dev *dev, const struct ilo_state_vf_params_info *params) argument
770 ilo_state_vf_init(struct ilo_state_vf *vf, const struct ilo_dev *dev, const struct ilo_state_vf_info *info) argument
800 ilo_state_vf_init_for_rectlist(struct ilo_state_vf *vf, const struct ilo_dev *dev, void *data, size_t data_size, const struct ilo_state_vf_element_info *elements, uint8_t element_count) argument
830 ilo_state_vf_set_params(struct ilo_state_vf *vf, const struct ilo_dev *dev, const struct ilo_state_vf_params_info *params) argument
888 ilo_state_vf_full_delta(const struct ilo_state_vf *vf, const struct ilo_dev *dev, struct ilo_state_vf_delta *delta) argument
908 ilo_state_vf_get_delta(const struct ilo_state_vf *vf, const struct ilo_dev *dev, const struct ilo_state_vf *old, struct ilo_state_vf_delta *delta) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dwpas_kay.c110 enum validate_frames vf,
113 return wpa_drv_create_receive_sc(wpa_s, sc, conf_offset_val(co), vf);
109 wpas_create_receive_sc(void *wpa_s, struct receive_sc *sc, enum validate_frames vf, enum confidentiality_offset co) argument
/external/icu/icu4c/source/i18n/
H A Ddecimfmtimpl.cpp211 DecimalFormatImpl::prepareValueFormatter(ValueFormatter &vf) const {
213 vf.prepareScientificFormatting(
215 return vf;
217 vf.prepareFixedDecimalFormatting(
219 return vf;
329 ValueFormatter vf; local
332 prepareValueFormatter(vf),
494 ValueFormatter vf; local
497 prepareValueFormatter(vf),
510 ValueFormatter vf; local
622 ValueFormatter vf; local
[all...]

Completed in 612 milliseconds

123