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

1 2 3

  /frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/
VectorDrawable01.java 64 VectorDrawable vd = (VectorDrawable) button.getBackground(); local
65 vd.setAlpha((i + 1) * (0xFF / (icon.length + 1)));
  /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...]
bitrate.c 65 vorbis_dsp_state *vd=vb->vd; local
66 private_state *b=vd->backend_state;
76 vorbis_dsp_state *vd=vb->vd; local
77 private_state *b=vd->backend_state;
79 vorbis_info *vi=vd->vi;
230 int vorbis_bitrate_flushpacket(vorbis_dsp_state *vd,ogg_packet *op){
231 private_state *b=vd->backend_state;
floor0.c 114 vorbis_dsp_state *vd=vb->vd; local
115 vorbis_info *vi=vd->vi;
144 static vorbis_look_floor *floor0_look(vorbis_dsp_state *vd,
169 codec_setup_info *ci=vb->vd->vi->codec_setup;
mapping0.c 239 vorbis_dsp_state *vd=vb->vd; local
240 vorbis_info *vi=vd->vi;
242 private_state *b=vb->vd->backend_state;
707 vorbis_dsp_state *vd=vb->vd; local
708 vorbis_info *vi=vd->vi;
710 private_state *b=vd->backend_state;
psytune.c 382 vorbis_dsp_state vd; local
383 memset(&vd,0,sizeof(vd));
384 vd.vi=&vi;
385 vb.vd=&vd;
  /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 );
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_cbrtl.c 114 #define vd ((long double)vd2 + vd1) macro
116 t = dt + vd - 0x1.0p32;
  /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*>;
  /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/libvorbis/examples/
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);
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...]
  /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/tremolo/Tremolo/
ivorbisfile.h 94 vorbis_dsp_state *vd; /* central working state for the packet->PCM decoder */ member in struct:OggVorbis_File
  /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/libvorbis/include/vorbis/
vorbisfile.h 141 vorbis_dsp_state vd; /* central working state for the packet->PCM decoder */ member in struct:OggVorbis_File
codec.h 102 vorbis_dsp_state *vd; /* For read-only access of configuration */ member in struct:vorbis_block
199 extern int vorbis_bitrate_flushpacket(vorbis_dsp_state *vd,
  /external/pdfium/core/src/fxcodec/jbig2/
JBig2_Segment.h 65 FX_LPVOID vd; member in union:CJBig2_Segment::__anon32328
  /external/chromium_org/ui/gfx/
transform_util.cc 21 double vd[3] = {SkMScalarToDouble(v[0]), SkMScalarToDouble(v[1]), local
24 std::sqrt(vd[0] * vd[0] + vd[1] * vd[1] + vd[2] * vd[2]));
  /external/clang/test/Sema/
ext_vector_casts.c 100 double2 vd = d; local
122 vd = l + vd;
123 vd = vd + t;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/arm/neon/
mbloopfilter_neon.c 468 unsigned char *vs, *vd; local
608 vd = v - 4;
609 vst1_u8(vd, vget_high_u8(q3));
610 vd += pitch;
611 vst1_u8(vd, vget_high_u8(q4));
612 vd += pitch;
613 vst1_u8(vd, vget_high_u8(q5));
614 vd += pitch;
615 vst1_u8(vd, vget_high_u8(q6));
616 vd += pitch
    [all...]
  /external/clang/lib/Analysis/
UninitializedValues.cpp 35 static bool isTrackedVar(const VarDecl *vd, const DeclContext *dc) {
36 if (vd->isLocalVarDecl() && !vd->hasGlobalStorage() &&
37 !vd->isExceptionVariable() && !vd->isInitCapture() &&
38 vd->getDeclContext() == dc) {
39 QualType ty = vd->getType();
71 const VarDecl *vd = *I; local
72 if (isTrackedVar(vd, &dc))
73 map[vd] = count++
267 const VarDecl *vd; member in class:__anon21599::FindVarResult
636 const VarDecl *vd = I.getVariable(); local
    [all...]
  /external/clang/test/SemaCXX/
destructor.cpp 205 struct VD: VB {};
239 VD vd; use(vd); local
268 VD* vd = new VD[4]; local
269 delete[] vd;
295 VB* vb = new VD();
299 VD* vd = new VD() local
    [all...]
  /ndk/tests/build/b9193874-neon/jni/
b9193874-neon.c 254 int16x8_t vd = vshlq_n_s16(vv, 1); local
255 int32x4_t vrl = vqdmlal_lane_s16(vshll_n_s16(vget_low_s16(vv), 1), vget_low_s16(vd), cf16, 0);
256 int32x4_t vrh = vqdmlal_lane_s16(vshll_n_s16(vget_high_s16(vv), 1), vget_high_s16(vd), cf16, 0);
302 int16x8_t vd = vshlq_n_s16(vv, 1); local
303 int32x4_t vrl = vqdmlal_lane_s16(vshll_n_s16(vget_low_s16(vv), 1), vget_low_s16(vd), cf16, 0);
304 int32x4_t vrh = vqdmlal_lane_s16(vshll_n_s16(vget_high_s16(vv), 1), vget_high_s16(vd), cf16, 0);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
NodeProxy.java 278 ViewElementDescriptor vd = getFqcnViewDescriptor(viewFqcn); local
279 if (vd == null) {
287 uiNew = mNode.appendNewUiChild(vd);
292 uiNew = mNode.appendNewUiChild(vd);
294 uiNew = mNode.insertNewUiChild(index, vd);

Completed in 3403 milliseconds

1 2 3