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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/class/class.nest/
p1-cxx0x.cpp 5 static int sx; member in class:Outer
11 static char b[sizeof(sx)]; // okay
p1.cpp 7 static int sx; member in class:Outer
16 static char b[sizeof(sx)]; // okay
  /external/skia/include/c/
sk_matrix.h 34 /** Set the matrix to scale by sx and sy. */
35 void sk_matrix_set_scale(sk_matrix_t*, float sx, float sy);
38 M' = M * S(sx, sy)
40 void sk_matrix_pre_scale(sk_matrix_t*, float sx, float sy);
43 M' = S(sx, sy) * M
45 void sk_matrix_post_scale(sk_matrix_t*, float sx, float sy);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_rintf.c 34 int32_t i0,j0,sx; local
37 sx = (i0>>31)&1;
42 STRICT_ASSIGN(float,w,TWO23[sx]+x);
43 t = w-TWO23[sx];
45 SET_FLOAT_WORD(t,(i0&0x7fffffff)|(sx<<31));
48 STRICT_ASSIGN(float,w,TWO23[sx]+x);
49 return w-TWO23[sx];
s_rint.c 40 int32_t i0,j0,sx; local
44 sx = (i0>>31)&1;
53 STRICT_ASSIGN(double,w,TWO52[sx]+x);
54 t = w-TWO52[sx];
56 SET_HIGH_WORD(t,(i0&0x7fffffff)|(sx<<31));
66 * w = TWO52[sx]+x, adjust the 0.25 bit to a lower
86 STRICT_ASSIGN(double,w,TWO52[sx]+x);
87 return w-TWO52[sx];
e_fmodf.c 33 int32_t n,hx,hy,hz,ix,iy,sx,i; local
37 sx = hx&0x80000000; /* sign of x */
38 hx ^=sx; /* |x| */
47 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
80 return Zero[(u_int32_t)sx>>31];
89 return Zero[(u_int32_t)sx>>31];
96 SET_FLOAT_WORD(x,hx|sx);
100 SET_FLOAT_WORD(x,hx|sx);
e_fmod.c 31 int32_t n,hx,hy,hz,ix,iy,sx,i; local
36 sx = hx&0x80000000; /* sign of x */
37 hx ^=sx; /* |x| */
47 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
101 return Zero[(u_int32_t)sx>>31];
110 return Zero[(u_int32_t)sx>>31];
117 INSERT_WORDS(x,hx|sx,lx);
124 lx = (hx<<(32-n))|(lx>>n); hx = sx;
126 lx = hx>>(n-32); hx = sx;
128 INSERT_WORDS(x,hx|sx,lx)
    [all...]
s_remquof.c 32 int32_t n,hx,hy,hz,ix,iy,sx,i; local
38 sx = hx&0x80000000; /* sign of x */
39 hx ^=sx; /* |x| */
50 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
93 return Zero[(u_int32_t)sx>>31];
118 SET_FLOAT_WORD(x,hx^sx);
  /external/fdlibm/
s_rint.c 43 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];
e_fmod.c 35 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;
    [all...]
  /external/clang/test/CXX/class.access/class.protected/
p1.cpp 7 static int sx; // expected-note 3 {{declared}} \ member in class:test0::A
19 (void) a.sx; // expected-error {{'sx' is a protected member}}
23 (void) b.sx; // expected-error {{'sx' is a protected member}}
27 (void) c.sx; // expected-error {{'sx' is a protected member}}
31 (void) d.sx; // expected-error {{'sx' is a private member}}
38 static int sx; member in class:test1::A
72 static int sx; member in class:test2::A
107 static int sx; member in class:test3::A
142 static int sx; \/\/ expected-note 3{{member is declared here}} member in class:test4::A
180 static int sx; \/\/ expected-note 3{{member is declared here}} member in class:test5::A
    [all...]
  /frameworks/base/core/jni/android/opengl/
poly.h 35 float sx, sy, sz, sw; /* screen space position (sometimes homo.) */ member in struct:android::__anon40596
  /device/google/contexthub/firmware/lib/libm/
ef_fmod.c 37 __int32_t n,hx,hy,hz,ix,iy,sx,i; local
41 sx = hx&0x80000000; /* sign of x */
42 hx ^=sx; /* |x| */
52 return Zero[(__uint32_t)sx>>31]; /* |x|=|y| return x*0*/
87 return Zero[(__uint32_t)sx>>31];
96 return Zero[(__uint32_t)sx>>31];
103 SET_FLOAT_WORD(x,hx|sx);
109 SET_FLOAT_WORD(x,hx|sx);
ef_exp.c 50 __int32_t k = 0,xsb,sx; local
53 GET_FLOAT_WORD(sx,x);
54 xsb = (sx>>31)&1; /* sign bit of x */
55 hx = sx & 0x7fffffff; /* high word of |x| */
62 if(sx > FLT_UWORD_LOG_MAX)
64 if(sx < 0 && hx > FLT_UWORD_LOG_MIN)
  /external/boringssl/src/crypto/x509v3/
v3_sxnet.c 75 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;
145 if (!SXNET_add_id_asc(&sx, cnf->name, cnf->value, -1))
148 return sx;
190 SXNET *sx = NULL;
203 if (!(sx = SXNET_new())
    [all...]
  /external/eigen/blas/f2c/
srotm.c 15 /* Subroutine */ int srotm_(integer *n, real *sx, integer *incx, real *sy,
43 /* (SX**T) , WHERE **T INDICATES TRANSPOSE. THE ELEMENTS OF SX ARE IN */
46 /* SX(LX+I*INCX), I = 0 TO N-1, WHERE LX = 1 IF INCX .GE. 0, ELSE */
64 /* SX (input/output) REAL array, dimension N */
68 /* storage spacing between elements of SX */
91 --sx;
118 w = sx[i__];
120 sx[i__] = w + z__ * sh12;
131 w = sx[i__]
    [all...]
  /frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
ColorCube.java 43 final int sx = 32; local
48 tb.setX(sx);
54 int dat[] = new int[sx * sy * sz];
57 for (int x = 0; x < sx; x++ ) {
59 v |= (0xff * x / (sx - 1));
62 dat[z*sy*sx + y*sx + x] = v;
  /frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
ColorCube.java 35 final int sx = 32; local
40 tb.setX(sx);
46 int dat[] = new int[sx * sy * sz];
49 for (int x = 0; x < sx; x++ ) {
51 v |= (0xff * x / (sx - 1));
54 dat[z*sy*sx + y*sx + x] = v;
  /frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
ColorCube.java 43 final int sx = 32; local
48 tb.setX(sx);
54 int dat[] = new int[sx * sy * sz];
57 for (int x = 0; x < sx; x++ ) {
59 v |= (0xff * x / (sx - 1));
62 dat[z*sy*sx + y*sx + x] = v;
  /external/syslinux/com32/lib/jpeg/
yuv420p.c 67 static void YCrCB_to_YUV420P_1x1(struct jdec_private *priv, int sx, int sy)
77 memcpy(p, y, sx);
86 for (j = sx; j >= 0; j -= 2) {
98 for (j = sx; j >= 0; j -= 2) {
113 static void YCrCB_to_YUV420P_2x1(struct jdec_private *priv, int sx, int sy)
123 memcpy(p, y1, sx);
128 sx = (sx+1) >> 1;
134 memcpy(p, s, sx);
143 memcpy(p, s, sx);
    [all...]
grey.c 48 static void YCrCB_to_Grey_1xN(struct jdec_private *priv, int sx, int sy)
60 memcpy(p, y, sx);
72 static void YCrCB_to_Grey_2xN(struct jdec_private *priv, int sx, int sy)
84 memcpy(p, y, sx);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
Intrinsic3DLut.java 26 final int sx = 32; field in class:Intrinsic3DLut
45 int dat[] = new int[sx * sy * sz];
48 for (int x = 0; x < sx; x++ ) {
50 v |= (0xff * x / (sx - 1));
53 dat[z*sy*sx + y*sx + x] = v;
63 int dat[] = new int[sx * sy * sz];
66 for (int x = 0; x < sx; x++ ) {
71 dat[z*sy*sx + y*sx + x] = v
    [all...]
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
CandidateView.java 103 int sx = getScrollX();
104 sx += distanceX;
105 if (sx < 0) {
106 sx = 0;
108 if (sx + getWidth() > mTotalWidth) {
109 sx -= distanceX;
111 mTargetScrollX = sx;
112 scrollTo(sx, getScrollY());
221 int sx = getScrollX(); local
222 if (mTargetScrollX > sx) {
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
e_fmod.c 37 int32_t n,hx,hy,hz,ix,iy,sx,i; local
42 sx = hx&0x80000000; /* sign of x */
43 hx ^=sx; /* |x| */
53 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
107 return Zero[(u_int32_t)sx>>31];
116 return Zero[(u_int32_t)sx>>31];
123 INSERT_WORDS(x,hx|sx,lx);
130 lx = (hx<<(32-n))|(lx>>n); hx = sx;
132 lx = hx>>(n-32); hx = sx;
134 INSERT_WORDS(x,hx|sx,lx);
    [all...]
  /frameworks/support/transition/src/android/support/transition/
MatrixUtils.java 46 public void setScale(float sx, float sy, float px, float py) {
51 public void setScale(float sx, float sy) {
98 public boolean preScale(float sx, float sy, float px, float py) {
104 public boolean preScale(float sx, float sy) {
146 public boolean postScale(float sx, float sy, float px, float py) {
152 public boolean postScale(float sx, float sy) {

Completed in 1584 milliseconds

1 2 3 4 5 6 7 8 91011>>