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

12

/external/clang/test/Modules/
H A Dsubmodules.cpp15 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.c21 vector float vf; local
23 vf = (vector float)(1.0); // CHECK: <float 1.000000e+{{0+}}, float 1.000000e+{{0+}}, float 1.000000e+{{0+}}, float 1.000000e+{{0+}}>
39 vector float vf; local
40 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.c14 vector float vf = { -1.5, 2.5, -3.5, 4.5 }; variable
57 vf = vec_abs(vf); // CHECK: and <4 x i32>
88 res_vf = vec_add(vf, vf); // CHECK: fadd <4 x float>
107 res_vf = vec_vaddfp(vf, vf); // CHECK: fadd <4 x float>
256 res_vf = vec_andc(vf, vf); // CHECK: xor <4 x i32>
259 res_vf = vec_andc(vbi, vf); // CHEC
[all...]
/external/clang/test/CodeGenCXX/
H A Dconstructor-for-array-members.cpp10 float vf = 1.00; variable
13 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);
/external/eigen/test/eigen2/
H A Deigen2_mixingtypes.cpp37 Vec_f vf(size,1);
45 VERIFY_RAISES_ASSERT(vf=vd);
46 VERIFY_RAISES_ASSERT(vf+=vd);
53 mcf*vf; local
56 vcf = mcf*vf;
62 VERIFY_RAISES_ASSERT(vcf = mf*vf);
64 vf.eigen2_dot(vf);
65 VERIFY_RAISES_ASSERT(vd.eigen2_dot(vf));
66 VERIFY_RAISES_ASSERT(vcf.eigen2_dot(vf)); // yea
[all...]
/external/eigen/test/
H A Dmixingtypes.cpp43 Vec_f vf = Vec_f::Random(size,1); local
44 Vec_d vd = vf.template cast<double>();
56 VERIFY_RAISES_ASSERT(vf=vd);
57 VERIFY_RAISES_ASSERT(vf+=vd);
63 VERIFY_IS_APPROX(vf * scf , vf.template cast<complex<float> >() * scf);
67 vf.dot(vf);
69 VERIFY_RAISES_ASSERT(vd.dot(vf));
71 VERIFY_IS_APPROX(vcf.dot(vf), vc
[all...]
/external/libvpx/libvpx/vp8/common/
H A Dvariance.h102 vp8_variance_fn_t vf; member in struct:variance_vtable
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_variance.h86 vp9_variance_fn_t vf; member in struct:vp9_variance_vtable
/external/pixman/test/
H A Dmatrix-test.c89 pixman_vector_f128_t vf, result_f; local
141 vf.v[j] = pixman_fixed_to_float128 (vi.v[j]);
148 if (pixman_transform_point_f128 (&tf, &vf, &result_f))
/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.cpp227 VF vf; use(vf); local
290 VF* vf = new VF(); local
291 delete vf;
328 simple_ptr<VF> vf(new VF());
329 use(*vf);
/external/eigen/bench/
H A Dbench_norm.cpp219 for (int i=0; i<iters; ++i) NRM(vf); \
239 VectorXf vf = VectorXf::Ones(s) * yf; local
243 std::cout << "sqsumNorm\t" << sqsumNorm(vf) << "\t" << sqsumNorm(vd) << "\n";
244 std::cout << "hypotNorm\t" << hypotNorm(vf) << "\t" << hypotNorm(vd) << "\n";
245 std::cout << "blueNorm\t" << blueNorm(vf) << "\t" << blueNorm(vd) << "\n";
246 std::cout << "pblueNorm\t" << pblueNorm(vf) << "\t" << pblueNorm(vd) << "\n";
247 std::cout << "lapackNorm\t" << lapackNorm(vf) << "\t" << lapackNorm(vd) << "\n";
248 std::cout << "twopassNorm\t" << twopassNorm(vf) << "\t" << twopassNorm(vd) << "\n";
249 std::cout << "bl2passNorm\t" << bl2passNorm(vf) << "\t" << bl2passNorm(vd) << "\n";
254 VectorXf vf(
319 VectorXf vf = VectorXf::Random(1024*1024*32) * y; local
334 VectorXf vf = VectorXf::Random(512) * y; local
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/srp/
H A Dsrp_vfy.c529 char *vf; local
576 if (((vf = OPENSSL_malloc(BN_num_bytes(v)*2)) == NULL))
578 t_tob64(vf, tmp, BN_num_bytes(v));
580 *verifier = vf;
587 OPENSSL_free(vf);
/external/chromium_org/third_party/smhasher/src/
H A DCity.cpp185 uint64 vf = a + z; local
196 uint64 r = ShiftMix((vf + ws) * k2 + (wf + vs) * k0);
/external/openssl/crypto/srp/
H A Dsrp_vfy.c529 char *vf; local
576 if (((vf = OPENSSL_malloc(BN_num_bytes(v)*2)) == NULL))
578 t_tob64(vf, tmp, BN_num_bytes(v));
580 *verifier = vf;
587 OPENSSL_free(vf);
/external/valgrind/main/VEX/priv/
H A Dguest_arm_helpers.c362 UInt vf = (cc_dep1 >> ARMG_CC_SHIFT_V) & 1; local
363 return vf;
370 UInt vf = ((res ^ argL) & (res ^ argR)) >> 31; local
371 return vf;
378 UInt vf = ((argL ^ argR) & (argL ^ res)) >> 31; local
379 return vf;
388 UInt vf = ((res ^ argL) & (res ^ argR)) >> 31; local
389 return vf;
398 UInt vf = ((argL ^ argR) & (argL ^ res)) >> 31; local
399 return vf;
405 UInt vf = oldV; local
412 UInt vf = oldV; local
419 UInt vf = oldV; local
475 UInt nf, zf, vf, cf, inv; local
[all...]
/external/iproute2/ip/
H A Diplink.c72 fprintf(stderr, " [ vf NUM [ mac LLADDR ]\n");
194 int iplink_parse_vf(int vf, int *argcp, char ***argvp, argument
208 ivm.vf = vf;
219 ivv.vf = vf;
240 ivt.vf = vf;
252 ivs.vf = vf;
281 int vf = -1; local
[all...]
H A Dipaddress.c226 struct rtattr *vf[IFLA_VF_MAX+1]; local
235 parse_rtattr_nested(vf, IFLA_VF_MAX, vfinfo);
237 vf_mac = RTA_DATA(vf[IFLA_VF_MAC]);
238 vf_vlan = RTA_DATA(vf[IFLA_VF_VLAN]);
239 vf_tx_rate = RTA_DATA(vf[IFLA_VF_TX_RATE]);
241 /* Check if the spoof checking vf info type is supported by
244 tmp = (struct rtattr *)((char *)vf[IFLA_VF_TX_RATE] +
245 vf[IFLA_VF_TX_RATE]->rta_len);
250 vf_spoofchk = RTA_DATA(vf[IFLA_VF_SPOOFCHK]);
252 fprintf(fp, "\n vf
[all...]
/external/llvm/include/llvm/ADT/
H A DHashing.h233 uint64_t vf = a + z; local
244 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...]
/external/chromium_org/third_party/mesa/src/src/gallium/tests/trivial/
H A Dcompute.c1132 float vf[4]; local
1136 init0f(&vf[j], s, 4 * x + j, y);
1137 util_format_write_4f(surface_fmts[i], vf, 0,
/external/mesa3d/src/gallium/tests/trivial/
H A Dcompute.c1132 float vf[4]; local
1136 init0f(&vf[j], s, 4 * x + j, y);
1137 util_format_write_4f(surface_fmts[i], vf, 0,
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_video.c268 SDL_PixelFormat *vf = SDL_VideoSurface->format;
269 SDL_DitherColors(vf->palette->colors, vf->BitsPerPixel);
271 0, vf->palette->ncolors, vf->palette->colors);
718 SDL_PixelFormat *vf = mode->format; local
719 SDL_DitherColors(vf->palette->colors, vf->BitsPerPixel);
720 video->SetColors(this, 0, vf->palette->ncolors,
721 vf
955 SDL_PixelFormat *vf; local
[all...]

Completed in 760 milliseconds

12