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

12

/external/clang/test/Modules/
H A Dsubmodules.cpp16 vector<float> vf; variable
/external/libvorbis/examples/
H A Dvorbisfile_example.c36 OggVorbis_File vf; local
47 if(ov_open_callbacks(stdin, &vf, NULL, 0, OV_CALLBACKS_NOCLOSE) < 0) {
55 char **ptr=ov_comment(&vf,-1)->user_comments;
56 vorbis_info *vi=ov_info(&vf,-1);
63 (long)ov_pcm_total(&vf,-1));
64 fprintf(stderr,"Encoded by: %s\n\n",ov_comment(&vf,-1)->vendor);
68 long ret=ov_read(&vf,pcmout,sizeof(pcmout),0,2,1,&current_section);
88 ov_clear(&vf);
/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/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/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/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/valgrind/VEX/priv/
H A Dguest_arm64_helpers.c468 ULong vf = (cc_dep1 >> ARM64G_CC_SHIFT_V) & 1; local
469 return vf;
476 ULong vf = (ULong)(((res ^ argL) & (res ^ argR)) >> 31); local
477 return vf;
484 ULong vf = ((res ^ argL) & (res ^ argR)) >> 63; local
485 return vf;
492 ULong vf = (ULong)(((argL ^ argR) & (argL ^ res)) >> 31); local
493 return vf;
500 ULong vf = (((argL ^ argR) & (argL ^ res))) >> 63; local
501 return vf;
510 ULong vf = (ULong)(((res ^ argL) & (res ^ argR)) >> 31); local
520 ULong vf = ((res ^ argL) & (res ^ argR)) >> 63; local
530 ULong vf = (ULong)(((argL ^ argR) & (argL ^ res)) >> 31); local
540 ULong vf = ((argL ^ argR) & (argL ^ res)) >> 63; local
617 ULong nf, zf, vf, cf; local
[all...]
H A Dguest_arm_helpers.c363 UInt vf = (cc_dep1 >> ARMG_CC_SHIFT_V) & 1; local
364 return vf;
371 UInt vf = ((res ^ argL) & (res ^ argR)) >> 31; local
372 return vf;
379 UInt vf = ((argL ^ argR) & (argL ^ res)) >> 31; local
380 return vf;
389 UInt vf = ((res ^ argL) & (res ^ argR)) >> 31; local
390 return vf;
399 UInt vf = ((argL ^ argR) & (argL ^ res)) >> 31; local
400 return vf;
406 UInt vf = oldV; local
413 UInt vf = oldV; local
420 UInt vf = oldV; local
476 UInt nf, zf, vf, cf, inv; local
[all...]
/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...]
/external/iproute2/ip/
H A Diplink.c77 fprintf(stderr, " [ vf NUM [ mac LLADDR ]\n");
240 static int iplink_parse_vf(int vf, int *argcp, char ***argvp, argument
279 ivm.vf = vf;
291 ivv.vf = vf;
312 ivt.vf = vf;
324 tivt.vf = vf;
413 int vf = -1; local
[all...]
/external/llvm/include/llvm/ADT/
H A DHashing.h227 uint64_t vf = a + z; local
238 uint64_t r = shift_mix((vf + ws) * k2 + (wf + vs) * k0);
/external/tremolo/Tremolo/
H A Dvorbisfile.c91 static long _get_data(OggVorbis_File *vf){ argument
93 if(vf->datasource){
94 unsigned char *buffer=ogg_sync_bufferin(vf->oy,CHUNKSIZE);
95 long bytes=(vf->callbacks.read_func)(buffer,1,CHUNKSIZE,vf->datasource);
96 if(bytes>0)ogg_sync_wrote(vf->oy,bytes);
104 static void _seek_helper(OggVorbis_File *vf,ogg_int64_t offset){ argument
105 if(vf->datasource){
106 (vf->callbacks.seek_func)(vf
130 _get_next_page(OggVorbis_File *vf,ogg_page *og, ogg_int64_t boundary) argument
169 _get_prev_page(OggVorbis_File *vf,ogg_page *og) argument
205 _bisect_forward_serialno(OggVorbis_File *vf, ogg_int64_t begin, ogg_int64_t searched, ogg_int64_t end, ogg_uint32_t currentno, long m) argument
261 _decode_clear(OggVorbis_File *vf) argument
281 _fetch_headers(OggVorbis_File *vf, vorbis_info *vi, vorbis_comment *vc, ogg_uint32_t *serialno, ogg_page *og_ptr) argument
348 _set_link_number(OggVorbis_File *vf,int link) argument
360 _set_link_number_preserve_pos(OggVorbis_File *vf,int link) argument
379 _prefetch_all_offsets(OggVorbis_File *vf, ogg_int64_t dataoffset) argument
479 _make_decode_ready(OggVorbis_File *vf) argument
503 _open_seekable2(OggVorbis_File *vf) argument
553 _fetch_and_process_packet(OggVorbis_File *vf, int readp, int spanp) argument
720 _ov_open1(void *f,OggVorbis_File *vf,char *initial, long ibytes, ov_callbacks callbacks) argument
764 _ov_open2(OggVorbis_File *vf) argument
780 ov_clear(OggVorbis_File *vf) argument
810 ov_open_callbacks(void *f,OggVorbis_File *vf,char *initial,long ibytes, ov_callbacks callbacks) argument
817 ov_open(FILE *f,OggVorbis_File *vf,char *initial,long ibytes) argument
833 ov_test_callbacks(void *f,OggVorbis_File *vf,char *initial,long ibytes, ov_callbacks callbacks) argument
839 ov_test(FILE *f,OggVorbis_File *vf,char *initial,long ibytes) argument
850 ov_test_open(OggVorbis_File *vf) argument
856 ov_streams(OggVorbis_File *vf) argument
861 ov_seekable(OggVorbis_File *vf) argument
874 ov_bitrate(OggVorbis_File *vf,int i) argument
914 ov_bitrate_instant(OggVorbis_File *vf) argument
925 ov_serialnumber(OggVorbis_File *vf,int i) argument
940 ov_raw_total(OggVorbis_File *vf,int i) argument
959 ov_pcm_total(OggVorbis_File *vf,int i) argument
978 ov_time_total(OggVorbis_File *vf,int i) argument
999 ov_raw_seek(OggVorbis_File *vf,ogg_int64_t pos) argument
1153 ov_pcm_seek_page(OggVorbis_File *vf,ogg_int64_t pos) argument
1329 ov_pcm_seek(OggVorbis_File *vf,ogg_int64_t pos) argument
1429 ov_time_seek(OggVorbis_File *vf,ogg_int64_t milliseconds) argument
1459 ov_time_seek_page(OggVorbis_File *vf,ogg_int64_t milliseconds) argument
1489 ov_raw_tell(OggVorbis_File *vf) argument
1495 ov_pcm_tell(OggVorbis_File *vf) argument
1501 ov_time_tell(OggVorbis_File *vf) argument
1530 ov_info(OggVorbis_File *vf,int link) argument
1542 ov_comment(OggVorbis_File *vf,int link) argument
1580 ov_read(OggVorbis_File *vf,void *buffer,int bytes_req,int *bitstream) argument
[all...]

Completed in 552 milliseconds

12