Home
last modified time | relevance | path

Searched refs:sx (Results 1 – 25 of 234) sorted by relevance

12345678910

/external/clang/test/CXX/class.access/class.protected/
Dp1.cpp7 static int sx; // expected-note 3 {{declared}} \ member in test0::A
19 (void) a.sx; // expected-error {{'sx' is a protected member}} in test()
23 (void) b.sx; // expected-error {{'sx' is a protected member}} in test()
27 (void) c.sx; // expected-error {{'sx' is a protected member}} in test()
31 (void) d.sx; // expected-error {{'sx' is a private member}} in test()
38 static int sx; member in test1::A
53 (void) a.sx; in test()
57 (void) b.sx; in test()
61 (void) c.sx; in test()
65 (void) d.sx; in test()
[all …]
/external/boringssl/src/crypto/x509v3/
Dv3_sxnet.c75 static int sxnet_i2r(X509V3_EXT_METHOD *method, SXNET *sx, BIO *out,
110 static int sxnet_i2r(X509V3_EXT_METHOD *method, SXNET *sx, BIO *out,
117 v = ASN1_INTEGER_get(sx->version);
119 for (i = 0; i < sk_SXNETID_num(sx->ids); i++) {
120 id = sk_SXNETID_value(sx->ids, i);
141 SXNET *sx = NULL; in sxnet_v2i() local
145 if (!SXNET_add_id_asc(&sx, cnf->name, cnf->value, -1)) in sxnet_v2i()
148 return sx; in sxnet_v2i()
190 SXNET *sx = NULL; in SXNET_add_id_INTEGER() local
203 if (!(sx = SXNET_new())) in SXNET_add_id_INTEGER()
[all …]
/external/syslinux/com32/lib/jpeg/
Dyuv420p.c67 static void YCrCB_to_YUV420P_1x1(struct jdec_private *priv, int sx, int sy) in YCrCB_to_YUV420P_1x1() argument
77 memcpy(p, y, sx); in YCrCB_to_YUV420P_1x1()
86 for (j = sx; j >= 0; j -= 2) { in YCrCB_to_YUV420P_1x1()
98 for (j = sx; j >= 0; j -= 2) { in YCrCB_to_YUV420P_1x1()
113 static void YCrCB_to_YUV420P_2x1(struct jdec_private *priv, int sx, int sy) in YCrCB_to_YUV420P_2x1() argument
123 memcpy(p, y1, sx); in YCrCB_to_YUV420P_2x1()
128 sx = (sx+1) >> 1; in YCrCB_to_YUV420P_2x1()
134 memcpy(p, s, sx); in YCrCB_to_YUV420P_2x1()
143 memcpy(p, s, sx); in YCrCB_to_YUV420P_2x1()
158 static void YCrCB_to_YUV420P_1x2(struct jdec_private *priv, int sx, int sy) in YCrCB_to_YUV420P_1x2() argument
[all …]
Dgrey.c48 static void YCrCB_to_Grey_1xN(struct jdec_private *priv, int sx, int sy) in YCrCB_to_Grey_1xN() argument
60 memcpy(p, y, sx); in YCrCB_to_Grey_1xN()
72 static void YCrCB_to_Grey_2xN(struct jdec_private *priv, int sx, int sy) in YCrCB_to_Grey_2xN() argument
84 memcpy(p, y, sx); in YCrCB_to_Grey_2xN()
Dbgr24.c72 static void YCrCB_to_BGR24_1x1(struct jdec_private *priv, int sx, int sy) in YCrCB_to_BGR24_1x1() argument
89 for (j = sx; j > 0; j--) { in YCrCB_to_BGR24_1x1()
128 static void YCrCB_to_BGR24_2x1(struct jdec_private *priv, int sx, int sy) in YCrCB_to_BGR24_2x1() argument
145 for (j = sx; j > 0; j -= 2) { in YCrCB_to_BGR24_2x1()
195 static void YCrCB_to_BGR24_1x2(struct jdec_private *priv, int sx, int sy) in YCrCB_to_BGR24_1x2() argument
213 for (j = sx; j > 0 ; j--) { in YCrCB_to_BGR24_1x2()
265 static void YCrCB_to_BGR24_2x2(struct jdec_private *priv, int sx, int sy) in YCrCB_to_BGR24_2x2() argument
283 for (j = sx; j > 0; j -= 2) { in YCrCB_to_BGR24_2x2()
Drgb24.c72 static void YCrCB_to_RGB24_1x1(struct jdec_private *priv, int sx, int sy) in YCrCB_to_RGB24_1x1() argument
89 for (j = sx; j > 0; j++) { in YCrCB_to_RGB24_1x1()
126 static void YCrCB_to_RGB24_2x1(struct jdec_private *priv, int sx, int sy) in YCrCB_to_RGB24_2x1() argument
144 for (j = sx; j > 0; j -= 2) { in YCrCB_to_RGB24_2x1()
195 static void YCrCB_to_RGB24_1x2(struct jdec_private *priv, int sx, int sy) in YCrCB_to_RGB24_1x2() argument
213 for (j = sx; j > 0; j--) { in YCrCB_to_RGB24_1x2()
264 static void YCrCB_to_RGB24_2x2(struct jdec_private *priv, int sx, int sy) in YCrCB_to_RGB24_2x2() argument
282 for (j = sx; j > 0; j -= 2) { in YCrCB_to_RGB24_2x2()
Drgba32.c72 static void YCrCB_to_RGBA32_1x1(struct jdec_private *priv, int sx, int sy) in YCrCB_to_RGBA32_1x1() argument
89 for (j = sx; j > 0; j--) { in YCrCB_to_RGBA32_1x1()
129 static void YCrCB_to_RGBA32_2x1(struct jdec_private *priv, int sx, int sy) in YCrCB_to_RGBA32_2x1() argument
146 for (j = sx; j > 0; j -= 2) { in YCrCB_to_RGBA32_2x1()
201 static void YCrCB_to_RGBA32_1x2(struct jdec_private *priv, int sx, int sy) in YCrCB_to_RGBA32_1x2() argument
219 for (j = sx; j > 0; j--) { in YCrCB_to_RGBA32_1x2()
274 static void YCrCB_to_RGBA32_2x2(struct jdec_private *priv, int sx, int sy) in YCrCB_to_RGBA32_2x2() argument
292 for (j = sx; i > 0; j -= 2) { in YCrCB_to_RGBA32_2x2()
Dbgra32.c72 static void YCrCB_to_BGRA32_1x1(struct jdec_private *priv, int sx, int sy) in YCrCB_to_BGRA32_1x1() argument
89 for (j = sx; j > 0; j--) { in YCrCB_to_BGRA32_1x1()
130 static void YCrCB_to_BGRA32_2x1(struct jdec_private *priv, int sx, int sy) in YCrCB_to_BGRA32_2x1() argument
147 for (j = sx; j > 0; j -= 2) { in YCrCB_to_BGRA32_2x1()
200 static void YCrCB_to_BGRA32_1x2(struct jdec_private *priv, int sx, int sy) in YCrCB_to_BGRA32_1x2() argument
218 for (j = sx; j > 0; j--) { in YCrCB_to_BGRA32_1x2()
274 static void YCrCB_to_BGRA32_2x2(struct jdec_private *priv, int sx, int sy) in YCrCB_to_BGRA32_2x2() argument
292 for (j = sx; j > 0; j -= 2) { in YCrCB_to_BGRA32_2x2()
/external/eigen/blas/f2c/
Dsrotm.c15 /* Subroutine */ int srotm_(integer *n, real *sx, integer *incx, real *sy, in srotm_() argument
91 --sx; in srotm_()
118 w = sx[i__]; in srotm_()
120 sx[i__] = w + z__ * sh12; in srotm_()
131 w = sx[i__]; in srotm_()
133 sx[i__] = w * sh11 + z__; in srotm_()
146 w = sx[i__]; in srotm_()
148 sx[i__] = w * sh11 + z__ * sh12; in srotm_()
175 w = sx[kx]; in srotm_()
177 sx[kx] = w + z__ * sh12; in srotm_()
[all …]
/external/skia/src/core/
DSkMatrix.cpp215 SkScalar sx = fMat[kMSkewX]; in isSimilarity() local
218 if (is_degenerate_2x2(mx, sx, sy, my)) { in isSimilarity()
224 return (SkScalarNearlyEqual(mx, my, tol) && SkScalarNearlyEqual(sx, -sy, tol)) in isSimilarity()
225 || (SkScalarNearlyEqual(mx, -my, tol) && SkScalarNearlyEqual(sx, sy, tol)); in isSimilarity()
243 SkScalar sx = fMat[kMSkewX]; in preservesRightAngles() local
246 if (is_degenerate_2x2(mx, sx, sy, my)) { in preservesRightAngles()
253 vec[1].set(sx, my); in preservesRightAngles()
320 void SkMatrix::setScale(SkScalar sx, SkScalar sy, SkScalar px, SkScalar py) { in setScale() argument
321 if (1 == sx && 1 == sy) { in setScale()
324 this->setScaleTranslate(sx, sy, px - sx * px, py - sy * py); in setScale()
[all …]
DSkMatrix44.cpp281 void SkMatrix44::setScale(SkMScalar sx, SkMScalar sy, SkMScalar sz) { in setScale() argument
284 if (1 == sx && 1 == sy && 1 == sz) { in setScale()
288 fMat[0][0] = sx; in setScale()
294 void SkMatrix44::preScale(SkMScalar sx, SkMScalar sy, SkMScalar sz) { in preScale() argument
295 if (1 == sx && 1 == sy && 1 == sz) { in preScale()
303 fMat[0][i] *= sx; in preScale()
310 void SkMatrix44::postScale(SkMScalar sx, SkMScalar sy, SkMScalar sz) { in postScale() argument
311 if (1 == sx && 1 == sy && 1 == sz) { in postScale()
316 fMat[i][0] *= sx; in postScale()
830 SkMScalar sx = SkFloatToMScalar(src2[0]); in map2_af() local
[all …]
/external/fdlibm/
De_fmod.c35 int n,hx,hy,hz,ix,iy,sx,i; local
42 sx = hx&0x80000000; /* sign of x */
43 hx ^=sx; /* |x| */
53 return Zero[(unsigned)sx>>31]; /* |x|=|y| return x*0*/
107 return Zero[(unsigned)sx>>31];
116 return Zero[(unsigned)sx>>31];
123 __HI(x) = hx|sx;
131 lx = (hx<<(32-n))|(lx>>n); hx = sx;
133 lx = hx>>(n-32); hx = sx;
135 __HI(x) = hx|sx;
Ds_rint.c43 int i0,j0,sx; local
47 sx = (i0>>31)&1;
57 w = TWO52[sx]+x;
58 t = w-TWO52[sx];
60 __HI(t) = (i0&0x7fffffff)|(sx<<31);
82 w = TWO52[sx]+x;
83 return w-TWO52[sx];
De_remainder.c40 unsigned sx,lx,lp; local
47 sx = hx&0x80000000;
75 __HI(x) ^= sx;
/external/ImageMagick/Magick++/lib/
DOptions.cpp790 affine.sx=1.0; in transformOrigin()
800 _drawInfo->affine.sx=current.sx*affine.sx+current.ry*affine.rx; in transformOrigin()
801 _drawInfo->affine.rx=current.rx*affine.sx+current.sy*affine.rx; in transformOrigin()
802 _drawInfo->affine.ry=current.sx*affine.ry+current.ry*affine.sy; in transformOrigin()
804 _drawInfo->affine.tx=current.sx*affine.tx+current.ry*affine.ty+current.tx; in transformOrigin()
810 _drawInfo->affine.sx=1.0; in transformReset()
824 affine.sx=1.0; in transformRotation()
831 affine.sx=cos(DegreesToRadians(fmod(angle_,360.0))); in transformRotation()
836 _drawInfo->affine.sx=current.sx*affine.sx+current.ry*affine.rx; in transformRotation()
837 _drawInfo->affine.rx=current.rx*affine.sx+current.sy*affine.rx; in transformRotation()
[all …]
/external/deqp/modules/glshared/
DglsShaderRenderCase.cpp154 Vec4 getCoords (float sx, float sy) const;
155 Vec4 getUnitCoords (float sx, float sy) const;
158 Vec4 getUserAttrib (int attribNdx, float sx, float sy) const;
201 float sx = (float)x / (float)gridSize; in QuadGrid() local
203 float fx = 2.0f * sx - 1.0f; in QuadGrid()
209 m_screenPos[vtxNdx] = Vec4(sx, sy, 0.0f, 1.0f) * viewportScale; in QuadGrid()
210 m_coords[vtxNdx] = getCoords(sx, sy); in QuadGrid()
211 m_unitCoords[vtxNdx] = getUnitCoords(sx, sy); in QuadGrid()
214 m_userAttribs[attribNdx][vtxNdx] = getUserAttrib(attribNdx, sx, sy); in QuadGrid()
243 inline Vec4 QuadGrid::getCoords (float sx, float sy) const in getCoords() argument
[all …]
/external/libedit/src/
Drefresh.c457 re_clear_eol(EditLine *el, int fx, int sx, int diff) in re_clear_eol() argument
461 sx, fx, diff)); in re_clear_eol()
465 if (sx < 0) in re_clear_eol()
466 sx = -sx; in re_clear_eol()
469 if (sx > diff) in re_clear_eol()
470 diff = sx; in re_clear_eol()
506 int fx, sx; in re_update_line() local
639 sx = (int)((nls - nse) - (ols - ose)); in re_update_line()
648 if (sx > 0) { in re_update_line()
664 if (sx < 0) { in re_update_line()
[all …]
/external/autotest/client/site_tests/video_VideoDecodeMemoryUsage/
Dvideo_VideoDecodeMemoryUsage.py107 sx, sy = sum(x), sum(y)
111 beta = float(n * sxy - sx * sy) / (n * sxx - sx * sx)
112 alpha = float(sy - beta * sx) / n
114 beta * beta * (n * sxx - sx * sx)) / (n * (n - 2))
115 std_beta = sqrt((n * stderr2) / (n * sxx - sx * sx))
/external/libvncserver/libvncclient/
Dhextile.c39 int sx, sy, sw, sh; in HandleHextileBPP() local
96 sx = rfbHextileExtractX(*ptr); in HandleHextileBPP()
103 FillRectangle(client, x+sx, y+sy, sw, sh, fg); in HandleHextileBPP()
111 sx = rfbHextileExtractX(*ptr); in HandleHextileBPP()
118 FillRectangle(client, x+sx, y+sy, sw, sh, fg); in HandleHextileBPP()
Dultra.c185 unsigned short sx, sy, sw, sh; in HandleUltraZipBPP() local
188 memcpy((char *)&sx, ptr, 2); ptr += 2; in HandleUltraZipBPP()
194 sx = rfbClientSwap16IfLE(sx); in HandleUltraZipBPP()
202 CopyRectangle(client, (unsigned char *)ptr, sx, sy, sw, sh); in HandleUltraZipBPP()
/external/skia/include/c/
Dsk_matrix.h35 void sk_matrix_set_scale(sk_matrix_t*, float sx, float sy);
40 void sk_matrix_pre_scale(sk_matrix_t*, float sx, float sy);
45 void sk_matrix_post_scale(sk_matrix_t*, float sx, float sy);
/external/clang/test/SemaCXX/
Dclass.cpp14 sx = 0; in sm()
23 sx = 0; in f()
59 sx = 0; in m()
78 static int sx; member in C
/external/fio/
Dcairo_text_helpers.c65 double sx, sy; in draw_vertical_centered_text() local
72 sx = x; in draw_vertical_centered_text()
79 cairo_translate(cr, -sx, -sy); in draw_vertical_centered_text()
81 cairo_translate(cr, sx, sy); in draw_vertical_centered_text()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
DBasicPeriodFormatter.java86 int sx = TimeUnit.SECOND.ordinal; in format() local
88 int sf = 1 << sx; in format()
94 counts[sx] += (counts[mx]-1)/1000; in format()
103 counts[sx] = 1; in format()
105 counts[sx] += (counts[mx]-1)/1000; in format()
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
DBasicPeriodFormatter.java87 int sx = TimeUnit.SECOND.ordinal; in format() local
89 int sf = 1 << sx; in format()
95 counts[sx] += (counts[mx]-1)/1000; in format()
104 counts[sx] = 1; in format()
106 counts[sx] += (counts[mx]-1)/1000; in format()

12345678910