/bionic/libm/src/ |
fpmath.h | 39 unsigned int sign :1; member in struct:IEEEf2bits::__anon538 41 unsigned int sign :1; 58 unsigned int sign :1; member in struct:IEEEd2bits::__anon539 64 unsigned int sign :1; 66 unsigned int sign :1;
|
s_cbrtf.c | 43 u_int32_t sign; local 47 sign=hx&0x80000000; /* sign= sign(x) */ 48 hx ^=sign; 58 SET_FLOAT_WORD(t,sign|((high&0x7fffffff)/3+B2)); 60 SET_FLOAT_WORD(t,sign|(hx/3+B1));
|
s_signbit.c | 39 return (u.bits.sign); 48 return (u.bits.sign); 57 return (u.bits.sign);
|
s_asinh.c | 20 * asinh(x) = sign(x) * log [ |x| + sqrt(x*x+1) ] 23 * := sign(x)*(log(x)+ln2)) for large |x|, else 24 * := sign(x)*log(2|x|+1/(|x|+sqrt(x*x+1))) if|x|>2, else 25 * := sign(x)*log1p(|x| + x^2/(1 + sqrt(1+x^2)))
|
/bionic/libc/regex/ |
cname.h | 89 { "number-sign", '#' }, 90 { "dollar-sign", '$' }, 91 { "percent-sign", '%' }, 97 { "plus-sign", '+' }, 117 { "less-than-sign", '<' }, 118 { "equals-sign", '=' }, 119 { "greater-than-sign", '>' },
|
/development/samples/SampleSyncAdapter/res/values/ |
strings.xml | 41 name="notification_login_error">Touch to sign into your Sample SyncAdapter account.</string> 45 name="ui_activity_title">Sign-in</string> 58 <!-- Button to sign in after entering username and password --> 60 name="login_activity_ok_button">Sign in</string> 78 name="login_activity_newaccount_text">Sign in to your Sample SyncAdapter account. </string> 80 <!-- Button that takes the user to the "sign in" screen --> 82 name="sign_in_button_label">Sign in</string>
|
/external/fdlibm/ |
s_cbrt.c | 48 unsigned sign; local 52 sign=hx&0x80000000; /* sign= sign(x) */ 53 hx ^=sign; 84 /* retore the sign bit */ 85 __HI(t) |= sign;
|
s_asinh.c | 17 * asinh(x) = sign(x) * log [ |x| + ieee_sqrt(x*x+1) ] 20 * := sign(x)*(ieee_log(x)+ln2)) for large |x|, else 21 * := sign(x)*ieee_log(2|x|+1/(|x|+ieee_sqrt(x*x+1))) if|x|>2, else 22 * := sign(x)*ieee_log1p(|x| + x^2/(1 + ieee_sqrt(1+x^2)))
|
/external/skia/src/utils/ |
SkParse.cpp | 149 int sign = 0; local 152 sign = -1; 166 *value = (n ^ sign) - sign; 175 int sign = 0; local 178 sign = -1; 205 *value = (n ^ sign) - sign; 223 int sign = 0; 226 sign = -1 [all...] |
/external/icu4c/test/testdata/ |
ra.xlf | 53 \uE001>\u0981; # SIGN CANDRABINDU 55 \uE002>\u0982; # SIGN ANUSVARA 57 \uE003>\u0983; # SIGN VISARGA 165 \uE03C>\u09BC; # SIGN NUKTA 169 \uE03E>\u09BE; # VOWEL SIGN AA 171 \uE03F>\u09BF; # VOWEL SIGN I 173 \uE040>\u09C0; # VOWEL SIGN II 175 \uE041>\u09C1; # VOWEL SIGN U 177 \uE042>\u09C2; # VOWEL SIGN UU 179 \uE043>\u09C3; # VOWEL SIGN VOCALIC [all...] |
/dalvik/libcore/math/src/main/java/java/math/ |
BitLevel.java | 45 if (val.sign == 0) { 51 if (val.sign < 0) { 58 // Subtracting all sign bits 70 if (val.sign == 0) { 75 if (val.sign > 0) { 79 } else {// (sign < 0) 130 // BigInteger result = new BigInteger(source.sign, resLength, resDigits); 199 BigInteger result = new BigInteger(source.sign, resLen, resDigits); 212 return ((source.sign < 0) ? BigInteger.MINUS_ONE : BigInteger.ZERO); 219 if (source.sign < 0) 249 int sign = val.signum(); local [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/ |
DecimalFormatProperties.java | 36 * minus-sign %char; "-" 133 * decimal-separator specifies the character used for the decimal sign; 145 * decimal-separator specifies the character used for the decimal sign; 204 * Set the "minus-sign" attribute. 205 * minus-sign specifies the character used as the default minus sign; the 208 * @param v Character to use as minus sign 216 * Get the "minus-sign" attribute. 217 * minus-sign specifies the character used as the default minus sign; th [all...] |
/dalvik/libcore/math/src/test/java/org/apache/harmony/math/tests/java/math/ |
BigIntegerConstructorsTest.java | 36 * Constructors: BigInteger(byte[] a), BigInteger(int sign, byte[] a), 79 assertEquals("incorrect sign", 1, aNumber.signum()); 101 assertEquals("incorrect sign", 1, aNumber.signum()); 123 assertEquals("incorrect sign", 1, aNumber.signum()); 145 assertEquals("incorrect sign", 1, aNumber.signum()); 167 assertEquals("incorrect sign", -1, aNumber.signum()); 189 assertEquals("incorrect sign", -1, aNumber.signum()); 211 assertEquals("incorrect sign", -1, aNumber.signum()); 233 assertEquals("incorrect sign", -1, aNumber.signum()); 254 assertEquals("incorrect sign", 0, aNumber.signum()) [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/ |
DERGeneralizedTime.java | 121 char sign = time.charAt(signPos); local 122 if (sign == '-' || sign == '+') 133 sign = time.charAt(signPos); 134 if (sign == '-' || sign == '+')
|
/dalvik/libcore/security/src/test/java/tests/targets/security/ |
SignatureTest.java | 36 private static final String signData = "some data to sign an"; //d verify"; 82 method = "sign", 121 byte[] sign = null; 123 sign = signature.sign(); 141 assertTrue(signature.verify(sign));
|
/external/dropbear/libtommath/ |
bn_mp_mul_d.c | 36 /* set the sign */ 37 c->sign = a->sign;
|
bn_mp_toradix.c | 43 if (t.sign == MP_NEG) { 46 t.sign = MP_ZPOS; 60 * to the first digit [exluding the sign] of the number]
|
bn_mp_toradix_n.c | 46 if (t.sign == MP_NEG) { 47 /* we have to reverse our digits later... but not the - sign!! */ 52 t.sign = MP_ZPOS; 73 * to the first digit [exluding the sign] of the number
|
/external/e2fsprogs/ |
SUBMITTING-PATCHES | 3 following "sign-off" procedure: 5 The sign-off is a simple line at the end of the explanation for the 32 personal information I submit with it, including my sign-off) is
|
/external/stlport/src/ |
facets_byname.cpp | 518 case 1: // The sign string precedes the quantity and currency symbol 519 pos_format.field[0] = (char) money_base::sign; 546 case 2: // The sign string succeeds the quantity and currency symbol. 554 pos_format.field[3] = (char) money_base::sign; 558 pos_format.field[2] = (char) money_base::sign; 568 pos_format.field[3] = (char) money_base::sign; 572 pos_format.field[2] = (char) money_base::sign; 577 case 3: // The sign string immediately precedes the currency symbol. 580 pos_format.field[0] = (char) money_base::sign; 594 pos_format.field[1] = (char) money_base::sign; [all...] |
/bionic/libc/string/ |
strerror_r.c | 57 __itoa(int num, int sign, char *buffer, size_t start, size_t end) 63 if (sign && num < 0) { 128 __num2string(int num, int sign, int setid, char *buf, size_t buflen, 143 ret = __itoa(num, sign, buf, len, buflen);
|
/dalvik/vm/mterp/x86-atom/ |
OP_SHR_LONG.S | 39 cmpl $$0, 4(rFP, %edx, 4) # check if we need to consider sign 40 jl .L${opcode}_finish # consider sign 41 jmp .L${opcode}_final # sign is fine, finish 48 psllq %xmm3, %xmm4 # %xmm4<- correct mask for sign bits
|
OP_SHR_LONG_2ADDR.S | 40 cmpl $$0, 4(rFP, rINST, 4) # check if we need to consider sign 41 jl .L${opcode}_finish # consider sign 42 jmp .L${opcode}_final # sign is fine, finish 49 psllq %xmm3, %xmm4 # %xmm4<- correct mask for sign bits
|
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
DurationTest.java | 26 int sign, int weeks, int days, int hours, 32 assertEquals("Duration sign is not equal for " + str, sign, duration.sign);
|
/dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/ |
SignatureTest.java | 205 assertEquals("state", MySignature1.SIGN, s.getState()); 245 assertEquals("state", MySignature1.SIGN, s.getState()); 260 * Class under test for byte[] sign() 265 method = "sign", 271 s.sign(); 279 s.sign(); 285 s.sign(); 286 assertEquals("state", MySignature1.SIGN, s.getState()); 287 assertTrue("sign() failed", s.runEngineSign); 291 * Class under test for sign(byte[], offset, len [all...] |