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

1 2 3 4 5 6 7

  /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/mesa3d/src/mesa/drivers/dri/i965/
brw_packed_float.c 46 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)
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 & 0xf) << (23 - 4)
    [all...]
test_vf_float_conversions.cpp 39 for (int vf = 1; vf < 128; vf++) {
40 int ebits = (vf >> 4) & 0x7;
41 int mbits = vf & 0xf;
46 vf_to_float[vf] = ldexpf(x, exp);
65 for (int vf = 0; vf < 256; vf++) {
66 float expected = vf_to_float[vf % 128]
    [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...]
  /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 14 var vf = []float64{ var
28 // at http://keisan.casio.com/. More exact input values (array vf[], above)
165 // Results for 100000 * Pi + vf[i]
569 // Results for 100000 * Pi + vf[i]
619 // 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 14 var vf = []float64{ var
28 // at http://keisan.casio.com/. More exact input values (array vf[], above)
165 // Results for 100000 * Pi + vf[i]
569 // Results for 100000 * Pi + vf[i]
619 // Results for 100000 * Pi + vf[i]
    [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/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();
  /external/mesa3d/src/gallium/drivers/ilo/core/
ilo_state_vf.h 75 * VF parameters.
166 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)
198 return vf->internal_ve_count + vf->user_ve_count
    [all...]
ilo_state_vf.c 131 vf_set_gen6_3DSTATE_VERTEX_ELEMENTS(struct ilo_state_vf *vf,
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->last_user_ve[1][0] = dw0
    [all...]
  /dalvik/dx/tests/141-invoke-polymorphic-varhandles/
VarHandleDexTest.java 103 VarHandle vf = MethodHandles.lookup().findStaticVarHandle(t.getClass(), "fValue", Float.class); local
107 Float f0 = (Float) vf.compareAndExchangeAcquire(t, expectedValue, newValue);
108 vf.compareAndExchangeAcquire(t, expectedValue, newValue);
109 Float f1 = (Float) vf.compareAndExchange(t, expectedValue, newValue);
110 vf.compareAndExchange(t, expectedValue, newValue);
111 Float f2 = (Float) vf.compareAndExchangeRelease(t, expectedValue, newValue);
112 vf.compareAndExchangeRelease(t, expectedValue, newValue);
114 boolean r0 = vf.compareAndSet(t, expectedValue, newValue);
115 vf.compareAndSet(t, expectedValue, newValue);
116 boolean r1 = vf.weakCompareAndSetAcquire(t, expectedValue, newValue)
    [all...]
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_formats.c 123 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/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/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...]
  /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
4952 VectorFormat vf = nfd.GetVectorFormat(); local
5100 VectorFormat vf = nfd.GetVectorFormat(); local
5142 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++;

Completed in 525 milliseconds

1 2 3 4 5 6 7