Searched refs:vf (Results 1 - 25 of 29) sorted by relevance

12

/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...]
H A Divorbisfile.h100 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/clang/test/CodeGen/
H A Daltivec.c11 vector float vf; local
13 vf = (vector float)(1.0); // CHECK: <float 1.000000e+{{0+}}, float 1.000000e+{{0+}}, float 1.000000e+{{0+}}, float 1.000000e+{{0+}}>
29 vector float vf; local
30 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.c13 vector float vf = { -1.5, 2.5, -3.5, 4.5 }; variable
56 vf = vec_abs(vf); // CHECK: and <4 x i32>
87 res_vf = vec_add(vf, vf); // CHECK: fadd <4 x float>
106 res_vf = vec_vaddfp(vf, vf); // CHECK: fadd <4 x float>
255 res_vf = vec_andc(vf, vf); // CHECK: xor <4 x i32>
258 res_vf = vec_andc(vbi, vf); // CHEC
[all...]
/external/clang/test/Parser/
H A Dcxx-class.cpp22 virtual int vf() const volatile = 0;
/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/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/valgrind/main/VEX/priv/
H A Dguest_arm_helpers.c85 UInt vf = lshift( (res ^ argL) & (res ^ argR), local
89 // argL, argR, nf, zf, cf, vf);
90 return nf | zf | cf | vf;
101 UInt vf = lshift( (argL ^ argR) & (argL ^ res), local
105 // argL, argR, nf, zf, cf, vf);
106 return nf | zf | cf | vf;
118 UInt vf = lshift( (res ^ argL) & (res ^ argR), local
122 // argL, argR, nf, zf, cf, vf);
123 return nf | zf | cf | vf;
135 UInt vf local
150 UInt vf = lshift( oldV & 1, ARMG_CC_SHIFT_V ); local
161 UInt vf = lshift( oldV & 1, ARMG_CC_SHIFT_V ); local
173 UInt vf = lshift( oldV & 1, ARMG_CC_SHIFT_V ); local
230 UInt nf, zf, vf, cf, nzcv, inv; local
[all...]
/external/iproute2/include/linux/
H A Dif_link.h255 __u32 vf; member in struct:ifla_vf_mac
260 __u32 vf; member in struct:ifla_vf_vlan
266 __u32 vf; member in struct:ifla_vf_tx_rate
271 __u32 vf; member in struct:ifla_vf_info
/external/kernel-headers/original/linux/
H A Dif_link.h258 __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
/external/quake/quake/src/QW/client/
H A Dmathlib.c101 vec3_t vr, vup, vf; local
103 vf[0] = dir[0];
104 vf[1] = dir[1];
105 vf[2] = dir[2];
108 CrossProduct( vr, vf, vup );
118 m[0][2] = vf[0];
119 m[1][2] = vf[1];
120 m[2][2] = vf[2];
/external/quake/quake/src/WinQuake/
H A Dmathlib.cpp101 vec3_t vr, vup, vf; local
103 vf[0] = dir[0];
104 vf[1] = dir[1];
105 vf[2] = dir[2];
108 CrossProduct( vr, vf, vup );
118 m[0][2] = vf[0];
119 m[1][2] = vf[1];
120 m[2][2] = vf[2];
/external/libvpx/vp8/encoder/
H A Dmcomp.h44 const vp8_variance_fn_ptr_t *vf,
H A Dmcomp.c223 besterr = vfp->vf(y, d->pre_stride, z, b->src_stride, &sse);
339 bestmse = vfp->vf(y, d->pre_stride, z, b->src_stride, &sse);
623 bestmse = vfp->vf(y, d->pre_stride, z, b->src_stride, &sse);
897 return vfp->vf(src, src_stride, PRE(br, bc), d->pre_stride, &thiserr) + mv_err_cost(best_mv, center_mv, mvcost, error_per_bit) ;
1019 return fn_ptr->vf(what, what_stride, best_address, in_what_stride, (unsigned int *)(&thissad))
1175 return fn_ptr->vf(what, what_stride, best_address, in_what_stride, (unsigned int *)(&thissad))
1265 return fn_ptr->vf(what, what_stride, bestaddress, in_what_stride, (unsigned int *)(&thissad))
1388 return fn_ptr->vf(what, what_stride, bestaddress, in_what_stride, (unsigned int *)(&thissad))
1540 return fn_ptr->vf(what, what_stride, bestaddress, in_what_stride, (unsigned int *)(&thissad))
H A Dvariance.h404 vp8_variance_fn_t vf; member in struct:__anon6266
H A Dpickinter.c87 return vfp->vf(what, what_stride, in_what, in_what_stride, sse);
H A Donyx_if.c2071 cpi->fn_ptr[BLOCK_16X16].vf = VARIANCE_INVOKE(&cpi->rtcd.variance, var16x16);
2081 cpi->fn_ptr[BLOCK_16X8].vf = VARIANCE_INVOKE(&cpi->rtcd.variance, var16x8);
2091 cpi->fn_ptr[BLOCK_8X16].vf = VARIANCE_INVOKE(&cpi->rtcd.variance, var8x16);
2101 cpi->fn_ptr[BLOCK_8X8].vf = VARIANCE_INVOKE(&cpi->rtcd.variance, var8x8);
2111 cpi->fn_ptr[BLOCK_4X4].vf = VARIANCE_INVOKE(&cpi->rtcd.variance, var4x4);
/external/qemu/distrib/sdl-1.2.12/src/video/
H A DSDL_video.c262 SDL_PixelFormat *vf = SDL_VideoSurface->format;
263 SDL_DitherColors(vf->palette->colors, vf->BitsPerPixel);
265 0, vf->palette->ncolors, vf->palette->colors);
701 SDL_PixelFormat *vf = mode->format; local
702 SDL_DitherColors(vf->palette->colors, vf->BitsPerPixel);
703 video->SetColors(this, 0, vf->palette->ncolors,
704 vf
938 SDL_PixelFormat *vf; local
[all...]
/external/iproute2/ip/
H A Diplink.c71 fprintf(stderr, " [ vf NUM [ mac LLADDR ]\n");
179 int iplink_parse_vf(int vf, int *argcp, char ***argvp, argument
193 ivm.vf = vf;
204 ivv.vf = vf;
225 ivt.vf = vf;
254 int vf = -1; local
352 } else if (strcmp(*argv, "vf")
[all...]
H A Dipaddress.c195 struct rtattr *vf[IFLA_VF_MAX+1]; local
203 parse_rtattr_nested(vf, IFLA_VF_MAX, vfinfo);
205 vf_mac = RTA_DATA(vf[IFLA_VF_MAC]);
206 vf_vlan = RTA_DATA(vf[IFLA_VF_VLAN]);
207 vf_tx_rate = RTA_DATA(vf[IFLA_VF_TX_RATE]);
209 fprintf(fp, "\n vf %d MAC %s", vf_mac->vf,
/external/webkit/Source/WebCore/platform/graphics/ca/mac/
H A DPlatformCAAnimationMac.mm341 CAValueFunction* vf = [m_animation.get() valueFunction];
342 return fromCAValueFunctionType([vf name]);
/external/llvm/test/Bindings/Ocaml/
H A Dvmcore.ml656 let vf = define_function "void" (function_type void_type [| |]) m in
658 insist (At_end vf = param_begin vf);
659 insist (At_start vf = param_end vf);
/external/valgrind/main/none/tests/ppc32/
H A Djm-insns.c4584 vector float vf;
4588 vf = (vector float)vfargs[i];
4589 f = ((float*)&vf)[0];

Completed in 470 milliseconds

12