Home
last modified time | relevance | path

Searched refs:vd (Results 1 – 25 of 86) sorted by relevance

1234

/external/tremolo/Tremolo/
Ddsp.c208 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 …]
Dmapping0.c125 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 …]
Dres012.c103 int res_inverse(vorbis_dsp_state *vd,vorbis_info_residue *info, in res_inverse() argument
107 codec_setup_info *ci=(codec_setup_info *)vd->vi->codec_setup; in res_inverse()
111 int pcmend=ci->blocksizes[vd->W]; in res_inverse()
149 int temp=vorbis_book_decode(phrasebook,&vd->opb); in res_inverse()
171 if(vorbis_book_decodev_add(stagebook,in[j]+offset,&vd->opb, in res_inverse()
175 if(vorbis_book_decodevs_add(stagebook,in[j]+offset,&vd->opb, in res_inverse()
213 temp=vorbis_book_decode(phrasebook,&vd->opb); in res_inverse()
232 &vd->opb, in res_inverse()
Dfloor0.c400 ogg_int32_t *floor0_inverse1(vorbis_dsp_state *vd,vorbis_info_floor *i, in floor0_inverse1() argument
405 int ampraw=oggpack_read(&vd->opb,info->ampbits); in floor0_inverse1()
409 int booknum=oggpack_read(&vd->opb,_ilog(info->numbooks)); in floor0_inverse1()
412 codec_setup_info *ci=(codec_setup_info *)vd->vi->codec_setup; in floor0_inverse1()
417 if(vorbis_book_decodev_set(b,lsp+j,&vd->opb,b->dim,-24)==-1)goto eop; in floor0_inverse1()
431 int floor0_inverse2(vorbis_dsp_state *vd,vorbis_info_floor *i, in floor0_inverse2() argument
434 codec_setup_info *ci=(codec_setup_info *)vd->vi->codec_setup; in floor0_inverse2()
440 vorbis_lsp_to_curve(out,ci->blocksizes[vd->W]/2,info->barkmap, in floor0_inverse2()
445 memset(out,0,sizeof(*out)*ci->blocksizes[vd->W]/2); in floor0_inverse2()
/external/vixl/src/vixl/a64/
Dassembler-a64.cc694 void Assembler::NEONTable(const VRegister& vd, in NEONTable() argument
698 VIXL_ASSERT(vd.Is16B() || vd.Is8B()); in NEONTable()
700 VIXL_ASSERT(AreSameFormat(vd, vm)); in NEONTable()
701 Emit(op | (vd.IsQ() ? NEON_Q : 0) | Rm(vm) | Rn(vn) | Rd(vd)); in NEONTable()
705 void Assembler::tbl(const VRegister& vd, in tbl() argument
708 NEONTable(vd, vn, vm, NEON_TBL_1v); in tbl()
712 void Assembler::tbl(const VRegister& vd, in tbl() argument
720 NEONTable(vd, vn, vm, NEON_TBL_2v); in tbl()
724 void Assembler::tbl(const VRegister& vd, in tbl() argument
735 NEONTable(vd, vn, vm, NEON_TBL_3v); in tbl()
[all …]
Dassembler-a64.h1149 void tbl(const VRegister& vd,
1154 void tbl(const VRegister& vd,
1160 void tbl(const VRegister& vd,
1167 void tbl(const VRegister& vd,
1175 void tbx(const VRegister& vd,
1180 void tbx(const VRegister& vd,
1186 void tbx(const VRegister& vd,
1193 void tbx(const VRegister& vd,
1930 void fmov(const VRegister& vd, double imm);
1933 void fmov(const VRegister& vd, float imm);
[all …]
Dmacro-assembler-a64.h1141 void Fadd(const VRegister& vd, const VRegister& vn, const VRegister& vm) { in Fadd() argument
1144 fadd(vd, vn, vm); in Fadd()
1174 void Fcsel(const VRegister& vd, in Fcsel() argument
1181 fcsel(vd, vn, vm, cond); in Fcsel()
1183 void Fcvt(const VRegister& vd, const VRegister& vn) { in Fcvt() argument
1186 fcvt(vd, vn); in Fcvt()
1188 void Fcvtl(const VRegister& vd, const VRegister& vn) { in Fcvtl() argument
1191 fcvtl(vd, vn); in Fcvtl()
1193 void Fcvtl2(const VRegister& vd, const VRegister& vn) { in Fcvtl2() argument
1196 fcvtl2(vd, vn); in Fcvtl2()
[all …]
Dmacro-assembler-a64.cc834 void MacroAssembler::Movi16bitHelper(const VRegister& vd, uint64_t imm) { in Movi16bitHelper() argument
839 movi(vd.Is64Bits() ? vd.V8B() : vd.V16B(), byte1); in Movi16bitHelper()
841 movi(vd, byte2, LSL, 8); in Movi16bitHelper()
843 movi(vd, byte1); in Movi16bitHelper()
845 mvni(vd, ~byte2 & 0xff, LSL, 8); in Movi16bitHelper()
847 mvni(vd, ~byte1 & 0xff); in Movi16bitHelper()
852 dup(vd, temp); in Movi16bitHelper()
857 void MacroAssembler::Movi32bitHelper(const VRegister& vd, uint64_t imm) { in Movi32bitHelper() argument
874 movi(vd.Is64Bits() ? vd.V1D() : vd.V2D(), ((imm << 32) | imm)); in Movi32bitHelper()
882 movi(vd, bytes[i], LSL, i * 8); in Movi32bitHelper()
[all …]
/external/vixl/doc/
Dsupported-instructions.md1406 void abs(const VRegister& vd,
1414 void add(const VRegister& vd,
1423 void addhn(const VRegister& vd,
1432 void addhn2(const VRegister& vd,
1441 void addp(const VRegister& vd,
1449 void addp(const VRegister& vd,
1458 void addv(const VRegister& vd,
1466 void and_(const VRegister& vd,
1475 void bic(const VRegister& vd,
1484 void bic(const VRegister& vd,
[all …]
/external/clang/test/CodeGen/
Dbuiltins-ppc-vsx.c7 vector double vd = { 3.5, -7.5 }; variable
29 res_vd = vec_div(vd, vd); in test1()
36 res_vd = vec_max(vd, vd); in test1()
46 res_vd = vec_min(vd, vd); in test1()
65 res_vd = vec_perm(vd, vd, vuc); in test1()
74 res_vd = vec_vperm(vd, vd, vuc); in test1()
94 res_vd = vec_vsx_ld(0, &vd); in test1()
114 vec_vsx_st(vd, 0, &res_vd); in test1()
/external/libvorbis/test/
Dwrite_read.c40 vorbis_dsp_state vd; in write_vorbis_data_or_die() local
62 vorbis_analysis_init (&vd,&vi); in write_vorbis_data_or_die()
63 vorbis_block_init (&vd,&vb); in write_vorbis_data_or_die()
72 vorbis_analysis_headerout (&vd,&vc,&header,&header_comm,&header_code); in write_vorbis_data_or_die()
90 float **buffer = vorbis_analysis_buffer (&vd,count); in write_vorbis_data_or_die()
97 vorbis_analysis_wrote (&vd,count); in write_vorbis_data_or_die()
98 vorbis_analysis_wrote (&vd,0); in write_vorbis_data_or_die()
101 while (vorbis_analysis_blockout (&vd,&vb) == 1) { in write_vorbis_data_or_die()
105 while (vorbis_bitrate_flushpacket (&vd,&op)) { in write_vorbis_data_or_die()
123 vorbis_dsp_clear (&vd); in write_vorbis_data_or_die()
[all …]
/external/eigen/bench/
Dbench_norm.cpp224 for (int i=0; i<iters; ++i) NRM(vd); \
240 VectorXd vd = VectorXd::Ones(s) * yd; in check_accuracy() local
243 std::cout << "sqsumNorm\t" << sqsumNorm(vf) << "\t" << sqsumNorm(vd) << "\n"; in check_accuracy()
244 std::cout << "hypotNorm\t" << hypotNorm(vf) << "\t" << hypotNorm(vd) << "\n"; in check_accuracy()
245 std::cout << "blueNorm\t" << blueNorm(vf) << "\t" << blueNorm(vd) << "\n"; in check_accuracy()
246 std::cout << "pblueNorm\t" << pblueNorm(vf) << "\t" << pblueNorm(vd) << "\n"; in check_accuracy()
247 std::cout << "lapackNorm\t" << lapackNorm(vf) << "\t" << lapackNorm(vd) << "\n"; in check_accuracy()
248 std::cout << "twopassNorm\t" << twopassNorm(vf) << "\t" << twopassNorm(vd) << "\n"; in check_accuracy()
249 std::cout << "bl2passNorm\t" << bl2passNorm(vf) << "\t" << bl2passNorm(vd) << "\n"; in check_accuracy()
255 VectorXd vd(s); in check_accuracy_var() local
[all …]
/external/libvorbis/examples/
Dencoder_example.c52 vorbis_dsp_state vd; /* central working state for the packet->PCM decoder */ in main() local
141 vorbis_analysis_init(&vd,&vi); in main()
142 vorbis_block_init(&vd,&vb); in main()
162 vorbis_analysis_headerout(&vd,&vc,&header,&header_comm,&header_code); in main()
189 vorbis_analysis_wrote(&vd,0); in main()
195 float **buffer=vorbis_analysis_buffer(&vd,READ); in main()
206 vorbis_analysis_wrote(&vd,i); in main()
212 while(vorbis_analysis_blockout(&vd,&vb)==1){ in main()
218 while(vorbis_bitrate_flushpacket(&vd,&op)){ in main()
243 vorbis_dsp_clear(&vd); in main()
Ddecoder_example.c53 vorbis_dsp_state vd; /* central working state for the packet->PCM decoder */ in main() local
201 if(vorbis_synthesis_init(&vd,&vi)==0){ /* central decode state */ in main()
202 vorbis_block_init(&vd,&vb); /* local state for most of the decode in main()
231 vorbis_synthesis_blockin(&vd,&vb); in main()
239 while((samples=vorbis_synthesis_pcmout(&vd,&pcm))>0){ in main()
270 fprintf(stderr,"Clipping in frame %ld\n",(long)(vd.sequence)); in main()
275 vorbis_synthesis_read(&vd,bout); /* tell libvorbis how in main()
296 vorbis_dsp_clear(&vd); in main()
/external/clang/lib/Analysis/
DUninitializedValues.cpp36 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->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/libvorbis/lib/
Dsynthesis.c27 vorbis_dsp_state *vd= vb ? vb->vd : 0; in vorbis_synthesis() local
28 private_state *b= vd ? vd->backend_state : 0; in vorbis_synthesis()
29 vorbis_info *vi= vd ? vd->vi : 0; in vorbis_synthesis()
34 if (!vd || !b || !vi || !ci || !opb) { in vorbis_synthesis()
95 vorbis_dsp_state *vd=vb->vd; in vorbis_synthesis_trackonly() local
96 private_state *b=vd->backend_state; in vorbis_synthesis_trackonly()
97 vorbis_info *vi=vd->vi; in vorbis_synthesis_trackonly()
Dbitrate.c65 vorbis_dsp_state *vd=vb->vd; in vorbis_bitrate_managed() local
66 private_state *b=vd->backend_state; in vorbis_bitrate_managed()
76 vorbis_dsp_state *vd=vb->vd; in vorbis_bitrate_addblock() local
77 private_state *b=vd->backend_state; in vorbis_bitrate_addblock()
79 vorbis_info *vi=vd->vi; in vorbis_bitrate_addblock()
230 int vorbis_bitrate_flushpacket(vorbis_dsp_state *vd,ogg_packet *op){ in vorbis_bitrate_flushpacket() argument
231 private_state *b=vd->backend_state; in vorbis_bitrate_flushpacket()
Dvorbisfile.c600 if(vorbis_synthesis_init(&vf->vd,vf->vi+vf->current_link)) in _make_decode_ready()
603 if(vorbis_synthesis_init(&vf->vd,vf->vi)) in _make_decode_ready()
606 vorbis_block_init(&vf->vd,&vf->vb); in _make_decode_ready()
656 vorbis_dsp_clear(&vf->vd); in _decode_clear()
711 int oldsamples=vorbis_synthesis_pcmout(&vf->vd,NULL); in _fetch_and_process_packet()
716 vorbis_synthesis_blockin(&vf->vd,&vf->vb); in _fetch_and_process_packet()
717 vf->samptrack+=vorbis_synthesis_pcmout(&vf->vd,NULL)-oldsamples; in _fetch_and_process_packet()
746 samples=vorbis_synthesis_pcmout(&vf->vd,NULL); in _fetch_and_process_packet()
953 vorbis_dsp_clear(&vf->vd); in ov_clear()
1236 vorbis_synthesis_restart(&vf->vd); in ov_raw_seek()
[all …]
/external/eigen/test/
Dmixingtypes.cpp44 Vec_d vd = vf.template cast<double>(); in mixingtypes() local
56 VERIFY_RAISES_ASSERT(vf=vd); in mixingtypes()
57 VERIFY_RAISES_ASSERT(vf+=vd); in mixingtypes()
64 VERIFY_IS_APPROX(scd * vd, scd * vd.template cast<complex<double> >()); in mixingtypes()
69 VERIFY_RAISES_ASSERT(vd.dot(vf)); in mixingtypes()
118 VERIFY_IS_APPROX(sd*mcd*vd, sd*mcd*vd.template cast<CD>().eval()); in mixingtypes()
119 VERIFY_IS_APPROX(scd*mcd*vd,scd*mcd*vd.template cast<CD>().eval()); in mixingtypes()
123 VERIFY_IS_APPROX(sd*vd.adjoint()*mcd, sd*vd.adjoint().template cast<CD>().eval()*mcd); in mixingtypes()
124 VERIFY_IS_APPROX(scd*vd.adjoint()*mcd, scd*vd.adjoint().template cast<CD>().eval()*mcd); in mixingtypes()
/external/clang/test/PCH/
Dcxx1y-variable-templates.cpp60 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/clang/test/SemaCXX/
Ddestructor.cpp245 VD vd; use(vd); in nowarnstack() local
274 VD* vd = new VD[4]; in nowarnarray() local
275 delete[] vd; in nowarnarray()
305 VD* vd = new VD(); in nowarn0() local
306 delete vd; in nowarn0()
343 simple_ptr<VD> vd(new VD()); in nowarn1() local
344 use(*vd); in nowarn1()
/external/clang/test/Sema/
Dext_vector_casts.c100 double2 vd = d; in splats() local
122 vd = l + vd; in splats()
123 vd = vd + t; in splats()
/external/llvm/test/CodeGen/PowerPC/
Dvsx-minmax.ll6 @vd = global <2 x double> <double 3.500000e+00, double -7.500000e+00>, align 16
26 %3 = load <2 x double>, <2 x double>* @vd, align 16
40 %11 = load <2 x double>, <2 x double>* @vd, align 16
82 ;vector double vd = { 3.5, -7.5 };
91 ; vd1 = vec_max(vd, vd);
94 ; vd2 = vec_min(vd, vd);
/external/eigen/test/eigen2/
Deigen2_mixingtypes.cpp38 Vec_d vd(size,1); in mixingtypes() local
45 VERIFY_RAISES_ASSERT(vf=vd); in mixingtypes()
46 VERIFY_RAISES_ASSERT(vf+=vd); in mixingtypes()
65 VERIFY_RAISES_ASSERT(vd.eigen2_dot(vf)); in mixingtypes()
/external/pdfium/core/src/fxcodec/jbig2/
DJBig2_Segment.cpp28 m_Result.vd = NULL; in init()
35 if(m_Result.vd) { in clean()
50 m_pModule->JBig2_Free(m_Result.vd); in clean()

1234