/external/tremolo/Tremolo/ |
D | dsp.c | 208 int vorbis_dsp_synthesis(vorbis_dsp_state *vd,ogg_packet *op,int decodep){ in vorbis_dsp_synthesis() argument 209 vorbis_info *vi=vd->vi; in vorbis_dsp_synthesis() 213 oggpack_readinit(&vd->opb,op->packet); in vorbis_dsp_synthesis() 216 if(oggpack_read(&vd->opb,1)!=0){ in vorbis_dsp_synthesis() 222 mode=oggpack_read(&vd->opb,ilog(ci->modes)); in vorbis_dsp_synthesis() 226 vd->lW=vd->W; in vorbis_dsp_synthesis() 227 vd->W=ci->mode_param[mode].blockflag; in vorbis_dsp_synthesis() 229 mdct_shift_right(ci->blocksizes[vd->lW],vd->work[i],vd->mdctright[i]); in vorbis_dsp_synthesis() 231 if(vd->W){ in vorbis_dsp_synthesis() 233 oggpack_read(&vd->opb,1); in vorbis_dsp_synthesis() [all …]
|
D | mapping0.c | 125 int mapping_inverse(vorbis_dsp_state *vd,vorbis_info_mapping *info){ in mapping_inverse() argument 126 vorbis_info *vi=vd->vi; in mapping_inverse() 130 long n=ci->blocksizes[vd->W]; in mapping_inverse() 154 floormemo[i]=floor1_inverse1(vd,ci->floor_param[floorno],floormemo[i]); in mapping_inverse() 159 floormemo[i]=floor0_inverse1(vd,ci->floor_param[floorno],floormemo[i]); in mapping_inverse() 166 memset(vd->work[i],0,sizeof(*vd->work[i])*n/2); in mapping_inverse() 187 pcmbundle[ch_in_bundle++]=vd->work[j]; in mapping_inverse() 191 res_inverse(vd,ci->residue_param+info->submaplist[i].residue, in mapping_inverse() 200 ogg_int32_t *pcmM=vd->work[info->coupling[i].mag]; in mapping_inverse() 201 ogg_int32_t *pcmA=vd->work[info->coupling[i].ang]; in mapping_inverse() [all …]
|
/external/clang/test/CodeGen/ |
D | builtins-ppc-vsx.c | 13 vector double vd = { 3.5, -7.5 }; variable 76 res_vd = vec_add(vd, vd); in test1() 80 res_vd = vec_and(vbll, vd); in test1() 86 res_vd = vec_and(vd, vbll); in test1() 92 res_vd = vec_and(vd, vd); in test1() 102 res_vd = vec_andc(vbll, vd); in test1() 116 res_vd = vec_andc(vd, vbll); in test1() 129 res_vd = vec_andc(vd, vd); in test1() 139 res_vd = vec_ceil(vd); in test1() 147 res_vbll = vec_cmpeq(vd, vd); in test1() [all …]
|
D | builtins-systemz-zvector-error.c | 20 volatile vector double vd; variable 97 vd = vec_permi(vd, vd, idx); // expected-error {{no matching function}} in test_core() 100 vd = vec_permi(vd, vd, -1); // expected-error {{no matching function}} in test_core() 103 vd = vec_permi(vd, vd, 4); // expected-error {{no matching function}} in test_core() 161 vd = vec_gather_element(vd, vul, cptrd, idx); // expected-error {{no matching function}} in test_core() 164 vd = vec_gather_element(vd, vul, cptrd, -1); // expected-error {{no matching function}} in test_core() 167 vd = vec_gather_element(vd, vul, cptrd, 2); // expected-error {{no matching function}} in test_core() 225 vec_scatter_element(vd, vul, ptrd, idx); // expected-error {{no matching function}} in test_core() 228 vec_scatter_element(vd, vul, ptrd, -1); // expected-error {{no matching function}} in test_core() 231 vec_scatter_element(vd, vul, ptrd, 2); // expected-error {{no matching function}} in test_core() [all …]
|
D | builtins-systemz-zvector.c | 20 volatile vector double vd; variable 100 d = vec_extract(vd, idx); in test_core() 127 vd = vec_insert(d, vd, idx); in test_core() 146 vd = vec_promote(d, idx); in test_core() 165 vd = vec_insert_and_zero(cptrd); in test_core() 192 vd = vec_perm(vd, vd, vuc); in test_core() 219 vd = vec_permi(vd, vd, 0); in test_core() 221 vd = vec_permi(vd, vd, 1); in test_core() 223 vd = vec_permi(vd, vd, 2); in test_core() 225 vd = vec_permi(vd, vd, 3); in test_core() [all …]
|
D | builtins-systemz-vector.c | 23 volatile vec_double vd; variable 569 vsl = __builtin_s390_vfcedbs(vd, vd, &cc); in test_float() 571 vsl = __builtin_s390_vfchdbs(vd, vd, &cc); in test_float() 573 vsl = __builtin_s390_vfchedbs(vd, vd, &cc); in test_float() 576 vsl = __builtin_s390_vftcidb(vd, 0, &cc); in test_float() 578 vsl = __builtin_s390_vftcidb(vd, 4095, &cc); in test_float() 581 vd = __builtin_s390_vfsqdb(vd); in test_float() 584 vd = __builtin_s390_vfmadb(vd, vd, vd); in test_float() 586 vd = __builtin_s390_vfmsdb(vd, vd, vd); in test_float() 590 vd = __builtin_s390_vflpdb(vd); in test_float() [all …]
|
/external/vixl/src/aarch64/ |
D | assembler-aarch64.cc | 314 void Assembler::NEONTable(const VRegister& vd, in NEONTable() argument 319 VIXL_ASSERT(vd.Is16B() || vd.Is8B()); in NEONTable() 321 VIXL_ASSERT(AreSameFormat(vd, vm)); in NEONTable() 322 Emit(op | (vd.IsQ() ? NEON_Q : 0) | Rm(vm) | Rn(vn) | Rd(vd)); in NEONTable() 326 void Assembler::tbl(const VRegister& vd, in tbl() argument 330 NEONTable(vd, vn, vm, NEON_TBL_1v); in tbl() 334 void Assembler::tbl(const VRegister& vd, in tbl() argument 342 NEONTable(vd, vn, vm, NEON_TBL_2v); in tbl() 346 void Assembler::tbl(const VRegister& vd, in tbl() argument 355 NEONTable(vd, vn, vm, NEON_TBL_3v); in tbl() [all …]
|
D | assembler-aarch64.h | 565 void tbl(const VRegister& vd, const VRegister& vn, const VRegister& vm); 568 void tbl(const VRegister& vd, 574 void tbl(const VRegister& vd, 581 void tbl(const VRegister& vd, 589 void tbx(const VRegister& vd, const VRegister& vn, const VRegister& vm); 592 void tbx(const VRegister& vd, 598 void tbx(const VRegister& vd, 605 void tbx(const VRegister& vd, 2199 void fmov(const VRegister& vd, double imm); 2202 void fmov(const VRegister& vd, float imm); [all …]
|
D | macro-assembler-aarch64.cc | 934 void MacroAssembler::Movi16bitHelper(const VRegister& vd, uint64_t imm) { in Movi16bitHelper() argument 939 movi(vd.Is64Bits() ? vd.V8B() : vd.V16B(), byte1); in Movi16bitHelper() 941 movi(vd, byte2, LSL, 8); in Movi16bitHelper() 943 movi(vd, byte1); in Movi16bitHelper() 945 mvni(vd, ~byte2 & 0xff, LSL, 8); in Movi16bitHelper() 947 mvni(vd, ~byte1 & 0xff); in Movi16bitHelper() 952 dup(vd, temp); in Movi16bitHelper() 957 void MacroAssembler::Movi32bitHelper(const VRegister& vd, uint64_t imm) { in Movi32bitHelper() argument 974 movi(vd.Is64Bits() ? vd.V1D() : vd.V2D(), ((imm << 32) | imm)); in Movi32bitHelper() 982 movi(vd, bytes[i], LSL, i * 8); in Movi32bitHelper() [all …]
|
/external/cldr/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/transforms/ |
D | IPA-Deva.txt | 72 ɣ > ग़ ्; # 0263 vd velar fricative 73 ʑ > ज्य ्; # 0291 vd alveolopalatal fricative 74 ɽ > ड़ ्; # 027D vd retroflex flap 75 ʙ > ब्र ्; # 0299 vd bilabial trill 92 ɗ > द ्; # 0257 vd alveolar implosive 93 ɖ > ड ्; # 0256 vd retroflex plosive 94 ʤ > ज ्; # 02A4 vd postalveolar affricate 95 ɡ > ग ्; # 0261 vd velar plosive 96 ɭ > ळ ्; # 026D vd retroflex lateral 97 ŋ > ङ ्; # 014B vd velar nasal [all …]
|
D | internal_English-IPA-backwards.txt | 70 b ← ʙ ; # 0299 vd bilabial trill 71 b ← ɓ ; # 0253 vd bilabial implosive 77 ţh ← ð ; # 00F0 vd dental fricative 78 j ← ʤ ; # 02A4 vd postalveolar affricate 79 d ← ɖ ; # 0256 vd retroflex plosive 80 d ← ɗ ; # 0257 vd alveolar implosive 93 g ← ɡ ; # 0261 vd velar plosive 94 g ← ɢ ; # 0262 vd uvular plosive 95 g ← ɠ ; # 0260 vd velar implosive 96 g ← ʛ ; # 029B vd uvular implosive [all …]
|
D | und-IPA.txt | 81 «042» ↔ ɓ ; # 0253 vd bilabial implosive 83 «044» ↔ ɱ ; # 0271 vd labiodental nasal 84 «045» ↔ ʙ ; # 0299 vd bilabial trill 90 «050» ↔ β ; # 03B2 vd bilabial fricative 94 «054» ↔ ʋ ; # 028B vd labiodental approximant 100 «063» ↔ ɖ ; # 0256 vd retroflex plosive 101 «064» ↔ ɗ ; # 0257 vd alveolar implosive 103 «067» ↔ ɳ ; # 0273 vd retroflex nasal 109 «073» ↔ ɾ ; # 027E vd alveolar tap 110 «074» ↔ ɺ ; # 027A vd alveolar lateral flap [all …]
|
/external/capstone/arch/ARM/ |
D | ARMMappingInsnOp.inc | 31 { /* ARM_AESD, ARM_INS_AESD: aesd.8 $vd, $vm */ 34 { /* ARM_AESE, ARM_INS_AESE: aese.8 $vd, $vm */ 37 { /* ARM_AESIMC, ARM_INS_AESIMC: aesimc.8 $vd, $vm */ 40 { /* ARM_AESMC, ARM_INS_AESMC: aesmc.8 $vd, $vm */ 688 { /* ARM_SHA1C, ARM_INS_SHA1C: sha1c.32 $vd, $vn, $vm */ 691 { /* ARM_SHA1H, ARM_INS_SHA1H: sha1h.32 $vd, $vm */ 694 { /* ARM_SHA1M, ARM_INS_SHA1M: sha1m.32 $vd, $vn, $vm */ 697 { /* ARM_SHA1P, ARM_INS_SHA1P: sha1p.32 $vd, $vn, $vm */ 700 { /* ARM_SHA1SU0, ARM_INS_SHA1SU0: sha1su0.32 $vd, $vn, $vm */ 703 { /* ARM_SHA1SU1, ARM_INS_SHA1SU1: sha1su1.32 $vd, $vm */ [all …]
|
/external/capstone/arch/AArch64/ |
D | ARMMappingInsnOp.inc | 31 { /* ARM_AESD, ARM_INS_AESD: aesd.8 $vd, $vm */ 34 { /* ARM_AESE, ARM_INS_AESE: aese.8 $vd, $vm */ 37 { /* ARM_AESIMC, ARM_INS_AESIMC: aesimc.8 $vd, $vm */ 40 { /* ARM_AESMC, ARM_INS_AESMC: aesmc.8 $vd, $vm */ 688 { /* ARM_SHA1C, ARM_INS_SHA1C: sha1c.32 $vd, $vn, $vm */ 691 { /* ARM_SHA1H, ARM_INS_SHA1H: sha1h.32 $vd, $vm */ 694 { /* ARM_SHA1M, ARM_INS_SHA1M: sha1m.32 $vd, $vn, $vm */ 697 { /* ARM_SHA1P, ARM_INS_SHA1P: sha1p.32 $vd, $vn, $vm */ 700 { /* ARM_SHA1SU0, ARM_INS_SHA1SU0: sha1su0.32 $vd, $vn, $vm */ 703 { /* ARM_SHA1SU1, ARM_INS_SHA1SU1: sha1su1.32 $vd, $vm */ [all …]
|
/external/oss-fuzz/projects/tremor/ |
D | decode_fuzzer.cc | 49 vorbis_data* vd = (vorbis_data *)(datasource); in read_func() local 51 if (vd->current + len > vd->data + vd->size) { in read_func() 52 len = vd->data + vd->size - vd->current; in read_func() 54 memcpy(ptr, vd->current, len); in read_func() 55 vd->current += len; in read_func()
|
/external/clang/lib/Analysis/ |
D | UninitializedValues.cpp | 36 static bool isTrackedVar(const VarDecl *vd, const DeclContext *dc) { in isTrackedVar() argument 37 if (vd->isLocalVarDecl() && !vd->hasGlobalStorage() && in isTrackedVar() 38 !vd->isExceptionVariable() && !vd->isInitCapture() && in isTrackedVar() 39 !vd->isImplicit() && vd->getDeclContext() == dc) { in isTrackedVar() 40 QualType ty = vd->getType(); in isTrackedVar() 72 const VarDecl *vd = *I; in computeMap() local 73 if (isTrackedVar(vd, &dc)) in computeMap() 74 map[vd] = count++; in computeMap() 132 ValueVector::reference operator[](const VarDecl *vd); 135 const VarDecl *vd) { in getValue() argument [all …]
|
/external/eigen/bench/ |
D | bench_norm.cpp | 235 for (int i=0; i<iters; ++i) { ad += NRM(vd); } \ 251 VectorXd vd = VectorXd::Ones(s) * yd; in check_accuracy() local 254 std::cout << "sqsumNorm\t" << sqsumNorm(vf) << "\t" << sqsumNorm(vd) << "\n"; in check_accuracy() 255 std::cout << "hypotNorm\t" << hypotNorm(vf) << "\t" << hypotNorm(vd) << "\n"; in check_accuracy() 256 std::cout << "blueNorm\t" << blueNorm(vf) << "\t" << blueNorm(vd) << "\n"; in check_accuracy() 257 std::cout << "pblueNorm\t" << pblueNorm(vf) << "\t" << pblueNorm(vd) << "\n"; in check_accuracy() 258 std::cout << "lapackNorm\t" << lapackNorm(vf) << "\t" << lapackNorm(vd) << "\n"; in check_accuracy() 259 std::cout << "twopassNorm\t" << twopassNorm(vf) << "\t" << twopassNorm(vd) << "\n"; in check_accuracy() 260 std::cout << "bl2passNorm\t" << bl2passNorm(vf) << "\t" << bl2passNorm(vd) << "\n"; in check_accuracy() 266 VectorXd vd(s); in check_accuracy_var() local [all …]
|
/external/libvpx/vp9/common/ |
D | vp9_mfqe.c | 70 int uv_stride, uint8_t *ud, uint8_t *vd, in apply_ifactor() argument 75 vp9_filter_by_weight8x8(v, uv_stride, vd, uvd_stride, weight); in apply_ifactor() 79 vp9_filter_by_weight16x16(v, uv_stride, vd, uvd_stride, weight); in apply_ifactor() 83 filter_by_weight32x32(v, uv_stride, vd, uvd_stride, weight); in apply_ifactor() 130 uint8_t *vd, int yd_stride, int uvd_stride, in copy_block() argument 135 copy_mem8x8(v, uv_stride, vd, uvd_stride); in copy_block() 139 copy_mem16x16(v, uv_stride, vd, uvd_stride); in copy_block() 143 copy_mem32x32(v, uv_stride, vd, uvd_stride); in copy_block() 161 uint8_t *yd, uint8_t *ud, uint8_t *vd, int yd_stride, in mfqe_block() argument 189 apply_ifactor(y, y_stride, yd, yd_stride, u, v, uv_stride, ud, vd, in mfqe_block() [all …]
|
/external/eigen/test/ |
D | mixingtypes.cpp | 57 Matrix<double, SizeAtCompileType, 1> vd; vd.setRandom(size); in raise_assertion() local 58 VERIFY_RAISES_ASSERT(vf=vd); in raise_assertion() 59 VERIFY_RAISES_ASSERT(vf+=vd); in raise_assertion() 60 VERIFY_RAISES_ASSERT(vf-=vd); in raise_assertion() 61 VERIFY_RAISES_ASSERT(vd=vf); in raise_assertion() 62 VERIFY_RAISES_ASSERT(vd+=vf); in raise_assertion() 63 VERIFY_RAISES_ASSERT(vd-=vf); in raise_assertion() 69 VERIFY_RAISES_ASSERT(vd.dot(vf)); in raise_assertion() 94 Vec_d vd = vf.template cast<double>(); in mixingtypes() local 116 VERIFY_MIX_SCALAR(scd * vd , scd * vd.template cast<complex<double> >()); in mixingtypes() [all …]
|
/external/XNNPACK/src/jit/ |
D | aarch64-assembler.cc | 393 void Assembler::fabs(VRegister vd, VRegister vn) { in fabs() argument 394 if (!is_same_shape(vd, vn)) { in fabs() 399 emit32(0x0EA0F800 | q(vd) | fp_sz(vn) | rn(vn) | rd(vd)); in fabs() 402 void Assembler::fadd(VRegister vd, VRegister vn, VRegister vm) { in fadd() argument 403 if (!is_same_shape(vd, vn, vm)) { in fadd() 408 emit32(0x0E20D400 | q(vd) | fp_sz(vn) | rm(vm) | rn(vn) | rd(vd)); in fadd() 411 void Assembler::fmax(VRegister vd, VRegister vn, VRegister vm) { in fmax() argument 412 if (!is_same_shape(vd, vn, vm)) { in fmax() 417 emit32(0x0E20F400 | q(vd) | fp_sz(vn) | rm(vm) | rn(vn) | rd(vd)); in fmax() 420 void Assembler::fmin(VRegister vd, VRegister vn, VRegister vm) { in fmin() argument [all …]
|
/external/clang/test/PCH/ |
D | cxx1y-variable-templates.cpp | 60 template<typename T> constexpr T vd = T(10); variable 61 template<typename T> T* vd<T*> = new T(); variable 74 template<typename T> T vd = T(10); variable 75 template<typename T> extern T* vd<T*>; 110 template<typename T> extern T vd; 111 template<typename T> T* vd<T*> = new T(); variable 158 char* intpd = vd<char*>; 168 int* intpb = vd<int*>;
|
/external/XNNPACK/src/f32-vsigmoid/ |
D | neon-p5.c.in | 89 const float32x4_t vd${ABC[N:N+4]} = vaddq_f32(ve${ABC[N:N+4]}, vone); 93 float32x4_t vf${ABC[N:N+4]} = vdivq_f32(ve${ABC[N:N+4]}, vd${ABC[N:N+4]}); 96 float32x4_t vr${ABC[N:N+4]} = vrecpeq_f32(vd${ABC[N:N+4]}); 100 …} = vfmaq_f32(vr${ABC[N:N+4]}, vr${ABC[N:N+4]}, vfmsq_f32(vone, vr${ABC[N:N+4]}, vd${ABC[N:N+4]})); 103 … vr${ABC[N:N+4]} = vmulq_f32(vr${ABC[N:N+4]}, vrecpsq_f32(vr${ABC[N:N+4]}, vd${ABC[N:N+4]})); 107 … vr${ABC[N:N+4]} = vmulq_f32(vr${ABC[N:N+4]}, vrecpsq_f32(vr${ABC[N:N+4]}, vd${ABC[N:N+4]})); 110 …} = vfmaq_f32(vr${ABC[N:N+4]}, vr${ABC[N:N+4]}, vfmsq_f32(vone, vr${ABC[N:N+4]}, vd${ABC[N:N+4]})); 148 const float32x4_t vd = vaddq_f32(ve, vone); 151 float32x4_t vf = vdivq_f32(ve, vd); 153 float32x4_t vr = vrecpeq_f32(vd); [all …]
|
D | avx512f-rr2-lut32-p2-perm2-scalef.c.in | 77 const __m512 vd${ABC[N]} = _mm512_add_ps(ve${ABC[N]}, vone); 81 __m512 vf${ABC[N]} = _mm512_div_ps(ve${ABC[N]}, vd${ABC[N]}); 84 __m512 vr${ABC[N]} = _mm512_rcp14_ps(vd${ABC[N]}); 87 …vr${ABC[N]} = _mm512_fmadd_ps(_mm512_fnmadd_ps(vr${ABC[N]}, vd${ABC[N]}, vone), vr${ABC[N]}, vr${A… 94 …vf${ABC[N]} = _mm512_fmadd_ps(_mm512_fnmadd_ps(vf${ABC[N]}, vd${ABC[N]}, ve${ABC[N]}), vr${ABC[N]}… 122 const __m512 vd = _mm512_add_ps(ve, vone); variable 125 __m512 vf = _mm512_div_ps(ve, vd); 127 __m512 vr = _mm512_rcp14_ps(vd); 128 vr = _mm512_fmadd_ps(_mm512_fnmadd_ps(vr, vd, vone), vr, vr); 132 vf = _mm512_fmadd_ps(_mm512_fnmadd_ps(vf, vd, ve), vr, vf); [all …]
|
D | avx512f-rr1-lut16-p3-perm-scalef.c.in | 75 const __m512 vd${ABC[N]} = _mm512_add_ps(ve${ABC[N]}, vone); 79 __m512 vf${ABC[N]} = _mm512_div_ps(ve${ABC[N]}, vd${ABC[N]}); 82 __m512 vr${ABC[N]} = _mm512_rcp14_ps(vd${ABC[N]}); 85 …vr${ABC[N]} = _mm512_fmadd_ps(_mm512_fnmadd_ps(vr${ABC[N]}, vd${ABC[N]}, vone), vr${ABC[N]}, vr${A… 92 …vf${ABC[N]} = _mm512_fmadd_ps(_mm512_fnmadd_ps(vf${ABC[N]}, vd${ABC[N]}, ve${ABC[N]}), vr${ABC[N]}… 120 const __m512 vd = _mm512_add_ps(ve, vone); variable 123 __m512 vf = _mm512_div_ps(ve, vd); 125 __m512 vr = _mm512_rcp14_ps(vd); 126 vr = _mm512_fmadd_ps(_mm512_fnmadd_ps(vr, vd, vone), vr, vr); 130 vf = _mm512_fmadd_ps(_mm512_fnmadd_ps(vf, vd, ve), vr, vf); [all …]
|
/external/clang/test/SemaCXX/ |
D | destructor.cpp | 245 VD vd; use(vd); in nowarnstack() local 275 VD* vd = new VD[4]; in nowarnarray() local 276 delete[] vd; in nowarnarray() 306 VD* vd = new VD(); in nowarn0() local 307 delete vd; in nowarn0() 315 void nowarn0_explicit_dtor(F* f, VB* vb, VD* vd, VF* vf) { in nowarn0_explicit_dtor() argument 319 vd->~VD(); in nowarn0_explicit_dtor() 363 simple_ptr<VD> vd(new VD()); in nowarn1() local 364 use(*vd); in nowarn1()
|