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

1 2 3 4 5 6 7 8 91011

  /external/clang/test/CodeGen/
altivec.c 19 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>
builtins-ppc-altivec.c 23 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, vi)
    [all...]
  /external/clang/test/CodeGenCXX/
vtable-holder-self-reference.cpp 12 int vi; member in struct:V
  /external/lzma/CPP/Windows/
NtCheck.h 13 OSVERSIONINFO vi; local
14 vi.dwOSVersionInfoSize = sizeof(vi);
15 return (::GetVersionEx(&vi) && vi.dwPlatformId == VER_PLATFORM_WIN32_NT);
  /external/libnl/lib/route/link/
vlan.c 68 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->vi_mask |= VLAN_HAS_PROTOCOL
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/
altivec-init.c 13 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}}
ext_vector_casts.c 99 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}}
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/z8k/
eidi.s 7 ei vi
8 di vi
12 ei vi,nvi
13 ei nvi,vi
14 di vi,nvi
15 di nvi,vi
22 EI VI
23 DI VI
27 EI VI,NVI
28 EI NVI,VI
    [all...]
  /external/clang/test/SemaCXX/
altivec.cpp 14 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)[1]=1
    [all...]
cxx0x-class.cpp 15 static const int vi = 0; member in class:C
  /system/extras/tests/framebuffer/
fb_test.c 45 static struct fb_var_screeninfo vi; variable in typeref:struct:fb_var_screeninfo
50 struct fb_var_screeninfo *vi);
67 if(ioctl(fd, FBIOGET_VSCREENINFO, &vi) < 0) {
72 if (bpp && vi.bits_per_pixel != bpp) {
74 vi.bits_per_pixel = bpp;
75 if(ioctl(fd, FBIOPUT_VSCREENINFO, &vi) < 0) {
86 dumpinfo(&fi, &vi);
94 bytes_per_pixel = vi.bits_per_pixel >> 3;
96 fb->width = vi.xres;
97 fb->height = vi.yres
    [all...]
  /external/lzma/C/
DllSecur.c 43 OSVERSIONINFO vi; local
44 vi.dwOSVersionInfoSize = sizeof(vi);
45 if (!GetVersionEx(&vi) || vi.dwMajorVersion != 6 || vi.dwMinorVersion != 0)
  /external/tremolo/Tremolo/
dsp.c 49 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){
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->channels*sizeof(*v->mdctright))
98 vorbis_info *vi=v->vi; local
145 vorbis_info *vi=v->vi; local
209 vorbis_info *vi=vd->vi; local
    [all...]
treminfo.c 124 int vorbis_info_blocksize(vorbis_info *vi,int zo){
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){
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){
136 codec_setup_info *ci=(codec_setup_info *)vi->codec_setup;
174 memset(vi,0,sizeof(*vi))
    [all...]
mapping0.c 70 int mapping_info_unpack(vorbis_info_mapping *info,vorbis_info *vi,
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...]
ivorbiscodec.h 90 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/aac/libFDK/src/arm/
fft_rad2_arm.cpp 173 FIXP_DBL vr, vi, ur, ui; local
175 // cplxMultDiv2(&vi, &vr, x[t2+1], x[t2], (FIXP_SGL)1.0, (FIXP_SGL)0.0);
176 vi = xt2[1] >> 1;
183 xt1[1] = ui + vi;
186 xt2[1] = ui - vi;
191 // cplxMultDiv2(&vr, &vi, x[t2+1], x[t2], (FIXP_SGL)1.0, (FIXP_SGL)0.0);
193 vi = xt2[0] >> 1;
199 xt1[1] = ui - vi;
202 xt2[1] = ui + vi;
217 FIXP_DBL vr, vi, ur, ui local
282 FIXP_DBL vr, vi, ur, ui; local
    [all...]
  /external/aac/libFDK/src/
fft_rad2.cpp 185 FIXP_DBL vr, vi, ur, ui; local
187 // cplxMultDiv2(&vi, &vr, x[t2+1], x[t2], (FIXP_SGL)1.0, (FIXP_SGL)0.0);
188 vi = x[t2 + 1] >> 1;
195 x[t1 + 1] = ui + vi;
198 x[t2 + 1] = ui - vi;
203 // cplxMultDiv2(&vr, &vi, x[t2+1], x[t2], (FIXP_SGL)1.0, (FIXP_SGL)0.0);
205 vi = x[t2] >> 1;
211 x[t1 + 1] = ui - vi;
214 x[t2 + 1] = ui + vi;
227 FIXP_DBL vr, vi, ur, ui local
291 FIXP_DBL vr, vi, ur, ui; local
    [all...]
fft.cpp 742 FIXP_DBL vi, ui; local
748 vi = (x[8] SHIFT_A) + (x[24] SHIFT_A); /* Re C + Re D */
750 x[0] = vr + (vi SHIFT_B); /* Re A' = ReA + ReB +ReC + ReD */
756 x[4] = vr - (vi SHIFT_B); /* Re C' = -(ReC+ReD) + (ReA+ReB) */
759 vi = (vi SHIFT_B)-x[24]; /* Re C - Re D */
767 x[3] = ur - vi; /* Im B'= -Re C + Re D + Im A - Im B */
773 x[7] = vi + ur; /* Im D'= Re C - Re D + Im A - Im B */
786 vi = (x[10] SHIFT_A) + (x[26] SHIFT_A); /* Re C + Re D */
798 x[16] = vr3 + (vi SHIFT_B); /* Re A' = ReA + ReB +ReC + ReD *
1012 FIXP_DBL vi, ui; local
1214 FIXP_DBL vi, ui, vr, ur; local
1256 FIXP_DBL vi, ui, vr, ur; local
    [all...]
  /bootable/recovery/minui/
graphics_fbdev.cpp 41 vi.yres_virtual = gr_framebuffer[0].height * 2;
42 vi.yoffset = n * gr_framebuffer[0].height;
43 vi.bits_per_pixel = gr_framebuffer[0].pixel_bytes * 8;
44 if (ioctl(fb_fd, FBIOPUT_VSCREENINFO, &vi) < 0) {
64 if (ioctl(fd, FBIOGET_VSCREENINFO, &vi) < 0) {
83 " vi.bits_per_pixel = %d\n"
84 " vi.red.offset = %3d .length = %3d\n"
85 " vi.green.offset = %3d .length = %3d\n"
86 " vi.blue.offset = %3d .length = %3d\n",
87 vi.bits_per_pixel, vi.red.offset, vi.red.length, vi.green.offset, vi.green.length
    [all...]
graphics_fbdev.h 40 fb_var_screeninfo vi; member in class:MinuiBackendFbdev
  /external/aac/libFDK/include/
fft.h 217 FIXP_DBL vr, vi, ur, ui; local
222 vi = y[9];
224 x[1] = ui + (vi >> 1);
226 x[9] = ui - (vi >> 1);
230 vi = y[12];
233 x[5] = ui - (vi >> 1);
235 x[13] = ui + (vi >> 1);
240 cplxMultDiv2(&vi, &vr, ui, ur, w_PiFOURTH);
245 x[3] = (ui >> 1) + vi;
247 x[11] = (ui >> 1) - vi;
    [all...]
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/bots/
Matchers.java 41 public static boolean present(ViewInteraction vi, Matcher<View> matcher) {
43 vi.check(matches(matcher));
44 vi.check(matches(isDisplayed()));
47 // Catch AssertionFailedError because vi.check(matches(isDisplayed())) throws that if
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
versionhelpers.h 21 OSVERSIONINFOEXW vi = {sizeof(vi),major,minor,0,0,{0},servpack}; local
22 return VerifyVersionInfoW(&vi, VER_MAJORVERSION|VER_MINORVERSION|VER_SERVICEPACKMAJOR,
74 OSVERSIONINFOEXW vi = {sizeof(vi),0,0,0,0,{0},0,0,0,VER_NT_WORKSTATION}; local
75 return !VerifyVersionInfoW(&vi, VER_PRODUCT_TYPE, VerSetConditionMask(0, VER_PRODUCT_TYPE, VER_EQUAL));
  /external/clang/test/Modules/
submodules.cpp 7 vector<int> vi; variable

Completed in 1688 milliseconds

1 2 3 4 5 6 7 8 91011