Home
last modified time | relevance | path

Searched refs:vi (Results 1 – 25 of 292) sorted by relevance

12345678910>>...12

/external/aac/libFDK/src/
Dfft.cpp337 #define SUMDIFF_EIGTH(x, y, ix, iy, vr, vi, ur, ui) \ argument
339 vi = (x[ 8 + ix]>>1) + (x[24 + ix]>>1); /* Re C + Re D */ \
342 y[ 0 + iy] = vr + vi; /* Re A' = ReA + ReB +ReC + ReD */ \
343 y[ 4 + iy] = vr - vi; /* Re C' = -(ReC+ReD) + (ReA+ReB) */ \
347 vi = vi - x[24 + ix]; /* Re C - Re D */ \
352 y[ 3 + iy] = ur - vi; /* Im B'= -Re C + Re D + Im A - Im B */ \
353 y[ 7 + iy] = vi + ur; /* Im D'= Re C - Re D + Im A - Im B */
360 FIXP_DBL vr, vi, ur, ui; in fft_16() local
363 SUMDIFF_EIGTH(x, y, 0, 0, vr, vi, ur, ui); in fft_16()
364 SUMDIFF_EIGTH(x, y, 4, 8, vr, vi, ur, ui); in fft_16()
[all …]
Dfft_rad2.cpp174 FIXP_DBL vr,vi,ur,ui; in dit_fft() local
177 vi = x[t2+1]>>1; in dit_fft()
184 x[t1+1] = ui+vi; in dit_fft()
187 x[t2+1] = ui-vi; in dit_fft()
194 vi = x[t2]>>1; in dit_fft()
200 x[t1+1] = ui-vi; in dit_fft()
203 x[t2+1] = ui+vi; in dit_fft()
216 FIXP_DBL vr,vi,ur,ui; in dit_fft() local
218 cplxMultDiv2(&vi, &vr, x[t2+1], x[t2], cs); in dit_fft()
224 x[t1+1] = ui+vi; in dit_fft()
[all …]
/external/aac/libFDK/src/arm/
Dfft_rad2_arm.cpp172 FIXP_DBL vr,vi,ur,ui; in dit_fft() local
175 vi = xt2[1]>>1; in dit_fft()
182 xt1[1] = ui+vi; in dit_fft()
185 xt2[1] = ui-vi; in dit_fft()
192 vi = xt2[0]>>1; in dit_fft()
198 xt1[1] = ui-vi; in dit_fft()
201 xt2[1] = ui+vi; in dit_fft()
218 FIXP_DBL vr,vi,ur,ui; in dit_fft() local
220 cplxMultDiv2(&vi, &vr, xt2[1], xt2[0], cs); in dit_fft()
226 xt1[1] = ui+vi; in dit_fft()
[all …]
/external/tremolo/Tremolo/
Dtreminfo.c124 int vorbis_info_blocksize(vorbis_info *vi,int zo){ in vorbis_info_blocksize() argument
125 codec_setup_info *ci = (codec_setup_info *)vi->codec_setup; in vorbis_info_blocksize()
130 void vorbis_info_init(vorbis_info *vi){ in vorbis_info_init() argument
131 memset(vi,0,sizeof(*vi)); in vorbis_info_init()
132 vi->codec_setup=(codec_setup_info *)_ogg_calloc(1,sizeof(codec_setup_info)); in vorbis_info_init()
135 void vorbis_info_clear(vorbis_info *vi){ in vorbis_info_clear() argument
136 codec_setup_info *ci=(codec_setup_info *)vi->codec_setup; in vorbis_info_clear()
174 memset(vi,0,sizeof(*vi)); in vorbis_info_clear()
179 int _vorbis_unpack_info(vorbis_info *vi,oggpack_buffer *opb){ in _vorbis_unpack_info() argument
180 codec_setup_info *ci=(codec_setup_info *)vi->codec_setup; in _vorbis_unpack_info()
[all …]
Ddsp.c49 vorbis_info *vi=v->vi; in vorbis_dsp_restart() local
52 if(!vi)return -1; in vorbis_dsp_restart()
53 ci=vi->codec_setup; in vorbis_dsp_restart()
66 int vorbis_dsp_init(vorbis_dsp_state *v,vorbis_info *vi){ in vorbis_dsp_init() argument
69 codec_setup_info *ci=(codec_setup_info *)vi->codec_setup; in vorbis_dsp_init()
71 v->vi=vi; in vorbis_dsp_init()
73 v->work=(ogg_int32_t **)_ogg_malloc(vi->channels*sizeof(*v->work)); in vorbis_dsp_init()
74 v->mdctright=(ogg_int32_t **)_ogg_malloc(vi->channels*sizeof(*v->mdctright)); in vorbis_dsp_init()
75 for(i=0;i<vi->channels;i++){ in vorbis_dsp_init()
89 vorbis_dsp_state *vorbis_dsp_create(vorbis_info *vi){ in vorbis_dsp_create() argument
[all …]
Dmapping0.c70 int mapping_info_unpack(vorbis_info_mapping *info,vorbis_info *vi, in mapping_info_unpack() argument
73 codec_setup_info *ci=(codec_setup_info *)vi->codec_setup; in mapping_info_unpack()
87 int testM=info->coupling[i].mag=(unsigned char)(oggpack_read(opb,ilog(vi->channels))); in mapping_info_unpack()
88 int testA=info->coupling[i].ang=(unsigned char)(oggpack_read(opb,ilog(vi->channels))); in mapping_info_unpack()
93 testM>=vi->channels || in mapping_info_unpack()
94 testA>=vi->channels) goto err_out; in mapping_info_unpack()
102 info->chmuxlist=_ogg_malloc(sizeof(*info->chmuxlist)*vi->channels); in mapping_info_unpack()
103 for(i=0;i<vi->channels;i++){ in mapping_info_unpack()
126 vorbis_info *vi=vd->vi; in mapping_inverse() local
127 codec_setup_info *ci=(codec_setup_info *)vi->codec_setup; in mapping_inverse()
[all …]
Dvorbisfile.c269 vorbis_info_clear(&vf->vi); in _decode_clear()
282 vorbis_info *vi, in _fetch_headers() argument
305 vorbis_info_init(vi); in _fetch_headers()
318 if((ret=vorbis_dsp_headerin(vi,vc,&op))){ in _fetch_headers()
338 vorbis_info_clear(vi); in _fetch_headers()
355 return _fetch_headers(vf,&vf->vi,&vf->vc,&vf->current_serialno,NULL); in _set_link_number()
398 if(_fetch_headers(vf,&vf->vi,&vf->vc,NULL,NULL)<0){ in _prefetch_all_offsets()
432 long thisblock=vorbis_packet_blocksize(&vf->vi,&op); in _prefetch_all_offsets()
464 vorbis_info_clear(&vf->vi); in _prefetch_all_offsets()
491 vf->vd=vorbis_dsp_create(&vf->vi); in _make_decode_ready()
[all …]
Dcodec_internal.h59 vorbis_info *vi; member
149 vorbis_info *vi,oggpack_buffer *opb);
218 extern int vorbis_dsp_init(vorbis_dsp_state *v, vorbis_info *vi);
220 extern vorbis_dsp_state *vorbis_dsp_create(vorbis_info *vi);
222 extern int vorbis_dsp_headerin(vorbis_info *vi,vorbis_comment *vc,
231 extern long vorbis_packet_blocksize(vorbis_info *vi,ogg_packet *op);
Divorbiscodec.h90 extern void vorbis_info_init(vorbis_info *vi);
91 extern void vorbis_info_clear(vorbis_info *vi);
92 extern int vorbis_info_blocksize(vorbis_info *vi,int zo);
/external/clang/test/CodeGen/
Dbuiltins-ppc-altivec.c11 vector int vi = { -1, 2, -3, 4 }; variable
53 vi = vec_abs(vi); // CHECK: sub <4 x i32> zeroinitializer in test1()
65 vi = vec_abss(vi); // CHECK: @llvm.ppc.altivec.vsubsws in test1()
81 res_vi = vec_add(vi, vi); // CHECK: add <4 x i32> in test1()
82 res_vi = vec_add(vbi, vi); // CHECK: add <4 x i32> in test1()
83 res_vi = vec_add(vi, vbi); // CHECK: add <4 x i32> in test1()
100 res_vi = vec_vadduwm(vi, vi); // CHECK: add <4 x i32> in test1()
101 res_vi = vec_vadduwm(vbi, vi); // CHECK: add <4 x i32> in test1()
102 res_vi = vec_vadduwm(vi, vbi); // CHECK: add <4 x i32> in test1()
125 res_vi = vec_adds(vi, vi); // CHECK: @llvm.ppc.altivec.vaddsws in test1()
[all …]
Daltivec.c19 vector int vi; in test2() local
21 vi = (vector int)(1); // CHECK: <i32 1, i32 1, i32 1, i32 1> in test2()
23 vi = (vector int)(1, 2, 3, 4); // CHECK: <i32 1, i32 2, i32 3, i32 4> in test2()
24 vi = (vector int)(1, 2, 3, 4, 5); // CHECK: <i32 1, i32 2, i32 3, i32 4> in test2()
26 vi = (vector int){1}; // CHECK: <i32 1, i32 0, i32 0, i32 0> in test2()
27 vi = (vector int){1, 2}; // CHECK: <i32 1, i32 2, i32 0, i32 0> in test2()
28 vi = (vector int){1, 2, 3, 4}; // CHECK: <i32 1, i32 2, i32 3, i32 4> in test2()
34 vector int vi; in test3() local
35vi++; // CHECK: add <4 x i32> {{.*}} <i32 1, i32 1, i32 1, i32 … in test3()
/external/clang/test/SemaCXX/
Daltivec.cpp14 vector int vi; in test_vec_step() local
29 int res10[vec_step(vi) == 4 ? 1 : -1]; in test_vec_step()
57 vector int vi; in test2() local
58 ++vi; in test2()
59 vi++; in test2()
60 --vi; in test2()
61 vi--; in test2()
65 ++vi=vi; in test2()
66 (++vi)[1]=1; in test2()
67 template_f(vi); in test2()
/external/clang/test/Sema/
Daltivec-init.c13 vector int vi; in foo() local
14 vi = (vector int)(1); in foo()
15vi = (vector int)(1, 2); // expected-error {{number of elements must be either one or mat… in foo()
16 vi = (vector int)(1, 2, 3, 4); in foo()
17 vi = (vector int)(1, 2, 3, 4, 5); // expected-warning {{excess elements in vector initializer}} in foo()
18 vi = (vector int){1}; in foo()
19 vi = (vector int){1, 2}; in foo()
20 vi = (vector int){1, 2, 3, 4, 5}; // expected-warning {{excess elements in vector initializer}} in foo()
/external/opencv/ml/src/
Dmltree.cpp144 int vi, i; in CV_IMPLEMENT_QSORT_EX() local
243 for( vi = 0; vi < var_count; vi++ ) in CV_IMPLEMENT_QSORT_EX()
245 var_type->data.i[vi] = var_type0->data.ptr[vi] == CV_VAR_CATEGORICAL ? in CV_IMPLEMENT_QSORT_EX()
306 for( vi = 0; vi <= var_count; vi++ ) in CV_IMPLEMENT_QSORT_EX()
315 if( vi < var_count ) // analyze i-th input variable in CV_IMPLEMENT_QSORT_EX()
317 int vi0 = vidx ? vidx[vi] : vi; in CV_IMPLEMENT_QSORT_EX()
318 ci = get_var_type(vi); in CV_IMPLEMENT_QSORT_EX()
338 if( vi < var_count && ci >= 0 || in CV_IMPLEMENT_QSORT_EX()
339 vi == var_count && is_classifier ) // process categorical variable or response in CV_IMPLEMENT_QSORT_EX()
342 int* c_map, *dst = get_cat_var_data( data_root, vi ); in CV_IMPLEMENT_QSORT_EX()
[all …]
Dmlrtrees.cpp98 int vi; in find_best_split() local
115 for( vi = 0; vi < var_count; vi++ ) in find_best_split()
124 for( vi = 0; vi < data->var_count; vi++ ) in find_best_split()
126 int ci = data->var_type->data.i[vi]; in find_best_split()
127 if( node->num_valid[vi] <= 1 in find_best_split()
128 || (active_var_mask && !active_var_mask->data.ptr[vi]) ) in find_best_split()
134 split = find_split_cat_class( node, vi ); in find_best_split()
136 split = find_split_ord_class( node, vi ); in find_best_split()
141 split = find_split_cat_reg( node, vi ); in find_best_split()
143 split = find_split_ord_reg( node, vi ); in find_best_split()
Dmlboost.cpp186 int i, n = node->sample_count, vi = node->split->var_idx; in calc_node_dir() local
191 if( data->get_var_type(vi) >= 0 ) // split on categorical var in calc_node_dir()
193 const int* cat_labels = data->get_cat_var_data( node, vi ); in calc_node_dir()
211 const CvPair32s32f* sorted = data->get_ord_var_data(node,vi); in calc_node_dir()
213 int n1 = node->get_num_valid(vi); in calc_node_dir()
244 CvBoostTree::find_split_ord_class( CvDTreeNode* node, int vi ) in find_split_ord_class() argument
247 const CvPair32s32f* sorted = data->get_ord_var_data(node, vi); in find_split_ord_class()
251 int n1 = node->get_num_valid(vi); in find_split_ord_class()
321 return best_i >= 0 ? data->new_split_ord( vi, in find_split_ord_class()
331 CvBoostTree::find_split_cat_class( CvDTreeNode* node, int vi ) in CV_IMPLEMENT_QSORT_EX()
[all …]
/external/aac/libFDK/include/
Dfft.h199 FIXP_DBL vr, vi, ur, ui; in fft_8() local
204 vi = y[9]; in fft_8()
206 x[1] = ui + (vi>>1); in fft_8()
208 x[9] = ui - (vi>>1); in fft_8()
212 vi = y[12]; in fft_8()
215 x[5] = ui - (vi>>1); in fft_8()
217 x[13] = ui + (vi>>1); in fft_8()
222 vi = fMultDiv2(ui-ur,W_PiFOURTH); in fft_8()
226 x[3] = (ui>>1) + vi; in fft_8()
228 x[11] = (ui>>1) - vi; in fft_8()
[all …]
/external/skia/src/gpu/unix/
DSkNativeGLContext_unix.cpp111 XVisualInfo *vi = glXGetVisualFromFBConfig(fDisplay, fbc[i]); in createGLContext() local
112 if (vi) { in createGLContext()
126 XFree(vi); in createGLContext()
135 XVisualInfo *vi = glXGetVisualFromFBConfig(fDisplay, bestFbc); in createGLContext() local
138 fPixmap = XCreatePixmap(fDisplay, RootWindow(fDisplay, vi->screen), 10, 10, vi->depth); in createGLContext()
146 fGlxPixmap = glXCreateGLXPixmap(fDisplay, vi, fPixmap); in createGLContext()
149 XFree(vi); in createGLContext()
/external/icu4c/data/coll/
Dvi.txt6 // * Source File:<path>/common/collation/vi.xml
10 * ICU <specials> source: <path>/xml/collation/vi.xml
12 vi{
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
Dp5.cpp87 volatile int vi; variable
92 …S0<vi> s0v; // expected-error{{reference binding of non-type template parameter of type 'int &' to… in test()
97 …S1<vi> s1v; // expected-error{{reference binding of non-type template parameter of type 'const int… in test()
102 S2<vi> s2v; in test()
107 S3<vi> s3v; in test()
/external/icu4c/data/rbnf/
Dvi.txt6 // * Source File:<path>/common/rbnf/vi.xml
10 * ICU <specials> source: <path>/xml/rbnf/vi.xml
12 vi{
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
Dp3.cpp17 void test_f1(int i, const int ci, volatile int vi) { in test_f1() argument
20 A<volatile int> a2 = f1(vi); in test_f1()
47 void test_f2(int i, const int ci, volatile int vi) { in test_f2() argument
50 A<volatile int> a2 = f2(vi); in test_f2()
/external/llvm/lib/CodeGen/
DProcessImplicitDefs.cpp127 LiveVariables::VarInfo& vi = LV->getVarInfo(MO.getReg()); in runOnMachineFunction() local
128 vi.removeKill(MI); in runOnMachineFunction()
161 LiveVariables::VarInfo& vi = LV->getVarInfo(Reg); in runOnMachineFunction() local
162 vi.removeKill(MI); in runOnMachineFunction()
273 LiveVariables::VarInfo& vi = LV->getVarInfo(Reg); in runOnMachineFunction() local
274 vi.removeKill(RMI); in runOnMachineFunction()
/external/bluetooth/glib/po/
Dis.po109 msgstr "Villa við umbreytingu: %s"
158 msgstr "Villa við að opna möppuna '%s': %s"
168 msgstr "Villa við lestur skráarinnar '%s': %s"
314 "Tómt viðfang '&;' fannst; gild viðföng eru: &amp; &quot; &lt; &gt; &apos;"
323 "Táknið '%s' er ógilt í upphafi heiti viðfanga; & táknið byrjar viðfang; ef "
324 "Þetta og-merki á ekki að vera byrjun viðfangs ættir þú að rita það sem &amp;"
329 msgstr "Táknið '%s' er ekki gilt í heitum viðfanga"
342 "ætla að byrja viðfang. Ritaðu það sem &amp;"
369 "ætla að byrja viðfang. Ritaðu það sem &amp;"
373 msgstr "Hálfkláruð viðfangatilvísun"
[all …]
/external/opencv/ml/include/
Dml.h700 int get_num_valid(int vi) { return num_valid ? num_valid[vi] : sample_count; } in get_num_valid()
701 void set_num_valid(int vi, int n) { if( num_valid ) num_valid[vi] = n; } in set_num_valid()
768 int get_var_type(int vi) const;
774 virtual int* get_cat_var_data( CvDTreeNode* n, int vi );
775 virtual CvPair32s32f* get_ord_var_data( CvDTreeNode* n, int vi );
784 virtual CvDTreeSplit* new_split_ord( int vi, float cmp_val,
786 virtual CvDTreeSplit* new_split_cat( int vi, float quality );
869 virtual CvDTreeSplit* find_split_ord_class( CvDTreeNode* n, int vi );
870 virtual CvDTreeSplit* find_split_cat_class( CvDTreeNode* n, int vi );
871 virtual CvDTreeSplit* find_split_ord_reg( CvDTreeNode* n, int vi );
[all …]

12345678910>>...12