Searched refs:vf2 (Results 1 - 6 of 6) sorted by relevance

/external/clang/test/CodeGenCXX/
H A Dmember-function-pointer-calls.cpp4 virtual int vf2() { return 2; } function in struct:A
22 return f(&a, &A::vf2);
H A Dmember-function-pointers.cpp7 struct A { int a; void f(); virtual void vf1(); virtual void vf2(); };
25 void (A::*pa4)() = &A::vf2;
66 void (A::*pa4)() = &A::vf2;
/external/stlport/test/unit/
H A Dmfunptr_test.cpp49 void vf2(S1&, S2&);
86 ptr_fun(vf2)(s1, s2);
146 void vf2(S1&, S2&) function
/external/libvorbis/include/vorbis/
H A Dvorbisfile.h196 extern int ov_crosslap(OggVorbis_File *vf1,OggVorbis_File *vf2);
/external/libvorbis/lib/
H A Dvorbisfile.c2142 int ov_crosslap(OggVorbis_File *vf1, OggVorbis_File *vf2){ argument
2149 if(vf1==vf2)return(0); /* degenerate case */
2151 if(vf2->ready_state<OPENED)return(OV_EINVAL);
2159 ret=_ov_initprime(vf2);
2163 vi2=ov_info(vf2,-1);
2165 hs2=ov_halfrate_p(vf2);
2171 w2=vorbis_window(&vf2->vd,0);
2179 buffer of vf2 */
2181 vorbis_synthesis_lapout(&vf2->vd,&pcm);
/external/clang/test/CodeGen/
H A Dbuiltins-ppc-altivec.c3109 vector float vf2 = (vector float)(2.0); local
3110 res_i = (vf1 == vf2); // CHECK: @llvm.ppc.altivec.vcmpeqfp.p(i32 2
3111 res_i = (vf1 != vf2); // CHECK: @llvm.ppc.altivec.vcmpeqfp.p(i32 0
3112 res_i = (vf1 < vf2); // CHECK: @llvm.ppc.altivec.vcmpgtfp.p(i32 2
3113 res_i = (vf1 > vf2); // CHECK: @llvm.ppc.altivec.vcmpgtfp.p(i32 2
3114 res_i = (vf1 <= vf2); // CHECK: @llvm.ppc.altivec.vcmpgefp.p(i32 2
3115 res_i = (vf1 >= vf2); // CHECK: @llvm.ppc.altivec.vcmpgefp.p(i32 2

Completed in 196 milliseconds