/external/tremolo/Tremolo/ |
D | vorbisfile.c | 91 static long _get_data(OggVorbis_File *vf){ in _get_data() argument 93 if(vf->datasource){ in _get_data() 94 unsigned char *buffer=ogg_sync_bufferin(vf->oy,CHUNKSIZE); in _get_data() 95 long bytes=(vf->callbacks.read_func)(buffer,1,CHUNKSIZE,vf->datasource); in _get_data() 96 if(bytes>0)ogg_sync_wrote(vf->oy,bytes); in _get_data() 104 static void _seek_helper(OggVorbis_File *vf,ogg_int64_t offset){ in _seek_helper() argument 105 if(vf->datasource){ in _seek_helper() 106 (vf->callbacks.seek_func)(vf->datasource, offset, SEEK_SET); in _seek_helper() 107 vf->offset=offset; in _seek_helper() 108 ogg_sync_reset(vf->oy); in _seek_helper() [all …]
|
D | 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/clang/test/CodeGen/ |
D | builtins-ppc-altivec.c | 13 vector float vf = { -1.5, 2.5, -3.5, 4.5 }; variable 56 vf = vec_abs(vf); // CHECK: and <4 x i32> in test1() 87 res_vf = vec_add(vf, vf); // CHECK: fadd <4 x float> in test1() 106 res_vf = vec_vaddfp(vf, vf); // CHECK: fadd <4 x float> in test1() 255 res_vf = vec_andc(vf, vf); // CHECK: xor <4 x i32> in test1() 258 res_vf = vec_andc(vbi, vf); // CHECK: xor <4 x i32> in test1() 261 res_vf = vec_andc(vf, vbi); // CHECK: xor <4 x i32> in test1() 324 res_vf = vec_vandc(vf, vf); // CHECK: xor <4 x i32> in test1() 327 res_vf = vec_vandc(vbi, vf); // CHECK: xor <4 x i32> in test1() 330 res_vf = vec_vandc(vf, vbi); // CHECK: xor <4 x i32> in test1() [all …]
|
D | altivec.c | 11 vector float vf; in test2() local 13 …vf = (vector float)(1.0); // CHECK: <float 1.000000e+{{0+}}, float 1.000000e+{{0+}}, float… in test2() 29 vector float vf; in test3() local 30 …vf++; // CHECK: fadd <4 x float> {{.*}} <float 1.000000e+{{0+}}… in test3()
|
/external/valgrind/main/VEX/priv/ |
D | guest_arm_helpers.c | 85 UInt vf = lshift( (res ^ argL) & (res ^ argR), in armg_calculate_flags_nzcv() local 90 return nf | zf | cf | vf; in armg_calculate_flags_nzcv() 101 UInt vf = lshift( (argL ^ argR) & (argL ^ res), in armg_calculate_flags_nzcv() local 106 return nf | zf | cf | vf; in armg_calculate_flags_nzcv() 118 UInt vf = lshift( (res ^ argL) & (res ^ argR), in armg_calculate_flags_nzcv() local 123 return nf | zf | cf | vf; in armg_calculate_flags_nzcv() 135 UInt vf = lshift( (argL ^ argR) & (argL ^ res), in armg_calculate_flags_nzcv() local 140 return nf | zf | cf | vf; in armg_calculate_flags_nzcv() 150 UInt vf = lshift( oldV & 1, ARMG_CC_SHIFT_V ); in armg_calculate_flags_nzcv() local 151 return nf | zf | cf | vf; in armg_calculate_flags_nzcv() [all …]
|
/external/clang/test/SemaCXX/ |
D | altivec.cpp | 16 vector float vf; in test_vec_step() local 31 int res12[vec_step(vf) == 4 ? 1 : -1]; in test_vec_step() 62 vector float vf; in test2() local 63 vf++; in test2()
|
D | destructor.cpp | 227 VF vf; use(vf); in nowarnstack() local 290 VF* vf = new VF(); in nowarn0() local 291 delete vf; in nowarn0() 328 simple_ptr<VF> vf(new VF()); in nowarn1() local 329 use(*vf); in nowarn1()
|
/external/kernel-headers/original/linux/ |
D | if_link.h | 258 __u32 vf; member 263 __u32 vf; member 269 __u32 vf; member 274 __u32 vf; member
|
/external/iproute2/include/linux/ |
D | if_link.h | 255 __u32 vf; member 260 __u32 vf; member 266 __u32 vf; member 271 __u32 vf; member
|
/external/clang/test/Sema/ |
D | altivec-init.c | 21 vector float vf; in foo() local 22 vf = (vector float)(1.0); in foo()
|
/external/quake/quake/src/WinQuake/ |
D | mathlib.cpp | 101 vec3_t vr, vup, vf; in RotatePointAroundVector() local 103 vf[0] = dir[0]; in RotatePointAroundVector() 104 vf[1] = dir[1]; in RotatePointAroundVector() 105 vf[2] = dir[2]; in RotatePointAroundVector() 108 CrossProduct( vr, vf, vup ); in RotatePointAroundVector() 118 m[0][2] = vf[0]; in RotatePointAroundVector() 119 m[1][2] = vf[1]; in RotatePointAroundVector() 120 m[2][2] = vf[2]; in RotatePointAroundVector()
|
/external/quake/quake/src/QW/client/ |
D | mathlib.c | 101 vec3_t vr, vup, vf; in RotatePointAroundVector() local 103 vf[0] = dir[0]; in RotatePointAroundVector() 104 vf[1] = dir[1]; in RotatePointAroundVector() 105 vf[2] = dir[2]; in RotatePointAroundVector() 108 CrossProduct( vr, vf, vup ); in RotatePointAroundVector() 118 m[0][2] = vf[0]; in RotatePointAroundVector() 119 m[1][2] = vf[1]; in RotatePointAroundVector() 120 m[2][2] = vf[2]; in RotatePointAroundVector()
|
/external/clang/test/CodeGenCXX/ |
D | constructor-for-array-members.cpp | 10 float vf = 1.00; variable 13 S() : iS(i++), f1(vf++) {printf("S::S()\n");} in S()
|
/external/iproute2/ip/ |
D | iplink.c | 179 int iplink_parse_vf(int vf, int *argcp, char ***argvp, in iplink_parse_vf() argument 193 ivm.vf = vf; in iplink_parse_vf() 204 ivv.vf = vf; in iplink_parse_vf() 225 ivt.vf = vf; in iplink_parse_vf() 254 int vf = -1; in iplink_parse() local 355 if (get_integer(&vf, *argv, 0)) { in iplink_parse() 360 len = iplink_parse_vf(vf, &argc, &argv, req); in iplink_parse()
|
D | ipaddress.c | 195 struct rtattr *vf[IFLA_VF_MAX+1]; in print_vfinfo() local 203 parse_rtattr_nested(vf, IFLA_VF_MAX, vfinfo); in print_vfinfo() 205 vf_mac = RTA_DATA(vf[IFLA_VF_MAC]); in print_vfinfo() 206 vf_vlan = RTA_DATA(vf[IFLA_VF_VLAN]); in print_vfinfo() 207 vf_tx_rate = RTA_DATA(vf[IFLA_VF_TX_RATE]); in print_vfinfo() 209 fprintf(fp, "\n vf %d MAC %s", vf_mac->vf, in print_vfinfo()
|
/external/qemu/distrib/sdl-1.2.12/src/video/ |
D | SDL_video.c | 262 SDL_PixelFormat *vf = SDL_VideoSurface->format; in SDL_VideoInit() 263 SDL_DitherColors(vf->palette->colors, vf->BitsPerPixel); in SDL_VideoInit() 265 0, vf->palette->ncolors, vf->palette->colors); in SDL_VideoInit() 701 SDL_PixelFormat *vf = mode->format; in SDL_SetVideoMode() local 702 SDL_DitherColors(vf->palette->colors, vf->BitsPerPixel); in SDL_SetVideoMode() 703 video->SetColors(this, 0, vf->palette->ncolors, in SDL_SetVideoMode() 704 vf->palette->colors); in SDL_SetVideoMode() 938 SDL_PixelFormat *vf; in SDL_DisplayFormatAlpha() local 952 vf = SDL_PublicSurface->format; in SDL_DisplayFormatAlpha() 954 switch(vf->BytesPerPixel) { in SDL_DisplayFormatAlpha() [all …]
|
/external/clang/test/Parser/ |
D | cxx-class.cpp | 22 virtual int vf() const volatile = 0;
|
/external/libvpx/vp8/encoder/ |
D | mcomp.h | 44 const vp8_variance_fn_ptr_t *vf,
|
D | mcomp.c | 223 besterr = vfp->vf(y, d->pre_stride, z, b->src_stride, &sse); in vp8_find_best_sub_pixel_step_iteratively() 339 bestmse = vfp->vf(y, d->pre_stride, z, b->src_stride, &sse); in vp8_find_best_sub_pixel_step() 623 bestmse = vfp->vf(y, d->pre_stride, z, b->src_stride, &sse); in vp8_find_best_half_pixel_step() 897 …return vfp->vf(src, src_stride, PRE(br, bc), d->pre_stride, &thiserr) + mv_err_cost(best_mv, cente… in vp8_hex_search() 1019 return fn_ptr->vf(what, what_stride, best_address, in_what_stride, (unsigned int *)(&thissad)) in vp8_diamond_search_sad() 1175 return fn_ptr->vf(what, what_stride, best_address, in_what_stride, (unsigned int *)(&thissad)) in vp8_diamond_search_sadx4() 1265 … return fn_ptr->vf(what, what_stride, bestaddress, in_what_stride, (unsigned int *)(&thissad)) in vp8_full_search_sad() 1388 … return fn_ptr->vf(what, what_stride, bestaddress, in_what_stride, (unsigned int *)(&thissad)) in vp8_full_search_sadx3() 1540 … return fn_ptr->vf(what, what_stride, bestaddress, in_what_stride, (unsigned int *)(&thissad)) in vp8_full_search_sadx8()
|
D | variance.h | 404 vp8_variance_fn_t vf; member
|
D | onyx_if.c | 2071 cpi->fn_ptr[BLOCK_16X16].vf = VARIANCE_INVOKE(&cpi->rtcd.variance, var16x16); in vp8_create_compressor() 2081 cpi->fn_ptr[BLOCK_16X8].vf = VARIANCE_INVOKE(&cpi->rtcd.variance, var16x8); in vp8_create_compressor() 2091 cpi->fn_ptr[BLOCK_8X16].vf = VARIANCE_INVOKE(&cpi->rtcd.variance, var8x16); in vp8_create_compressor() 2101 cpi->fn_ptr[BLOCK_8X8].vf = VARIANCE_INVOKE(&cpi->rtcd.variance, var8x8); in vp8_create_compressor() 2111 cpi->fn_ptr[BLOCK_4X4].vf = VARIANCE_INVOKE(&cpi->rtcd.variance, var4x4); in vp8_create_compressor()
|
/external/clang/include/clang/Basic/ |
D | BuiltinsX86.def | 252 BUILTIN(__builtin_ia32_storeups, "vf*V4f", "") 256 BUILTIN(__builtin_ia32_movntps, "vf*V4f", "") 468 BUILTIN(__builtin_ia32_storeups256, "vf*V8f", "") 474 BUILTIN(__builtin_ia32_movntps256, "vf*V8f", "")
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/de-DE/ |
D | de-DE_gl0_kdt_mgc5.pkb | 32 …�!t�5� ��g^�\4����?�U����6��E� a ������ovY�qc�0���c���f����#78��;��vf
|
/external/webkit/Source/WebCore/platform/graphics/ca/mac/ |
D | PlatformCAAnimationMac.mm | 341 CAValueFunction* vf = [m_animation.get() valueFunction]; 342 return fromCAValueFunctionType([vf name]);
|
/external/llvm/test/Bindings/Ocaml/ |
D | vmcore.ml | 646 let vf = define_function "void" (function_type void_type [| |]) m in 648 insist (At_end vf = param_begin vf); 649 insist (At_start vf = param_end vf);
|