Searched refs:vi (Results 1 - 25 of 108) sorted by relevance

12345

/external/clang/test/CodeGen/
H A Daltivec.c19 vector int vi; local
21 vi = (vector int)(1); // CHECK: <i32 1, i32 1, i32 1, i32 1>
23 vi = (vector int)(1, 2, 3, 4); // CHECK: <i32 1, i32 2, i32 3, i32 4>
24 vi = (vector int)(1, 2, 3, 4, 5); // CHECK: <i32 1, i32 2, i32 3, i32 4>
26 vi = (vector int){1}; // CHECK: <i32 1, i32 0, i32 0, i32 0>
27 vi = (vector int){1, 2}; // CHECK: <i32 1, i32 2, i32 0, i32 0>
28 vi = (vector int){1, 2, 3, 4}; // CHECK: <i32 1, i32 2, i32 3, i32 4>
34 vector int vi; local
35 vi++; // CHECK: add <4 x i32> {{.*}} <i32 1, i32 1, i32 1, i32 1>
H A Dbuiltins-ppc-altivec.c23 vector int vi = { -1, 2, -3, 4 }; variable
73 vi = vec_abs(vi);
104 vi = vec_abss(vi);
159 res_vi = vec_add(vi, vi);
163 res_vi = vec_add(vbi, vi);
167 res_vi = vec_add(vi, vbi);
235 res_vi = vec_vadduwm(vi, v
[all...]
/external/clang/test/CodeGenCXX/
H A Dvtable-holder-self-reference.cpp12 int vi; member in struct:V
/external/lzma/CPP/Windows/
H A DNtCheck.h13 OSVERSIONINFO vi; local
14 vi.dwOSVersionInfoSize = sizeof(vi);
15 return (::GetVersionEx(&vi) && vi.dwPlatformId == VER_PLATFORM_WIN32_NT);
/external/libnl/lib/route/link/
H A Dvlan.c68 struct vlan_info *vi; local
70 if ((vi = calloc(1, sizeof(*vi))) == NULL)
73 link->l_info = vi;
82 struct vlan_info *vi; local
93 vi = link->l_info;
96 vi->vi_vlan_id = nla_get_u16(tb[IFLA_VLAN_ID]);
97 vi->vi_mask |= VLAN_HAS_ID;
101 vi->vi_protocol = nla_get_u16(tb[IFLA_VLAN_PROTOCOL]);
102 vi
171 struct vlan_info *vi = link->l_info; local
184 struct vlan_info *vi = link->l_info; local
191 struct vlan_info *vi = link->l_info; local
267 struct vlan_info *vi = link->l_info; local
397 struct vlan_info *vi = link->l_info; local
415 struct vlan_info *vi = link->l_info; local
434 struct vlan_info *vi = link->l_info; local
452 struct vlan_info *vi = link->l_info; local
471 struct vlan_info *vi = link->l_info; local
491 struct vlan_info *vi = link->l_info; local
510 struct vlan_info *vi = link->l_info; local
527 struct vlan_info *vi = link->l_info; local
542 struct vlan_info *vi = link->l_info; local
555 struct vlan_info *vi = link->l_info; local
586 struct vlan_info *vi = link->l_info; local
[all...]
/external/clang/test/Sema/
H A Daltivec-init.c13 vector int vi; local
14 vi = (vector int)(1);
15 vi = (vector int)(1, 2); // expected-error {{number of elements must be either one or match the size of the vector}}
16 vi = (vector int)(1, 2, 3, 4);
17 vi = (vector int)(1, 2, 3, 4, 5); // expected-warning {{excess elements in vector initializer}}
18 vi = (vector int){1};
19 vi = (vector int){1, 2};
20 vi = (vector int){1, 2, 3, 4, 5}; // expected-warning {{excess elements in vector initializer}}
H A Dext_vector_casts.c99 int4 vi = i; local
109 vi = l + vi; // expected-warning {{implicit conversion loses integer precision}}
110 vi = 1 + vi;
111 vi = vi + 2.0; // expected-error {{cannot convert between vector values of different size}}
112 vi = vi + 0xffffffff; // expected-warning {{implicit conversion changes signedness}}
/external/clang/test/SemaCXX/
H A Daltivec.cpp14 vector int vi; local
29 int res10[vec_step(vi) == 4 ? 1 : -1];
57 vector int vi; local
58 ++vi;
59 vi++;
60 --vi;
61 vi--;
65 ++vi=vi; // expected-warning {{unsequenced}}
66 (++vi)[
[all...]
H A Dcxx0x-class.cpp15 static const int vi = 0; member in class:C
/external/aac/libFDK/src/
H A Dfft.cpp337 #define SUMDIFF_EIGTH(x, y, ix, iy, vr, vi, ur, ui) \
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; local
363 SUMDIFF_EIGTH(x, y, 0, 0, vr, vi, u
550 FIXP_DBL vr,vi,ur,ui; local
[all...]
H A Dfft_rad2.cpp174 FIXP_DBL vr,vi,ur,ui; local
176 //cplxMultDiv2(&vi, &vr, x[t2+1], x[t2], (FIXP_SGL)1.0, (FIXP_SGL)0.0);
177 vi = x[t2+1]>>1;
184 x[t1+1] = ui+vi;
187 x[t2+1] = ui-vi;
192 //cplxMultDiv2(&vr, &vi, x[t2+1], x[t2], (FIXP_SGL)1.0, (FIXP_SGL)0.0);
194 vi = x[t2]>>1;
200 x[t1+1] = ui-vi;
203 x[t2+1] = ui+vi;
216 FIXP_DBL vr,vi,u local
280 FIXP_DBL vr,vi,ur,ui; local
376 FIXP_DBL vr,vi,ur,ui; local
418 FIXP_DBL vr,vi,ur,ui; local
481 FIXP_DBL vr,vi,ur,ui; local
[all...]
/external/lzma/C/
H A DDllSecur.c43 OSVERSIONINFO vi; local
44 vi.dwOSVersionInfoSize = sizeof(vi);
45 if (!GetVersionEx(&vi) || vi.dwMajorVersion != 6 || vi.dwMinorVersion != 0)
/external/tremolo/Tremolo/
H A Ddsp.c49 vorbis_info *vi=v->vi; local
52 if(!vi)return -1;
53 ci=vi->codec_setup;
66 int vorbis_dsp_init(vorbis_dsp_state *v,vorbis_info *vi){ argument
69 codec_setup_info *ci=(codec_setup_info *)vi->codec_setup;
71 v->vi=vi;
73 v->work=(ogg_int32_t **)_ogg_malloc(vi->channels*sizeof(*v->work));
74 v->mdctright=(ogg_int32_t **)_ogg_malloc(vi
89 vorbis_dsp_create(vorbis_info *vi) argument
98 vorbis_info *vi=v->vi; local
145 vorbis_info *vi=v->vi; local
171 vorbis_packet_blocksize(vorbis_info *vi,ogg_packet *op) argument
209 vorbis_info *vi=vd->vi; local
[all...]
H A Dtreminfo.c124 int vorbis_info_blocksize(vorbis_info *vi,int zo){ argument
125 codec_setup_info *ci = (codec_setup_info *)vi->codec_setup;
129 /* used by synthesis, which has a full, alloced vi */
130 void vorbis_info_init(vorbis_info *vi){ argument
131 memset(vi,0,sizeof(*vi));
132 vi->codec_setup=(codec_setup_info *)_ogg_calloc(1,sizeof(codec_setup_info));
135 void vorbis_info_clear(vorbis_info *vi){ argument
136 codec_setup_info *ci=(codec_setup_info *)vi->codec_setup;
174 memset(vi,
179 _vorbis_unpack_info(vorbis_info *vi,oggpack_buffer *opb) argument
251 _vorbis_unpack_books(vorbis_info *vi,oggpack_buffer *opb) argument
340 vorbis_dsp_headerin(vorbis_info *vi,vorbis_comment *vc,ogg_packet *op) argument
[all...]
H A Dmapping0.c70 int mapping_info_unpack(vorbis_info_mapping *info,vorbis_info *vi, argument
73 codec_setup_info *ci=(codec_setup_info *)vi->codec_setup;
87 int testM=info->coupling[i].mag=(unsigned char)(oggpack_read(opb,ilog(vi->channels)));
88 int testA=info->coupling[i].ang=(unsigned char)(oggpack_read(opb,ilog(vi->channels)));
93 testM>=vi->channels ||
94 testA>=vi->channels) goto err_out;
102 info->chmuxlist=_ogg_malloc(sizeof(*info->chmuxlist)*vi->channels);
103 for(i=0;i<vi->channels;i++){
126 vorbis_info *vi=vd->vi; local
[all...]
H A 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);
H A Dcodec_internal.h59 vorbis_info *vi; member in struct:vorbis_dsp_state
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);
/external/aac/libFDK/src/arm/
H A Dfft_rad2_arm.cpp172 FIXP_DBL vr,vi,ur,ui; local
174 //cplxMultDiv2(&vi, &vr, x[t2+1], x[t2], (FIXP_SGL)1.0, (FIXP_SGL)0.0);
175 vi = xt2[1]>>1;
182 xt1[1] = ui+vi;
185 xt2[1] = ui-vi;
190 //cplxMultDiv2(&vr, &vi, x[t2+1], x[t2], (FIXP_SGL)1.0, (FIXP_SGL)0.0);
192 vi = xt2[0]>>1;
198 xt1[1] = ui-vi;
201 xt2[1] = ui+vi;
218 FIXP_DBL vr,vi,u local
284 FIXP_DBL vr,vi,ur,ui; local
[all...]
/external/aac/libFDK/include/
H A Dfft.h199 FIXP_DBL vr, vi, ur, ui; local
204 vi = y[9];
206 x[1] = ui + (vi>>1);
208 x[9] = ui - (vi>>1);
212 vi = y[12];
215 x[5] = ui - (vi>>1);
217 x[13] = ui + (vi>>1);
222 vi = fMultDiv2(ui-ur,W_PiFOURTH);
226 x[3] = (ui>>1) + vi;
228 x[11] = (ui>>1) - vi;
[all...]
/external/clang/test/Modules/
H A Dsubmodules.cpp7 vector<int> vi; variable
/external/webrtc/webrtc/test/linux/
H A Dglx_renderer.cc42 XVisualInfo* vi; local
47 if ((vi = glXChooseVisual(display_, screen, attr_list)) == NULL) {
52 context_ = glXCreateContext(display_, vi, 0, true);
60 display_, RootWindow(display_, vi->screen), vi->visual, AllocNone);
63 window_ = XCreateWindow(display_, RootWindow(display_, vi->screen), 0, 0,
64 width_, height_, 0, vi->depth, InputOutput,
65 vi->visual, CWBorderPixel | CWColormap | CWEventMask,
67 XFree(vi);
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
H A DWell512a.java88 final int vi = v[index];
94 final int z1 = (vi ^ (vi << 16)) ^ (vi1 ^ (vi1 << 15));
/external/opencv/ml/src/
H A Dmltree.cpp144 int vi, i; local
243 for( vi = 0; vi < var_count; vi++ )
245 var_type->data.i[vi] = var_type0->data.ptr[vi] == CV_VAR_CATEGORICAL ?
306 for( vi = 0; vi <= var_count; vi++ )
315 if( vi < var_coun
585 int vi, i, total = data_root->sample_count; local
688 int i, vi, total = sample_count, count = total, cur_ofs = 0; local
844 new_split_ord( int vi, float cmp_val, int split_point, int inversed, float quality ) argument
859 new_split_cat( int vi, float quality ) argument
1008 int vi, vcount = var_count; local
1072 int vi, max_split_size, tree_block_size; local
1337 int i, n = node->sample_count, vi; local
1431 int i, n = node->sample_count, vi = node->split->var_idx; local
1529 int vi; local
2438 int vi, i, n = node->sample_count, nl, nr, d0 = 0, d1 = -1; local
2518 int vi, i, n = node->sample_count, nl, nr; local
2943 int vi = split->var_idx; local
3200 int vi, ci; local
[all...]
/external/eigen/test/
H A Dstddeque.cpp29 typename std::deque<MatrixType,Eigen::aligned_allocator<MatrixType> >::iterator vi = v.begin(); local
33 VERIFY_IS_APPROX(*vi, *wi);
34 ++vi;
58 typename std::deque<TransformType,Eigen::aligned_allocator<TransformType> >::iterator vi = v.begin(); local
62 VERIFY_IS_APPROX(*vi, *wi);
63 ++vi;
87 typename std::deque<QuaternionType,Eigen::aligned_allocator<QuaternionType> >::iterator vi = v.begin(); local
91 VERIFY_IS_APPROX(*vi, *wi);
92 ++vi;
H A Dstdlist.cpp29 typename std::list<MatrixType,Eigen::aligned_allocator<MatrixType> >::iterator vi = v.begin(); local
33 VERIFY_IS_APPROX(*vi, *wi);
34 ++vi;
58 typename std::list<TransformType,Eigen::aligned_allocator<TransformType> >::iterator vi = v.begin(); local
62 VERIFY_IS_APPROX(*vi, *wi);
63 ++vi;
87 typename std::list<QuaternionType,Eigen::aligned_allocator<QuaternionType> >::iterator vi = v.begin(); local
91 VERIFY_IS_APPROX(*vi, *wi);
92 ++vi;

Completed in 662 milliseconds

12345