HomeSort by relevance Sort by last modified time
    Searched refs:sx (Results 1 - 25 of 399) 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 5 static int sx; member in class:Outer
11 static char b[sizeof(sx)]; // okay
  /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);
e_remainder.c 38 u_int32_t sx,lx,lp; local
43 sx = hx&0x80000000;
73 SET_HIGH_WORD(x,hx^sx);
  /device/lge/mako/camera/hdr/include/
morpho_rect_int.h 19 int sx; /**< left */ member in struct:__anon1870
27 (rect)->sx=(l);\
  /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::__anon19664
  /external/webkit/Source/WebCore/platform/graphics/transforms/
ScaleTransformOperation.h 34 static PassRefPtr<ScaleTransformOperation> create(double sx, double sy, OperationType type)
36 return adoptRef(new ScaleTransformOperation(sx, sy, 1, type));
39 static PassRefPtr<ScaleTransformOperation> create(double sx, double sy, double sz, OperationType type)
41 return adoptRef(new ScaleTransformOperation(sx, sy, sz, type));
70 ScaleTransformOperation(double sx, double sy, double sz, OperationType type)
71 : m_x(sx)
  /external/openssl/crypto/x509v3/
v3_sxnet.c 70 static int sxnet_i2r(X509V3_EXT_METHOD *method, SXNET *sx, BIO *out, int indent);
104 static int sxnet_i2r(X509V3_EXT_METHOD *method, SXNET *sx, BIO *out,
111 v = ASN1_INTEGER_get(sx->version);
113 for(i = 0; i < sk_SXNETID_num(sx->ids); i++) {
114 id = sk_SXNETID_value(sx->ids, i);
135 SXNET *sx = NULL;
139 if(!SXNET_add_id_asc(&sx, cnf->name, cnf->value, -1))
142 return sx;
186 SXNET *sx = NULL;
198 if(!(sx = SXNET_new())) goto err
    [all...]
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
ColorCube.java 44 final int sx = 32; local
49 tb.setX(sx);
55 int dat[] = new int[sx * sy * sz];
58 for (int x = 0; x < sx; x++ ) {
60 v |= (0xff * x / (sx - 1));
63 dat[z*sy*sx + y*sx + x] = v;
  /frameworks/rs/java/tests/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;
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/progressbar/
progressbar.edc 34 new Float:x, Float:sx;
36 sx = getfarg(3);
38 if (sx >= 0.0) {
39 set_drag_size(PART:"img.progressbar_fill", sx, 1.0);
  /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...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/
Filter.java 39 public FloatBuffer doFilter(float sx, float sy, float base, FloatBuffer data, int size);
Basis.java 75 public FloatBuffer getBuffer(float sx, float sy, float base, int size);
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/
AbstractFilter.java 58 public FloatBuffer doFilter(float sx, float sy, float base, FloatBuffer data, int size) {
64 retval = f.doFilter(sx, sy, base, retval, size);
66 retval = this.filter(sx, sy, base, retval, size);
68 retval = f.doFilter(sx, sy, base, retval, size);
73 public abstract FloatBuffer filter(float sx, float sy, float base, FloatBuffer buffer, int size);
IterativeFilter.java 84 public FloatBuffer filter(float sx, float sy, float base, FloatBuffer data, int size) {
92 retval = f.doFilter(sx, sy, base, retval, size);
94 retval = this.filter.doFilter(sx, sy, base, retval, size);
96 retval = f.doFilter(sx, sy, base, retval, size);
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/basis/
FilteredBasis.java 61 public FloatBuffer filter(float sx, float sy, float base, FloatBuffer data, int size) {
94 public FloatBuffer getBuffer(float sx, float sy, float base, int size) {
97 FloatBuffer retval = this.basis.getBuffer(sx - margin, sy - margin, base, workSize);
98 return this.clip(this.doFilter(sx, sy, base, retval, workSize), workSize, size, margin);
  /external/qemu/android/skin/
scaler.h 40 int sx,

Completed in 627 milliseconds

1 2 3 4 5 6 7 8 91011>>