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

1 2 3

  /external/boringssl/src/crypto/x509/
x509_r2x.c 70 X509_CINF *xi=NULL; local
80 xi=ret->cert_info;
84 if ((xi->version=M_ASN1_INTEGER_new()) == NULL) goto err;
85 if (!ASN1_INTEGER_set(xi->version,2)) goto err;
86 /* xi->extensions=ri->attributes; <- bad, should not ever be done
96 if (X509_gmtime_adj(xi->validity->notBefore,0) == NULL)
98 if (X509_gmtime_adj(xi->validity->notAfter,(long)60*60*24*days) == NULL)
  /external/clang/test/SemaTemplate/
enum-forward.cpp 8 X<int> xi; variable
instantiate-type.cpp 27 X<int> xi; member in namespace:rdar13094134
injected-class-name.cpp 14 X<float>::X<int> xi = x; // expected-error{{qualified reference to 'X' is a constructor name rather than a template name wherever a constructor can be declared}} variable
instantiate-member-class.cpp 40 X<int>::X *xi; // expected-error{{qualified reference to 'X' is a constructor name rather than a type wherever a constructor can be declared}} variable
45 xi = xf; // expected-error{{assigning to 'X<int>::X<int> *' from incompatible type 'X<float>::X<float> *'}}
instantiate-member-template.cpp 15 X0<int> xi; local
16 int i1 = xi.f0(ip);
17 double *&dpr = xi.f1(ip, dp);
18 xi.f1(dp, dp); // expected-error{{no matching}}
  /art/test/568-checker-onebit/src/
Main.java 49 int[] xi = new int[32]; local
62 expectEquals32(0, hi32(xi[i]));
63 expectEquals32(0, lo32(xi[i]));
  /external/clang/test/CXX/temp/temp.spec/
p5.cpp 44 X<int> xi; member in namespace:NestedClassRedecls
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p4.cpp 24 X2<int> xi; local
25 f(xi);
41 X3<int> xi; local
42 h(xi);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
transform.c 46 double tmp1r, tmp1i, xr, xi, yr, yi, fact; local
70 xi = tmpim[k] - tmpim[FRAMESAMPLES_HALF - 1 - k];
75 outreQ7[k] = (int16_t)WebRtcIsac_lrint((xr * tmp1r - xi * tmp1i) * 128.0);
76 outimQ7[k] = (int16_t)WebRtcIsac_lrint((xr * tmp1i + xi * tmp1r) * 128.0);
89 double tmp1r, tmp1i, xr, xi, yr, yi, fact; local
100 xi = inim[k] * tmp1r - inre[k] * tmp1i;
107 outre2[k] = xi + yr;
108 outre2[FRAMESAMPLES_HALF - 1 - k] = -xi + yr;
  /external/boringssl/src/crypto/pem/
pem_info.c 95 X509_INFO *xi=NULL; local
117 if ((xi=X509_INFO_new()) == NULL) goto err;
138 if (xi->x509 != NULL)
140 if (!sk_X509_INFO_push(ret,xi)) goto err;
141 if ((xi=X509_INFO_new()) == NULL) goto err;
144 pp=&(xi->x509);
149 if (xi->x509 != NULL)
151 if (!sk_X509_INFO_push(ret,xi)) goto err;
152 if ((xi=X509_INFO_new()) == NULL) goto err;
155 pp=&(xi->x509)
    [all...]
  /external/libopus/celt/x86/
pitch_sse.h 84 __m128 xi = _mm_loadu_ps(x+i); local
87 xsum1 = _mm_add_ps(xsum1,_mm_mul_ps(xi, y1i));
88 xsum2 = _mm_add_ps(xsum2,_mm_mul_ps(xi, y2i));
  /external/opencv3/modules/imgproc/src/
intersection.cpp 131 float xi = pts1[i].x + vec1[i].x*t1; local
134 intersection.push_back(Point2f(xi,yi));
colormap.cpp 75 Mat interp1_(const Mat& X_, const Mat& Y_, const Mat& XI)
77 int n = XI.rows;
84 Mat yi = Mat::zeros(XI.size(), XI.type());
89 if(XI.at<_Tp>(i,0) < X.at<_Tp>(low, 0))
91 if(XI.at<_Tp>(i,0) > X.at<_Tp>(high, 0))
96 if(XI.at<_Tp>(i,0) > X.at<_Tp>(c,0)) {
104 + (XI.at<_Tp>(i,0) - X.at<_Tp>(low,0))
116 Mat xi = _xi.getMat(); local
118 CV_Assert((x.type() == Y.type()) && (Y.type() == xi.type()))
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/aec/
aec_rdft_mips.c 16 float xr, xi, yr, yi; local
19 xi = a[9];
25 a[17] = xi;
28 xi = a[65];
34 a[3] = xi;
37 xi = a[73];
43 a[19] = xi;
46 xi = a[81];
52 a[11] = xi;
55 xi = a[89]
    [all...]
aec_rdft.c 141 float xr, xi, yr, yi; local
149 xi = a[j1 + 1];
155 a[k1 + 1] = xi;
159 xi = a[j1 + 1];
165 a[k1 + 1] = xi;
169 xi = a[j1 + 1];
175 a[k1 + 1] = xi;
179 xi = a[j1 + 1];
185 a[k1 + 1] = xi;
190 xi = a[j1 + 1]
498 float wkr, wki, xr, xi, yr, yi; local
519 float wkr, wki, xr, xi, yr, yi; local
540 float xi; local
    [all...]
  /external/deqp/modules/gles3/stress/
es3sLongRunningShaderTests.cpp 252 const int xi = pointNdx % width; local
254 const float xf = 2.0f * ((float(xi) + 0.5f) / float(width)) - 1.0f;
  /external/libopus/src/
opus_compare.c 59 size_t xi; local
72 for(xi=0;xi<nread;xi++){
76 s=buf[2*(xi*_nchannels+ci)+1]<<8|buf[2*(xi*_nchannels+ci)];
78 samples[(nsamples+xi)*_nchannels+ci]=s;
95 size_t xi; local
112 for(xi=0;xi<_nframes;xi++)
178 size_t xi; local
    [all...]
  /external/pdfium/xfa/src/fxbarcode/common/
BC_WhiteRectangleDetector.cpp 220 float xi = x->GetX(); local
229 (*result)[2] = new CBC_ResultPoint(xi - CORR, xj - CORR);
237 (*result)[2] = new CBC_ResultPoint(xi - CORR, xj + CORR);
  /external/webrtc/webrtc/common_audio/
fft4g.c 333 float xi; local
353 xi = a[0] - a[1];
355 a[1] = xi;
475 float xr, xi, yr, yi;
489 xi = a[0] + a[n];
491 t[0] = xi - yi;
492 t[m] = xi + yi;
498 xi = a[j] + a[n - j];
503 t[j] = xi - yi;
504 t[k] = xi + yi
702 float xr, xi, yr, yi; local
1243 float wkr, wki, xr, xi, yr, yi; local
1268 float wkr, wki, xr, xi, yr, yi; local
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
misc.c 177 ULong xi, z; local
193 xi = *x;
194 y = (xi & 0xffff) * m + carry;
195 z = (xi >> 16) * m + (y >> 16);
  /external/clang/test/SemaCXX/
cxx1y-generic-lambdas.cpp 34 X<int> xi; member in namespace:test_conversion_to_fptr_2
  /external/libvpx/libvpx/third_party/libyuv/source/
scale_common.cc 405 int xi = x >> 16; local
406 int a = src_ptr[xi];
407 int b = src_ptr[xi + 1];
410 xi = x >> 16;
411 a = src_ptr[xi];
412 b = src_ptr[xi + 1];
418 int xi = x >> 16; local
419 int a = src_ptr[xi];
420 int b = src_ptr[xi + 1];
430 int64 xi = x >> 16 local
443 int64 xi = x >> 16; local
458 int xi = x >> 16; local
471 int xi = x >> 16; local
483 int64 xi = x >> 16; local
496 int64 xi = x >> 16; local
804 int xi = x >> 16; local
819 int xi = x >> 16; local
834 int64 xi = x >> 16; local
849 int64 xi = x >> 16; local
    [all...]
  /external/libyuv/files/source/
scale_argb.cc 736 int xi = x >> 16; local
737 uint32 a = src[xi];
738 uint32 b = src[xi + 1];
741 xi = x >> 16;
742 a = src[xi];
743 b = src[xi + 1];
749 int xi = x >> 16; local
750 uint32 a = src[xi];
751 uint32 b = src[xi + 1];
    [all...]
  /external/opencv3/modules/videostab/src/
inpainting.cpp 156 int xi = cvRound(Mi(0,0)*x + Mi(0,1)*y + Mi(0,2)); local
158 if (xi >= 0 && xi < framei.cols && yi >= 0 && yi < framei.rows)
160 pixels[n].color = framei(yi, xi);

Completed in 705 milliseconds

1 2 3