HomeSort by relevance Sort by last modified time
    Searched refs:vd (Results 1 - 25 of 135) sorted by null

1 2 3 4 5 6

  /external/tremolo/Tremolo/
dsp.c 208 int vorbis_dsp_synthesis(vorbis_dsp_state *vd,ogg_packet *op,int decodep){
209 vorbis_info *vi=vd->vi;
213 oggpack_readinit(&vd->opb,op->packet);
216 if(oggpack_read(&vd->opb,1)!=0){
222 mode=oggpack_read(&vd->opb,ilog(ci->modes));
226 vd->lW=vd->W;
227 vd->W=ci->mode_param[mode].blockflag;
229 mdct_shift_right(ci->blocksizes[vd->lW],vd->work[i],vd->mdctright[i])
    [all...]
mapping0.c 125 int mapping_inverse(vorbis_dsp_state *vd,vorbis_info_mapping *info){
126 vorbis_info *vi=vd->vi;
130 long n=ci->blocksizes[vd->W];
154 floormemo[i]=floor1_inverse1(vd,ci->floor_param[floorno],floormemo[i]);
159 floormemo[i]=floor0_inverse1(vd,ci->floor_param[floorno],floormemo[i]);
166 memset(vd->work[i],0,sizeof(*vd->work[i])*n/2);
187 pcmbundle[ch_in_bundle++]=vd->work[j];
191 res_inverse(vd,ci->residue_param+info->submaplist[i].residue,
200 ogg_int32_t *pcmM=vd->work[info->coupling[i].mag]
    [all...]
  /external/clang/test/CodeGen/
builtins-ppc-vsx.c 8 vector double vd = { 3.5, -7.5 }; variable
32 res_vd = vec_add(vd, vd);
36 res_vd = vec_and(vbll, vd);
42 res_vd = vec_and(vd, vbll);
48 res_vd = vec_and(vd, vd);
58 res_vd = vec_andc(vbll, vd);
72 res_vd = vec_andc(vd, vbll);
85 res_vd = vec_andc(vd, vd)
    [all...]
builtins-systemz-zvector-error.c 20 volatile vector double vd; variable
97 vd = vec_permi(vd, vd, idx); // expected-error {{no matching function}}
100 vd = vec_permi(vd, vd, -1); // expected-error {{no matching function}}
103 vd = vec_permi(vd, vd, 4); // expected-error {{no matching function}
    [all...]
builtins-systemz-vector.c 23 volatile vec_double vd; variable
569 vsl = __builtin_s390_vfcedbs(vd, vd, &cc);
571 vsl = __builtin_s390_vfchdbs(vd, vd, &cc);
573 vsl = __builtin_s390_vfchedbs(vd, vd, &cc)
    [all...]
builtins-systemz-zvector.c 20 volatile vector double vd; variable
100 d = vec_extract(vd, idx);
127 vd = vec_insert(d, vd, idx);
146 vd = vec_promote(d, idx);
165 vd = vec_insert_and_zero(cptrd);
192 vd = vec_perm(vd, vd, vuc);
219 vd = vec_permi(vd, vd, 0)
    [all...]
builtins-systemz-vector-error.c 23 volatile vec_double vd; variable
164 __builtin_s390_vftcidb(vd, -1, &cc); // expected-error {{argument should be a value from 0 to 4095}}
165 __builtin_s390_vftcidb(vd, 4096, &cc); // expected-error {{argument should be a value from 0 to 4095}}
166 __builtin_s390_vftcidb(vd, len, &cc); // expected-error {{must be a constant integer}}
168 __builtin_s390_vfidb(vd, -1, 0); // expected-error {{argument should be a value from 0 to 15}}
169 __builtin_s390_vfidb(vd, 16, 0); // expected-error {{argument should be a value from 0 to 15}}
170 __builtin_s390_vfidb(vd, len, 0); // expected-error {{must be a constant integer}}
171 __builtin_s390_vfidb(vd, 0, -1); // expected-error {{argument should be a value from 0 to 15}}
172 __builtin_s390_vfidb(vd, 0, 16); // expected-error {{argument should be a value from 0 to 15}}
173 __builtin_s390_vfidb(vd, 0, len); // expected-error {{must be a constant integer}
    [all...]
  /external/vixl/src/vixl/a64/
assembler-a64.cc 728 void Assembler::NEONTable(const VRegister& vd,
732 VIXL_ASSERT(vd.Is16B() || vd.Is8B());
734 VIXL_ASSERT(AreSameFormat(vd, vm));
735 Emit(op | (vd.IsQ() ? NEON_Q : 0) | Rm(vm) | Rn(vn) | Rd(vd));
739 void Assembler::tbl(const VRegister& vd,
742 NEONTable(vd, vn, vm, NEON_TBL_1v);
746 void Assembler::tbl(const VRegister& vd,
754 NEONTable(vd, vn, vm, NEON_TBL_2v)
    [all...]
assembler-a64.h     [all...]
  /external/pdfium/core/src/fxcodec/jbig2/
JBig2_Segment.cpp 23 m_Result.vd = NULL;
42 FX_Free(m_Result.vd);
  /external/libvorbis/examples/
encoder_example.c 52 vorbis_dsp_state vd; /* central working state for the packet->PCM decoder */ local
141 vorbis_analysis_init(&vd,&vi);
142 vorbis_block_init(&vd,&vb);
162 vorbis_analysis_headerout(&vd,&vc,&header,&header_comm,&header_code);
189 vorbis_analysis_wrote(&vd,0);
195 float **buffer=vorbis_analysis_buffer(&vd,READ);
206 vorbis_analysis_wrote(&vd,i);
212 while(vorbis_analysis_blockout(&vd,&vb)==1){
218 while(vorbis_bitrate_flushpacket(&vd,&op)){
243 vorbis_dsp_clear(&vd);
    [all...]
decoder_example.c 53 vorbis_dsp_state vd; /* central working state for the packet->PCM decoder */ local
201 if(vorbis_synthesis_init(&vd,&vi)==0){ /* central decode state */
202 vorbis_block_init(&vd,&vb); /* local state for most of the decode
206 for vd here */
231 vorbis_synthesis_blockin(&vd,&vb);
239 while((samples=vorbis_synthesis_pcmout(&vd,&pcm))>0){
270 fprintf(stderr,"Clipping in frame %ld\n",(long)(vd.sequence));
275 vorbis_synthesis_read(&vd,bout); /* tell libvorbis how
296 vorbis_dsp_clear(&vd);
  /device/google/dragon/audio/hal/
dictionary.h 90 void dictionary_del(dictionary * vd);
135 int dictionary_set(dictionary * vd, const char * key, const char * val);
  /external/libvorbis/lib/
synthesis.c 27 vorbis_dsp_state *vd= vb ? vb->vd : 0; local
28 private_state *b= vd ? vd->backend_state : 0;
29 vorbis_info *vi= vd ? vd->vi : 0;
34 if (!vd || !b || !vi || !ci || !opb) {
95 vorbis_dsp_state *vd=vb->vd; local
96 private_state *b=vd->backend_state
    [all...]
  /external/libvorbis/test/
write_read.c 40 vorbis_dsp_state vd; local
62 vorbis_analysis_init (&vd,&vi);
63 vorbis_block_init (&vd,&vb);
72 vorbis_analysis_headerout (&vd,&vc,&header,&header_comm,&header_code);
90 float **buffer = vorbis_analysis_buffer (&vd,count);
97 vorbis_analysis_wrote (&vd,count);
98 vorbis_analysis_wrote (&vd,0);
101 while (vorbis_analysis_blockout (&vd,&vb) == 1) {
105 while (vorbis_bitrate_flushpacket (&vd,&op)) {
123 vorbis_dsp_clear (&vd);
142 vorbis_dsp_state vd; local
    [all...]
  /external/eigen/bench/
bench_norm.cpp 224 for (int i=0; i<iters; ++i) NRM(vd); \
240 VectorXd vd = VectorXd::Ones(s) * yd; local
243 std::cout << "sqsumNorm\t" << sqsumNorm(vf) << "\t" << sqsumNorm(vd) << "\n";
244 std::cout << "hypotNorm\t" << hypotNorm(vf) << "\t" << hypotNorm(vd) << "\n";
245 std::cout << "blueNorm\t" << blueNorm(vf) << "\t" << blueNorm(vd) << "\n";
246 std::cout << "pblueNorm\t" << pblueNorm(vf) << "\t" << pblueNorm(vd) << "\n";
247 std::cout << "lapackNorm\t" << lapackNorm(vf) << "\t" << lapackNorm(vd) << "\n";
248 std::cout << "twopassNorm\t" << twopassNorm(vf) << "\t" << twopassNorm(vd) << "\n";
249 std::cout << "bl2passNorm\t" << bl2passNorm(vf) << "\t" << bl2passNorm(vd) << "\n";
255 VectorXd vd(s)
320 VectorXd vd = VectorXd::Random(1024*1024*32) * y; local
335 VectorXd vd = VectorXd::Random(512) * y; local
    [all...]
  /external/eigen/test/
mixingtypes.cpp 44 Vec_d vd = vf.template cast<double>(); local
56 VERIFY_RAISES_ASSERT(vf=vd);
57 VERIFY_RAISES_ASSERT(vf+=vd);
64 VERIFY_IS_APPROX(scd * vd, scd * vd.template cast<complex<double> >());
69 VERIFY_RAISES_ASSERT(vd.dot(vf));
78 // vd.asDiagonal() * mf; // does not even compile
118 VERIFY_IS_APPROX(sd*mcd*vd, sd*mcd*vd.template cast<CD>().eval());
119 VERIFY_IS_APPROX(scd*mcd*vd,scd*mcd*vd.template cast<CD>().eval())
    [all...]
  /external/clang/test/PCH/
cxx1y-variable-templates.cpp 60 template<typename T> constexpr T vd = T(10); member in namespace:spec
61 template<typename T> T* vd<T*> = new T(); member in namespace:spec
74 template<typename T> T vd = T(10); member in namespace:spec_join1
75 template<typename T> extern T* vd<T*>;
110 template<typename T> extern T vd;
111 template<typename T> T* vd<T*> = new T(); member in namespace:spec_join1
158 char* intpd = vd<char*>;
168 int* intpb = vd<int*>;
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
export-class.exp 83 { readelf -V export-class.vd } \
  /external/eigen/test/eigen2/
eigen2_mixingtypes.cpp 38 Vec_d vd(size,1);
45 VERIFY_RAISES_ASSERT(vf=vd);
46 VERIFY_RAISES_ASSERT(vf+=vd);
65 VERIFY_RAISES_ASSERT(vd.eigen2_dot(vf));
  /external/clang/test/Sema/
ext_vector_casts.c 100 double2 vd = d; local
122 vd = l + vd;
123 vd = vd + t;
  /external/libvpx/libvpx/vp9/common/
vp9_mfqe.c 74 int uv_stride, uint8_t *ud, uint8_t *vd,
80 vp9_filter_by_weight8x8(v, uv_stride, vd, uvd_stride, weight);
84 vp9_filter_by_weight16x16(v, uv_stride, vd, uvd_stride, weight);
88 filter_by_weight32x32(v, uv_stride, vd, uvd_stride, weight);
135 uint8_t *vd, int yd_stride, int uvd_stride,
140 copy_mem8x8(v, uv_stride, vd, uvd_stride);
144 copy_mem16x16(v, uv_stride, vd, uvd_stride);
148 copy_mem32x32(v, uv_stride, vd, uvd_stride);
166 uint8_t *yd, uint8_t *ud, uint8_t *vd, int yd_stride,
194 apply_ifactor(y, y_stride, yd, yd_stride, u, v, uv_stride, ud, vd,
383 uint8_t *vd = dest->v_buffer + row_offset_uv * uvd_stride + local
    [all...]
  /external/clang/lib/Analysis/
UninitializedValues.cpp 36 static bool isTrackedVar(const VarDecl *vd, const DeclContext *dc) {
37 if (vd->isLocalVarDecl() && !vd->hasGlobalStorage() &&
38 !vd->isExceptionVariable() && !vd->isInitCapture() &&
39 !vd->isImplicit() && vd->getDeclContext() == dc) {
40 QualType ty = vd->getType();
72 const VarDecl *vd = *I; local
73 if (isTrackedVar(vd, &dc)
268 const VarDecl *vd; member in class:__anon7197::FindVarResult
695 const VarDecl *vd = I.getVariable(); local
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/env/
environment.hpp 111 rt_env_detail::variable_data* vd = rt_env_detail::find_var_record( var_name ); local
113 return environment::variable<T>( !vd ? rt_env_detail::init_new_var<T>( var_name, nfp::no_params ) : *vd );
122 rt_env_detail::variable_data* vd = rt_env_detail::find_var_record( var_name ); local
124 return environment::variable<T>( !vd ? rt_env_detail::init_new_var<T>( var_name, m ) : *vd );
  /external/clang/test/SemaCXX/
warn-weak-vtables.cpp 56 VeryDerived vd; local

Completed in 1020 milliseconds

1 2 3 4 5 6