/external/valgrind/main/none/tests/ppc32/ |
round.c | 52 unsigned int sign:1; member in struct:__anon30170::__anon30171 61 unsigned int sign:1; member in struct:__anon30172::__anon30173 122 msg, D.dbl, (D.layout.sign == 0 ? '+' : '-'), 137 msg, F.flt, (F.layout.sign == 0 ? '+' : '-'), F.layout.exp, F.layout.frac << 1); 151 if ((R.layout.sign != E.layout.sign) || 225 F.layout.sign = 0; 233 D.layout.sign = 0; 263 if ((R.layout.sign != E.layout.sign) || [all...] |
/external/valgrind/main/none/tests/ppc64/ |
round.c | 52 unsigned int sign:1; member in struct:__anon30211::__anon30212 61 unsigned int sign:1; member in struct:__anon30213::__anon30214 122 msg, D.dbl, (D.layout.sign == 0 ? '+' : '-'), 137 msg, F.flt, (F.layout.sign == 0 ? '+' : '-'), F.layout.exp, F.layout.frac << 1); 151 if ((R.layout.sign != E.layout.sign) || 225 F.layout.sign = 0; 233 D.layout.sign = 0; 263 if ((R.layout.sign != E.layout.sign) || [all...] |
/external/webp/src/dsp/ |
enc.c | 636 const int sign = (in[j] < 0); local 637 const int coeff = (sign ? -in[j] : in[j]) + mtx->sharpen_[j]; 644 if (sign) out[n] = -out[n];
|
/external/webp/src/enc/ |
frame.c | 406 const int sign = c < 0; local 407 int v = sign ? -c : c; 460 VP8PutBitUniform(bw, sign);
|
/frameworks/base/core/java/android/widget/ |
OverScroller.java | 741 mVelocity = -delta; // only sign is used 854 final float sign = Math.signum(mVelocity); local 941 final float sign = Math.signum(mVelocity); local [all...] |
/libcore/harmony-tests/src/test/java/tests/api/java/math/ |
BigDecimalTest.java | 115 * BigDecimal does not support a + sign in the exponent when converting 730 BigDecimal sign = new BigDecimal(123E-104); local 731 assertTrue("123E-104 is not positive in signum()", sign.signum() == 1); 732 sign = new BigDecimal("-1234.3959"); 734 sign.signum() == -1); 735 sign = new BigDecimal(000D); 736 assertTrue("000D is not zero in signum()", sign.signum() == 0); [all...] |
/libcore/luni/src/main/java/java/math/ |
BigInteger.java | 62 /** The sign of this. */ 63 transient int sign; field in class:BigInteger 85 /** sign field, used for serialization. */ 101 BigInteger(int sign, long value) { 103 bigInt.putULongInt(value, (sign < 0)); 111 * @param sign the sign of the number. 115 BigInteger(int sign, int numberLength, int[] digits) { 116 setJavaRepresentation(sign, numberLength, digits); 134 int sign = 1 local 357 int sign = bigInt.sign(); local 404 int sign = bigInt.sign(); local 486 int sign = signum(); local 540 int sign = signum(); local 1162 int sign; local [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/ |
OverScrollerSGV.java | 745 mVelocity = -delta; // only sign is used 859 final float sign = Math.signum(mVelocity); local 946 final float sign = Math.signum(mVelocity); local [all...] |
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/ |
OverScroller.java | 746 mVelocity = -delta; // only sign is used 859 final float sign = Math.signum(mVelocity); local 946 final float sign = Math.signum(mVelocity); local [all...] |
/bionic/libc/stdlib/ |
strtod.c | 359 int *decpt, int *sign, char **rve); 365 int k, maxwds, sign, wds; member in struct:Bigint 425 rv->sign = rv->wds = 0; 450 #define Bcopy_valid(x,y) memcpy(&(x)->sign, &(y)->sign, \ 962 c->sign = i; 1160 d0 &= 0x7fffffff; /* clear sign bit, which we ignore */ 1340 e, e1, esign, i, j, k, nd, nd0, nf, nz, nz0, sign; local 1360 sign = nz0 = nz = 0; 1368 sign = 1 [all...] |
/external/bison/lib/ |
vasnprintf.c | 3072 int sign = 0; local 3226 int sign = 0; local 3621 int sign = 0; local 4089 int sign = 0; local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/ |
InputType.cpp | 1051 int sign; local 1053 sign = n; 1055 sign = -n; 1057 sign = 0; 1070 if ((sign > 0 && current < stepRange.minimum()) || (sign < 0 && current > stepRange.maximum())) 1071 setValueAsDecimal(sign > 0 ? stepRange.minimum() : stepRange.maximum(), DispatchInputAndChangeEvent, IGNORE_EXCEPTION); 1077 if (sign < 0) 1079 else if (sign > 0)
|
/external/chromium_org/third_party/freetype/src/autofit/ |
aflatin2.c | 1603 FT_Int sign = 0; local [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
smpdtfmt.cpp | 1193 UChar sign = 0x002B \/* '+' *\/; local 2743 int32_t sign = 0; local [all...] |
/external/chromium_org/third_party/libwebp/enc/ |
quant.c | 463 int sign; // sign of coeff_i member in struct:__anon14013 539 // note: it's important to take sign of the _original_ coeff, 541 const int sign = (in[j] < 0); local 542 int coeff0 = (sign ? -in[j] : in[j]) + mtx->sharpen_[j]; 555 cur->sign = sign; 632 out[n] = node->sign ? -node->level : node->level; [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/ |
lp_bld_arit.c | 126 if (type.width == 8 && !type.sign) { 129 else if (type.width == 16 && type.sign) { 133 if (type.width == 8 && type.sign) { 136 if (type.width == 16 && !type.sign) { 139 if (type.width == 32 && !type.sign) { 142 if (type.width == 32 && type.sign) { 216 if (type.width == 8 && !type.sign) { 220 else if (type.width == 16 && type.sign) { 224 if (type.width == 8 && type.sign) { 227 if (type.width == 16 && !type.sign) { 1177 LLVMValueRef sign; local 1640 LLVMValueRef sign; local 1689 LLVMValueRef sign; local 1752 LLVMValueRef sign; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/ |
sp_tex_sample.c | 2130 float sign = (rx >= 0.0F) ? 1.0F : -1.0F; local 2140 float sign = (ry >= 0.0F) ? 1.0F : -1.0F; local 2150 float sign = (rz >= 0.0F) ? 1.0F : -1.0F; local [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/pkcs7/ |
pkcs7.h | 102 /* The private key to sign with */ 200 PKCS7_SIGNED *sign; member in union:pkcs7_st::__anon15609
|
/external/chromium_org/third_party/openssl/openssl/include/openssl/ |
pkcs7.h | 102 /* The private key to sign with */ 200 PKCS7_SIGNED *sign; member in union:pkcs7_st::__anon15652
|
/external/chromium_org/v8/src/ |
v8globals.h | 40 // Mask for the sign bit in a smi. 331 unsigned int sign :1; member in struct:v8::internal::IeeeDoubleLittleEndianArchType::__anon17078 339 unsigned int sign :1; member in struct:v8::internal::IeeeDoubleBigEndianArchType::__anon17079
|
/external/freetype/src/autofit/ |
aflatin2.c | 1633 FT_Int sign = 0; local [all...] |
/external/icu4c/i18n/ |
timezone.cpp | 488 // Invert sign because UNIX semantics are backwards 1327 int32_t sign, hour, min, sec; local 1343 int32_t sign, hour, min, sec; local [all...] |
/external/icu4c/test/intltest/ |
tztest.cpp | 119 // Invert sign because UNIX semantics are backwards 1031 UChar sign = 0x002B; local 1076 UChar sign = 0x002B; local [all...] |
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_arit.c | 126 if (type.width == 8 && !type.sign) { 129 else if (type.width == 16 && type.sign) { 133 if (type.width == 8 && type.sign) { 136 if (type.width == 16 && !type.sign) { 139 if (type.width == 32 && !type.sign) { 142 if (type.width == 32 && type.sign) { 216 if (type.width == 8 && !type.sign) { 220 else if (type.width == 16 && type.sign) { 224 if (type.width == 8 && type.sign) { 227 if (type.width == 16 && !type.sign) { 1177 LLVMValueRef sign; local 1640 LLVMValueRef sign; local 1689 LLVMValueRef sign; local 1752 LLVMValueRef sign; local [all...] |
/external/mesa3d/src/gallium/drivers/softpipe/ |
sp_tex_sample.c | 2130 float sign = (rx >= 0.0F) ? 1.0F : -1.0F; local 2140 float sign = (ry >= 0.0F) ? 1.0F : -1.0F; local 2150 float sign = (rz >= 0.0F) ? 1.0F : -1.0F; local [all...] |