HomeSort by relevance Sort by last modified time
    Searched refs:vf (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/tremolo/Tremolo/
vorbisfile.c 91 static long _get_data(OggVorbis_File *vf){
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){
105 if(vf->datasource){
106 (vf->callbacks.seek_func)(vf->datasource, offset, SEEK_SET)
    [all...]
ivorbisfile.h 100 extern int ov_clear(OggVorbis_File *vf);
101 extern int ov_open(FILE *f,OggVorbis_File *vf,char *initial,long ibytes);
102 extern int ov_open_callbacks(void *datasource, OggVorbis_File *vf,
105 extern int ov_test(FILE *f,OggVorbis_File *vf,char *initial,long ibytes);
106 extern int ov_test_callbacks(void *datasource, OggVorbis_File *vf,
108 extern int ov_test_open(OggVorbis_File *vf);
110 extern long ov_bitrate(OggVorbis_File *vf,int i);
111 extern long ov_bitrate_instant(OggVorbis_File *vf);
112 extern long ov_streams(OggVorbis_File *vf);
113 extern long ov_seekable(OggVorbis_File *vf);
    [all...]
  /external/libvorbis/lib/
vorbisfile.c 67 static long _get_data(OggVorbis_File *vf){
69 if(!(vf->callbacks.read_func))return(-1);
70 if(vf->datasource){
71 char *buffer=ogg_sync_buffer(&vf->oy,READSIZE);
72 long bytes=(vf->callbacks.read_func)(buffer,1,READSIZE,vf->datasource);
73 if(bytes>0)ogg_sync_wrote(&vf->oy,bytes);
81 static int _seek_helper(OggVorbis_File *vf,ogg_int64_t offset){
82 if(vf->datasource){
83 if(!(vf->callbacks.seek_func)|
    [all...]
  /external/libvorbis/include/vorbis/
vorbisfile.h 149 extern int ov_clear(OggVorbis_File *vf);
150 extern int ov_fopen(char *path,OggVorbis_File *vf);
151 extern int ov_open(FILE *f,OggVorbis_File *vf,char *initial,long ibytes);
152 extern int ov_open_callbacks(void *datasource, OggVorbis_File *vf,
155 extern int ov_test(FILE *f,OggVorbis_File *vf,char *initial,long ibytes);
156 extern int ov_test_callbacks(void *datasource, OggVorbis_File *vf,
158 extern int ov_test_open(OggVorbis_File *vf);
160 extern long ov_bitrate(OggVorbis_File *vf,int i);
161 extern long ov_bitrate_instant(OggVorbis_File *vf);
162 extern long ov_streams(OggVorbis_File *vf);
    [all...]
  /external/clang/test/CodeGen/
altivec.c 21 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+}}>
builtins-ppc-altivec.c 14 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); // CHECK: xor <4 x i32
    [all...]
  /external/libvorbis/examples/
vorbisfile_example.c 36 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/eigen/test/eigen2/
eigen2_mixingtypes.cpp 37 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)); // yeah eventually we should allow this but i'm too lazy to make that change now in Dot.
    [all...]
  /external/eigen/test/
mixingtypes.cpp 43 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), vcf.dot(vf.template cast<complex<float> >()))
    [all...]
  /external/clang/test/Sema/
warn-bad-function-cast.c 4 void vf(void);
20 (void)vf();
altivec-init.c 21 vector float vf; local
22 vf = (vector float)(1.0);
  /external/clang/test/Modules/
submodules.cpp 15 vector<float> vf; variable
  /external/clang/test/SemaCXX/
altivec.cpp 16 vector float vf; local
31 int res12[vec_step(vf) == 4 ? 1 : -1];
62 vector float vf; local
63 vf++;
destructor.cpp 194 struct VF final: VB {};
227 VF vf; use(vf); local
290 VF* vf = new VF(); local
291 delete vf;
328 simple_ptr<VF> vf(new VF())
    [all...]
  /external/chromium_org/third_party/libxml/src/win32/
configure.js 178 var fso, cf, vf, ln, s, iDot, iSlash;
202 vf = fso.CreateTextFile(versionFile, true);
203 vf.WriteLine("# " + versionFile);
204 vf.WriteLine("# This file is generated automatically by " + WScript.ScriptName + ".");
205 vf.WriteBlankLines(1);
210 vf.WriteLine(s);
213 vf.WriteLine(s);
216 vf.WriteLine(s);
219 vf.WriteLine(s);
224 vf.WriteLine("XML_SRCDIR=" + srcDirXml)
    [all...]
  /external/eigen/bench/
bench_norm.cpp 219 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(s)
319 VectorXf vf = VectorXf::Random(1024*1024*32) * y; local
334 VectorXf vf = VectorXf::Random(512) * y; local
    [all...]
  /external/chromium_org/third_party/libxslt/win32/
configure.js 139 var fso, cf, vf, ln, s;
161 vf = fso.CreateTextFile(versionFile, true);
162 vf.WriteLine("# " + versionFile);
163 vf.WriteLine("# This file is generated automatically by " + WScript.ScriptName + ".");
164 vf.WriteBlankLines(1);
169 vf.WriteLine(s);
172 vf.WriteLine(s);
175 vf.WriteLine(s);
178 vf.WriteLine(s);
181 vf.WriteLine(s)
    [all...]
  /external/clang/test/CodeGenCXX/
constructor-for-array-members.cpp 10 float vf = 1.00; variable
13 S() : iS(i++), f1(vf++) {printf("S::S()\n");}
  /external/libvpx/libvpx/vp9/encoder/
vp9_mcomp.h 47 const vp9_variance_fn_ptr_t *vf,
56 const vp9_variance_fn_ptr_t *vf,
65 const vp9_variance_fn_ptr_t *vf,
  /bionic/libc/kernel/common/linux/
if_link.h 240 __u32 vf; member in struct:ifla_vf_mac
245 __u32 vf; member in struct:ifla_vf_vlan
251 __u32 vf; member in struct:ifla_vf_tx_rate
256 __u32 vf; member in struct:ifla_vf_info
  /external/iproute2/include/linux/
if_link.h 288 __u32 vf; member in struct:ifla_vf_mac
293 __u32 vf; member in struct:ifla_vf_vlan
299 __u32 vf; member in struct:ifla_vf_tx_rate
304 __u32 vf; member in struct:ifla_vf_spoofchk
308 /* VF ports management section
  /external/kernel-headers/original/linux/
if_link.h 258 __u32 vf; member in struct:ifla_vf_mac
263 __u32 vf; member in struct:ifla_vf_vlan
269 __u32 vf; member in struct:ifla_vf_tx_rate
274 __u32 vf; member in struct:ifla_vf_info
281 /* VF ports management section
  /hardware/ti/wpan/tools/kfmapp/
kfmapp.c 181 struct v4l2_frequency vf; local
193 res = ioctl(g_radio_fd, VIDIOC_G_FREQUENCY,&vf);
202 printf("Transmitting at Frequency %3.2f MHz\n",vf.frequency /
208 struct v4l2_frequency vf; local
220 res = ioctl(g_radio_fd, VIDIOC_G_FREQUENCY,&vf);
229 printf("Tuned to frequency %3.2f MHz \n",vf.frequency / ( 16.0 * div));
451 struct v4l2_frequency vf; local
465 vf.tuner = 0;
466 vf.frequency = rint(user_freq * 16000 + 0.5);
470 vf.frequency /= 1000
486 struct v4l2_frequency vf; local
1018 struct v4l2_frequency vf; local
    [all...]
  /external/valgrind/main/VEX/priv/
guest_arm_helpers.c 362 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/pixman/test/
matrix-test.c 89 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))

Completed in 845 milliseconds

1 2 3