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

1 2 3 4 5 6

  /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 20 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+}}>
builtins-ppc-vsx.c 12 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, vf)
    [all...]
builtins-ppc-altivec.c 25 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...]
  /external/clang/test/CodeGenCXX/
cfi-stats.cpp 14 virtual void vf();
22 a->vf();
constructor-for-array-members.cpp 9 float vf = 1.00; variable
12 S() : iS(i++), f1(vf++) {printf("S::S()\n");}
  /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);
  /prebuilts/go/darwin-x86/src/math/
arith_s390x_test.go 18 for i := 0; i < len(vf); i++ {
19 if f := CosNoVec(vf[i]); !veryclose(cos[i], f) {
20 t.Errorf("Cos(%g) = %g, want %g", vf[i], f, cos[i])
34 for i := 0; i < len(vf); i++ {
35 if f := CoshNoVec(vf[i]); !close(cosh[i], f) {
36 t.Errorf("Cosh(%g) = %g, want %g", vf[i], f, cosh[i])
49 for i := 0; i < len(vf); i++ {
50 if f := SinNoVec(vf[i]); !veryclose(sin[i], f) {
51 t.Errorf("Sin(%g) = %g, want %g", vf[i], f, sin[i])
65 for i := 0; i < len(vf); i++
    [all...]
all_test.go 13 var vf = []float64{ var
27 // at http://keisan.casio.com/. More exact input values (array vf[], above)
164 // Results for 100000 * Pi + vf[i]
544 // Results for 100000 * Pi + vf[i]
594 // Results for 100000 * Pi + vf[i]
    [all...]
  /prebuilts/go/linux-x86/src/math/
arith_s390x_test.go 18 for i := 0; i < len(vf); i++ {
19 if f := CosNoVec(vf[i]); !veryclose(cos[i], f) {
20 t.Errorf("Cos(%g) = %g, want %g", vf[i], f, cos[i])
34 for i := 0; i < len(vf); i++ {
35 if f := CoshNoVec(vf[i]); !close(cosh[i], f) {
36 t.Errorf("Cosh(%g) = %g, want %g", vf[i], f, cosh[i])
49 for i := 0; i < len(vf); i++ {
50 if f := SinNoVec(vf[i]); !veryclose(sin[i], f) {
51 t.Errorf("Sin(%g) = %g, want %g", vf[i], f, sin[i])
65 for i := 0; i < len(vf); i++
    [all...]
all_test.go 13 var vf = []float64{ var
27 // at http://keisan.casio.com/. More exact input values (array vf[], above)
164 // Results for 100000 * Pi + vf[i]
544 // Results for 100000 * Pi + vf[i]
594 // Results for 100000 * Pi + vf[i]
    [all...]
  /external/clang/test/Sema/
ext_vector_casts.c 101 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 = vf + 0xffffffff
    [all...]
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/compiler-rt/test/cfi/cross-dso/
stats.cpp 9 virtual void vf() {} function in struct:A
20 a->vf();
42 a->vf();
  /external/compiler-rt/test/cfi/
stats.cpp 11 virtual void vf() {} function in struct:A
17 a->vf();
37 a->vf();
  /external/vixl/src/aarch64/
simulator-aarch64.cc 2990 VectorFormat vf = nfd.GetVectorFormat(); local
3257 VectorFormat vf = nfd.GetVectorFormat(nfd.LogicalFormatMap()); local
3287 VectorFormat vf = nfd.GetVectorFormat(nfd.FPFormatMap()); local
3365 VectorFormat vf = nfd.GetVectorFormat(); local
3511 VectorFormat vf = nfd.GetVectorFormat(); local
3689 VectorFormat vf = nfd.GetVectorFormat(nfd.FPFormatMap()); local
3708 VectorFormat vf = nfd.GetVectorFormat(); local
3742 VectorFormat vf = nfd.GetVectorFormat(nfd.LongIntegerFormatMap()); local
3872 VectorFormat vf = nfd.GetVectorFormat(); local
3909 VectorFormat vf = nfd.GetVectorFormat(); local
3925 VectorFormat vf = nfd.GetVectorFormat(); local
4099 VectorFormat vf = kFormat16B; local
4439 VectorFormat vf = nfd.GetVectorFormat(); local
4579 VectorFormat vf = nfd.GetVectorFormat(); local
4602 VectorFormat vf = nfd.GetVectorFormat(); local
4718 VectorFormat vf = nfd.GetVectorFormat(); local
4780 VectorFormat vf = nfd.GetVectorFormat(); local
4798 VectorFormat vf = nfd.GetVectorFormat(); local
4850 VectorFormat vf = nfd.GetVectorFormat(); local
4976 VectorFormat vf = nfd.GetVectorFormat(); local
5124 VectorFormat vf = nfd.GetVectorFormat(); local
5166 VectorFormat vf = nfd.GetVectorFormat(); local
    [all...]
  /external/clang/test/Modules/
submodules.cpp 16 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++;
  /external/libxml2/win32/
configure.js 180 var fso, cf, vf, ln, s, iDot, iSlash;
204 vf = fso.CreateTextFile(versionFile, true);
205 vf.WriteLine("# " + versionFile);
206 vf.WriteLine("# This file is generated automatically by " + WScript.ScriptName + ".");
207 vf.WriteBlankLines(1);
212 vf.WriteLine(s);
215 vf.WriteLine(s);
218 vf.WriteLine(s);
221 vf.WriteLine(s);
226 vf.WriteLine("XML_SRCDIR=" + srcDirXml)
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue4813.go 24 vf = f
34 a6 = A[vf] // ERROR "non-integer|must be integer"
42 s6 = S[vf] // ERROR "non-integer|must be integer"
50 t6 = T[vf] // ERROR "non-integer|must be integer"
23 vf = f var
  /prebuilts/go/linux-x86/test/fixedbugs/
issue4813.go 24 vf = f
34 a6 = A[vf] // ERROR "non-integer|must be integer"
42 s6 = S[vf] // ERROR "non-integer|must be integer"
50 t6 = T[vf] // ERROR "non-integer|must be integer"
23 vf = f var

Completed in 2223 milliseconds

1 2 3 4 5 6