Home
last modified time | relevance | path

Searched refs:xi (Results 1 – 25 of 120) sorted by relevance

12345

/external/boringssl/src/crypto/pem/
Dpem_info.c95 X509_INFO *xi=NULL; in STACK_OF() local
117 if ((xi=X509_INFO_new()) == NULL) goto err; in STACK_OF()
138 if (xi->x509 != NULL) in STACK_OF()
140 if (!sk_X509_INFO_push(ret,xi)) goto err; in STACK_OF()
141 if ((xi=X509_INFO_new()) == NULL) goto err; in STACK_OF()
144 pp=&(xi->x509); in STACK_OF()
149 if (xi->x509 != NULL) in STACK_OF()
151 if (!sk_X509_INFO_push(ret,xi)) goto err; in STACK_OF()
152 if ((xi=X509_INFO_new()) == NULL) goto err; in STACK_OF()
155 pp=&(xi->x509); in STACK_OF()
[all …]
/external/libopus/src/
Dopus_compare.c59 size_t xi; in read_pcm16() local
72 for(xi=0;xi<nread;xi++){ in read_pcm16()
76 s=buf[2*(xi*_nchannels+ci)+1]<<8|buf[2*(xi*_nchannels+ci)]; in read_pcm16()
78 samples[(nsamples+xi)*_nchannels+ci]=s; in read_pcm16()
95 size_t xi; in band_energy() local
112 for(xi=0;xi<_nframes;xi++){ in band_energy()
118 x[ci*_window_sz+xk]=window[xk]*_in[(xi*_step+xk)*_nchannels+ci]; in band_energy()
138 _ps[(xi*ps_sz+xj)*_nchannels+ci]=re*re+im*im+100000; in band_energy()
139 p[ci]+=_ps[(xi*ps_sz+xj)*_nchannels+ci]; in band_energy()
143 _out[(xi*_nbands+bi)*_nchannels]=p[0]/(_bands[bi+1]-_bands[bi]); in band_energy()
[all …]
/external/libvpx/libvpx/third_party/libyuv/source/
Dscale_common.cc405 int xi = x >> 16; in ScaleFilterCols_C() local
406 int a = src_ptr[xi]; in ScaleFilterCols_C()
407 int b = src_ptr[xi + 1]; in ScaleFilterCols_C()
410 xi = x >> 16; in ScaleFilterCols_C()
411 a = src_ptr[xi]; in ScaleFilterCols_C()
412 b = src_ptr[xi + 1]; in ScaleFilterCols_C()
418 int xi = x >> 16; in ScaleFilterCols_C() local
419 int a = src_ptr[xi]; in ScaleFilterCols_C()
420 int b = src_ptr[xi + 1]; in ScaleFilterCols_C()
430 int64 xi = x >> 16; in ScaleFilterCols64_C() local
[all …]
/external/boringssl/src/crypto/x509/
Dx509_r2x.c70 X509_CINF *xi=NULL; in X509_REQ_to_X509() local
80 xi=ret->cert_info; in X509_REQ_to_X509()
84 if ((xi->version=M_ASN1_INTEGER_new()) == NULL) goto err; in X509_REQ_to_X509()
85 if (!ASN1_INTEGER_set(xi->version,2)) goto err; in X509_REQ_to_X509()
96 if (X509_gmtime_adj(xi->validity->notBefore,0) == NULL) in X509_REQ_to_X509()
98 if (X509_gmtime_adj(xi->validity->notAfter,(long)60*60*24*days) == NULL) in X509_REQ_to_X509()
/external/svox/pico/lib/
Dpicofftsg.c439 PICOFFTSG_FFTTYPE xi; in rdft() local
448 xi = a[0] - a[1]; in rdft()
450 a[1] = xi; in rdft()
533 PICOFFTSG_FFTTYPE xr, xi, yr, yi, an; in dfct_nmf() local
550 xi = a[m]; in dfct_nmf()
552 a[0] = an - xi; in dfct_nmf()
553 an += xi; in dfct_nmf()
558 xi = *amj; in dfct_nmf()
563 *aj = xr - xi; in dfct_nmf()
564 *ak = xr + xi; in dfct_nmf()
[all …]
/external/valgrind/none/tests/s390x/
Dxor.c7 memimmsweep(xi, 0); in do_imm_insns()
8 memimmsweep(xi, 255); in do_imm_insns()
9 memimmsweep(xi, 128); in do_imm_insns()
10 memimmsweep(xi, 0xaa); in do_imm_insns()
11 memimmsweep(xi, 0x55); in do_imm_insns()
Dxor.stdout.exp1021 xi 0000000000000000 ^ 0000000000000000 = 0000000000000000 (cc=0)
1022 xi 0000000000000001 ^ 0000000000000000 = 0000000000000001 (cc=0)
1023 xi 000000000000FFFF ^ 0000000000000000 = 000000000000FFFF (cc=0)
1024 xi 0000000000007FFF ^ 0000000000000000 = 0000000000007FFF (cc=0)
1025 xi 0000000000008000 ^ 0000000000000000 = 0000000000008000 (cc=0)
1026 xi 00000000FFFFFFFF ^ 0000000000000000 = 00000000FFFFFFFF (cc=0)
1027 xi 0000000080000000 ^ 0000000000000000 = 0000000080000000 (cc=0)
1028 xi 000000007FFFFFFF ^ 0000000000000000 = 000000007FFFFFFF (cc=0)
1029 xi AAAAAAAAAAAAAAAA ^ 0000000000000000 = AAAAAAAAAAAAAAAA (cc=1)
1030 xi 8000000000000000 ^ 0000000000000000 = 8000000000000000 (cc=1)
[all …]
/external/clang/test/SemaTemplate/
Dinstantiate-field.cpp14 void test1(const X<int> *xi) { in test1() argument
15 int i1 = xi->x; in test1()
16 const int &i2 = xi->y; in test1()
17 int* ip1 = xi->z; in test1()
18 int i3 = xi->bitfield; in test1()
19 xi->x2 = 17; in test1()
/external/webrtc/src/modules/audio_processing/utility/
Dfft4g.c327 float xi; in WebRtc_rdft() local
347 xi = a[0] - a[1]; in WebRtc_rdft()
349 a[1] = xi; in WebRtc_rdft()
469 float xr, xi, yr, yi;
483 xi = a[0] + a[n];
485 t[0] = xi - yi;
486 t[m] = xi + yi;
492 xi = a[j] + a[n - j];
497 t[j] = xi - yi;
498 t[k] = xi + yi;
[all …]
/external/eigen/Eigen/src/Jacobi/
DJacobi.h338 Scalar xi = x[i]; in apply_rotation_in_the_plane() local
340 x[i] = c * xi + numext::conj(s) * yi; in apply_rotation_in_the_plane()
341 y[i] = -s * xi + numext::conj(c) * yi; in apply_rotation_in_the_plane()
351 Packet xi = pload<Packet>(px); in apply_rotation_in_the_plane() local
353 pstore(px, padd(pmul(pc,xi),pcj.pmul(ps,yi))); in apply_rotation_in_the_plane()
354 pstore(py, psub(pcj.pmul(pc,yi),pmul(ps,xi))); in apply_rotation_in_the_plane()
364 Packet xi = ploadu<Packet>(px); in apply_rotation_in_the_plane() local
368 pstoreu(px, padd(pmul(pc,xi),pcj.pmul(ps,yi))); in apply_rotation_in_the_plane()
370 pstore (py, psub(pcj.pmul(pc,yi),pmul(ps,xi))); in apply_rotation_in_the_plane()
377 Packet xi = ploadu<Packet>(x+peelingEnd); in apply_rotation_in_the_plane() local
[all …]
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
Dtransform.c54 double tmp1r, tmp1i, xr, xi, yr, yi, fact; in WebRtcIsac_Time2Spec() local
78 xi = tmpim[k] - tmpim[FRAMESAMPLES_HALF - 1 - k]; in WebRtcIsac_Time2Spec()
83 outreQ7[k] = (WebRtc_Word16)WebRtcIsac_lrint((xr * tmp1r - xi * tmp1i) * 128.0); in WebRtcIsac_Time2Spec()
84 outimQ7[k] = (WebRtc_Word16)WebRtcIsac_lrint((xr * tmp1i + xi * tmp1r) * 128.0); in WebRtcIsac_Time2Spec()
95 double tmp1r, tmp1i, xr, xi, yr, yi, fact; in WebRtcIsac_Spec2time() local
106 xi = inim[k] * tmp1r - inre[k] * tmp1i; in WebRtcIsac_Spec2time()
113 outre2[k] = xi + yr; in WebRtcIsac_Spec2time()
114 outre2[FRAMESAMPLES_HALF - 1 - k] = -xi + yr; in WebRtcIsac_Spec2time()
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
Dp14.cpp36 void test(X<int> xi) { in test() argument
39 xi.f(); in test()
40 xi.g(); in test()
41 xi.h(); in test()
Dp19.cpp20 void test(X<int> xi, X<long> xl, float *fp) { in test() argument
23 xi.f(17, 25); in test()
24 xi.f(17, 3.14159); in test()
25 xi.f(17, fp); // expected-note{{instantiation}} in test()
/external/clang/test/CXX/temp/temp.decls/temp.friend/
Dp4.cpp24 X2<int> xi; in g() local
25 f(xi); in g()
41 X3<int> xi; in i() local
42 h(xi); in i()
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
Dp9-linkage.cpp31 int *&test(X0<int*> xi, int *ip) { in test() argument
33 xi.f(ip); in test()
35 xi.g(ip); in test()
37 xi.h(ip); in test()
Dp9.cpp31 int *&test(X0<int*> xi, int *ip) { in test() argument
32 xi.f(ip); // expected-note{{instantiation}} in test()
33 xi.g(ip); // expected-note{{instantiation}} in test()
34 xi.h(ip); in test()
/external/libvncserver/x11vnc/
Dxwrappers.c292 XImage *xi; in XGetSubImage_wr()
294 xi = xreadscreen(disp, d, x, y, width, height, in XGetSubImage_wr()
297 if (! xi) return NULL; in XGetSubImage_wr()
305 memcpy(dest_image->data, xi->data, size); in XGetSubImage_wr()
307 XDestroyImage(xi); in XGetSubImage_wr()
346 XImage *xi; in XCreateImage_wr() local
347 xi = (XImage *) malloc(sizeof(XImage)); in XCreateImage_wr()
348 memset(xi, 0, sizeof(XImage)); in XCreateImage_wr()
349 xi->depth = depth; in XCreateImage_wr()
351 xi->bits_per_pixel = 32; in XCreateImage_wr()
[all …]
D8to24.c61 static XImage *p_xi(XImage *xi, Visual *visual, int win_depth, int *w);
70 static XImage *cmap_xi(XImage *xi, Window win, int win_depth);
819 static XImage *p_xi(XImage *xi, Visual *visual, int win_depth, int *w) { in p_xi() argument
823 if (!xi || !visual || !win_depth || !w) {} in p_xi()
826 if (xi == NULL || *w < dpy_x) { in p_xi()
828 if (xi) { in p_xi()
829 XDestroyImage(xi); in p_xi()
841 xi = XCreateImage(dpy, visual, win_depth, ZPixmap, 0, d, in p_xi()
844 return xi; in p_xi()
863 XImage *xi; in poll_line()
[all …]
/external/llvm/test/CodeGen/SystemZ/
Dxor-06.ll9 ; CHECK: xi 0(%r2), 254
22 ; CHECK: xi 0(%r2), 254
35 ; CHECK: xi 0(%r2), 254
48 ; CHECK: xi 0(%r2), 254
61 ; CHECK: xi 0(%r2), 254
74 ; CHECK: xi 0(%r2), 254
87 ; CHECK: xi 0(%r2), 254
100 ; CHECK: xi 0(%r2), 254
Dxor-05.ll8 ; CHECK: xi 0(%r2), 1
19 ; CHECK: xi 0(%r2), 254
30 ; CHECK: xi 0(%r2), 1
41 ; CHECK: xi 0(%r2), 254
52 ; CHECK: xi 4095(%r2), 127
90 ; CHECK: xi 0(%r2), 127
128 ; CHECK: xi 0(%r2), 127
141 ; CHECK: xi 4095(%r2), 127
/external/clang/test/CodeGenCXX/
Dvisibility-hidden-extern-templates.cpp16 void test_X(X<int> xi, X<char> xc) { in test_X() argument
18 xi.f(); in test_X()
20 xi.g(); in test_X()
Dimplicit-instantiation-1.cpp13 void foo(X<int> &xi, X<float> *xfp, int i, float f) { in foo() argument
15 xi.f(i); in foo()
18 xi.g(f); in foo()
/external/webrtc/src/modules/audio_processing/aec/
Daec_rdft.c48 float xr, xi, yr, yi; in bitrv2_32or128() local
68 xi = a[j1 + 1]; in bitrv2_32or128()
74 a[k1 + 1] = xi; in bitrv2_32or128()
78 xi = a[j1 + 1]; in bitrv2_32or128()
84 a[k1 + 1] = xi; in bitrv2_32or128()
88 xi = a[j1 + 1]; in bitrv2_32or128()
94 a[k1 + 1] = xi; in bitrv2_32or128()
98 xi = a[j1 + 1]; in bitrv2_32or128()
104 a[k1 + 1] = xi; in bitrv2_32or128()
109 xi = a[j1 + 1]; in bitrv2_32or128()
[all …]
/external/boringssl/src/crypto/sha/asm/
Dsha1-x86_64.pl132 @xi=("%edx","%ebp","%r14d");
145 mov `4*$i`($inp),$xi[0]
146 bswap $xi[0]
149 mov `4*$j`($inp),$xi[1]
151 mov $xi[0],`4*$i`(%rsp)
153 bswap $xi[1]
157 lea 0x5a827999($xi[0],$e),$e
164 xor `4*($j%16)`(%rsp),$xi[1]
166 mov $xi[0],`4*($i%16)`(%rsp)
168 xor `4*(($j+2)%16)`(%rsp),$xi[1]
[all …]
/external/icu/icu4c/source/data/translit/
DHan_Latin.txt1335 [⻄橲渓犠礂鯑]→xi;
1336 [㔠㰨㰰䠍傄煆煵疨瞎虲虾蝦谺閕颬鰕��������������������]→xiā;
1337 …柙炠烚狎狭狹珨瑕硖硤碬磍祫筪縀縖翈舝舺蕸赮轄辖遐鍜鎋陜陿霞騢魻鶷黠������������������������������������������������������������]→xiá;
1338 [閜]→xiǎ;
1339 [㙈㙤㰺丅下乤吓嚇夏夓懗疜睱罅鎼鏬������������������������������]→xià;
1341 …掀攕暹杴枮氙珗祆秈籼纎纖纤苮莶薟褼襳訮跹蹮躚酰銛鍁铦锨韯韱馦鮮鱻鲜鶱����������������������������������������������������������]→xiān;
1342 …稴絃胘舷藖蚿蛝衔衘誸諴賢贒贤輱醎銜閑閒闲鷳鷴鷼鹇鹹麙������������������������������������������������������������������]→xián;
1343 [㧥㫫㬎㭠㶍㿅䗾䘆䚚䜢䢾䥪䧋冼尟尠崄嶮幰搟攇显櫶毨灦烍燹狝猃獫獮玁禒筅箲藓蘚蚬譣赻跣銑鍌险険險韅顕顯������������������������������������������]→xiǎn;
1344 …臔臽苋莧蜆誢豏鋧錎限陥陷餡馅麲鼸����������������������������������������������������������������������������]→xiàn;
1346 [㐮䬕乡厢啌廂忀欀湘瓖相稥箱緗缃膷芗葙薌襄郷鄉鄊鄕鑲镶香驤骧麘����������������]→xiāng;
[all …]

12345