/packages/apps/Email/src/com/android/exchange/utility/ |
Duration.java | 26 public int sign; // 1 or -1 field in class:Duration 34 sign = 1; 42 sign = 1; 59 sign = -1; 111 cal.add(Calendar.DAY_OF_MONTH, sign*weeks*7); 112 cal.add(Calendar.DAY_OF_MONTH, sign*days); 113 cal.add(Calendar.HOUR, sign*hours); 114 cal.add(Calendar.MINUTE, sign*minutes); 115 cal.add(Calendar.SECOND, sign*seconds); 123 long factor = 1000 * sign; [all...] |
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
Duration.java | 32 public int sign; // 1 or -1 field in class:Duration 41 sign = 1; 50 sign = 1; 67 sign = -1; 128 cal.add(Calendar.DAY_OF_MONTH, sign*weeks*7); 129 cal.add(Calendar.DAY_OF_MONTH, sign*days); 130 cal.add(Calendar.HOUR, sign*hours); 131 cal.add(Calendar.MINUTE, sign*minutes); 132 cal.add(Calendar.SECOND, sign*seconds); 140 long factor = 1000 * sign; [all...] |
/external/icu4c/data/unidata/ |
DerivedBidiClass.txt | 50 00B5 ; L # L& MICRO SIGN 76 0482 ; L # So CYRILLIC THOUSANDS SIGN 83 0903 ; L # Mc DEVANAGARI SIGN VISARGA 85 093D ; L # Lo DEVANAGARI SIGN AVAGRAHA 86 093E..0940 ; L # Mc [3] DEVANAGARI VOWEL SIGN AA..DEVANAGARI VOWEL SIGN II 87 0949..094C ; L # Mc [4] DEVANAGARI VOWEL SIGN CANDRA O..DEVANAGARI VOWEL SIGN AU 92 0970 ; L # Po DEVANAGARI ABBREVIATION SIGN 93 0971 ; L # Lm DEVANAGARI SIGN HIGH SPACING DO [all...] |
DerivedAge.txt | 55 00A0..00AC ; 1.1 # [13] NO-BREAK SPACE..NOT SIGN 57 00AE..01F5 ; 1.1 # [328] REGISTERED SIGN..LATIN SMALL LETTER G WITH ACUTE 64 0374..0375 ; 1.1 # [2] GREEK NUMERAL SIGN..GREEK LOWER NUMERAL SIGN 108 0901..0903 ; 1.1 # [3] DEVANAGARI SIGN CANDRABINDU..DEVANAGARI SIGN VISARGA 110 093C..094D ; 1.1 # [18] DEVANAGARI SIGN NUKTA..DEVANAGARI SIGN VIRAMA 112 0958..0970 ; 1.1 # [25] DEVANAGARI LETTER QA..DEVANAGARI ABBREVIATION SIGN 113 0981..0983 ; 1.1 # [3] BENGALI SIGN CANDRABINDU..BENGALI SIGN VISARG [all...] |
/external/skia/src/core/ |
SkFloatBits.cpp | 11 Floor and Cast are very similar, but Cast applies its sign after all other 74 // apply the sign after we check for overflow 77 // apply the sign before we right-shift 104 // apply the sign after we check for overflow 107 // apply the sign before we right-shift 134 // apply the sign after we check for overflow 137 // apply the sign before we right-shift 157 // record the sign and make value positive 158 int sign = SkExtractSign(value); local 159 value = SkApplySign(value, sign); 191 int sign = SkExtractSign(value); local [all...] |
/frameworks/base/core/java/android/text/method/ |
DigitsKeyListener.java | 34 private static final int SIGN = 1; 64 * plus the minus sign (only at the beginning) and/or decimal point 67 public DigitsKeyListener(boolean sign, boolean decimal) { 68 mSign = sign; 71 int kind = (sign ? SIGN : 0) | (decimal ? DECIMAL : 0); 84 * plus the minus sign (only at the beginning) and/or decimal point 87 public static DigitsKeyListener getInstance(boolean sign, boolean decimal) { 88 int kind = (sign ? SIGN : 0) | (decimal ? DECIMAL : 0) 139 int sign = -1; local [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/ |
11.10-1.js | 90 var sign = ( n < 0 ) ? -1 : 1; 98 return ( sign * Math.floor(Math.abs(n)) ); 102 var sign = ( n < 0 ) ? -1 : 1; 108 n = (sign * Math.floor( Math.abs(n) )) % Math.pow(2,32); 115 var sign = ( n < 0 ) ? -1 : 1; 120 n = sign * Math.floor( Math.abs(n) ) 131 var sign = ( n < 0 ) ? -1 : 1; 137 n = ( sign * Math.floor( Math.abs(n) ) ) % Math.pow(2,16); 165 var sign = ( n < 0 ) ? -1 : 1; 167 b += ( sign == 1 ) ? "0" : "1" [all...] |
11.10-2.js | 89 var sign = ( n < 0 ) ? -1 : 1; 97 return ( sign * Math.floor(Math.abs(n)) ); 101 var sign = ( n < 0 ) ? -1 : 1; 107 n = (sign * Math.floor( Math.abs(n) )) % Math.pow(2,32); 114 var sign = ( n < 0 ) ? -1 : 1; 119 n = sign * Math.floor( Math.abs(n) ) 130 var sign = ( n < 0 ) ? -1 : 1; 136 n = ( sign * Math.floor( Math.abs(n) ) ) % Math.pow(2,16); 164 var sign = ( n < 0 ) ? -1 : 1; 166 b += ( sign == 1 ) ? "0" : "1" [all...] |
11.10-3.js | 89 var sign = ( n < 0 ) ? -1 : 1; 97 return ( sign * Math.floor(Math.abs(n)) ); 101 var sign = ( n < 0 ) ? -1 : 1; 107 n = (sign * Math.floor( Math.abs(n) )) % Math.pow(2,32); 114 var sign = ( n < 0 ) ? -1 : 1; 119 n = sign * Math.floor( Math.abs(n) ) 130 var sign = ( n < 0 ) ? -1 : 1; 136 n = ( sign * Math.floor( Math.abs(n) ) ) % Math.pow(2,16); 164 var sign = ( n < 0 ) ? -1 : 1; 166 b += ( sign == 1 ) ? "0" : "1" [all...] |
11.7.3.js | 93 var sign = ( n < 0 ) ? -1 : 1; 101 return ( sign * Math.floor(Math.abs(n)) ); 105 var sign = ( n < 0 ) ? -1 : 1; 111 n = (sign * Math.floor( Math.abs(n) )) % Math.pow(2,32); 118 var sign = ( n < 0 ) ? -1 : 1; 123 n = sign * Math.floor( Math.abs(n) ) 134 var sign = ( n < 0 ) ? -1 : 1; 140 n = ( sign * Math.floor( Math.abs(n) ) ) % Math.pow(2,16); 168 var sign = ( n < 0 ) ? -1 : 1; 170 b += ( sign == 1 ) ? "0" : "1" [all...] |
/dalvik/dx/src/com/android/dx/rop/cst/ |
CstLiteralBits.java | 27 * is an {@code int} which may be sign-extended to yield this 47 * method is the sign extension of the value. 54 * Returns true if this value can fit in 16 bits with sign-extension. 56 * @return true if the sign-extended lower 16 bits are the same as 69 * Returns true if this value can fit in 8 bits with sign-extension. 71 * @return true if the sign-extended lower 8 bits are the same as
|
/external/dropbear/libtommath/ |
bn_mp_sub_d.c | 35 if (a->sign == MP_NEG) { 36 a->sign = MP_ZPOS; 38 a->sign = c->sign = MP_NEG; 61 c->sign = MP_NEG; 65 c->sign = MP_ZPOS;
|
bn_mp_n_root.c | 34 if ((b & 1) == 0 && a->sign == MP_NEG) { 50 /* if a is negative fudge the sign but keep track */ 51 neg = a->sign; 52 a->sign = MP_ZPOS; 112 /* reset the sign of a first */ 113 a->sign = neg; 118 /* set the sign of the result */ 119 c->sign = neg;
|
bn_mp_mul.c | 18 /* high level multiplication (handles sign) */ 22 neg = (a->sign == b->sign) ? MP_ZPOS : MP_NEG; 59 c->sign = (c->used > 0) ? neg : MP_ZPOS;
|
bn_mp_radix_size.c | 29 *size = mp_count_bits (a) + (a->sign == MP_NEG ? 1 : 0) + 1; 46 /* if it's negative add one for the sign */ 47 if (a->sign == MP_NEG) { 57 t.sign = MP_ZPOS;
|
bn_mp_abs.c | 20 * Simple function copies the input and fixes the sign to positive 34 /* force the sign of b to positive */ 35 b->sign = MP_ZPOS;
|
bn_mp_clamp.c | 22 * Typically very fast. Also fixes the sign if there 35 /* reset the sign flag if used == 0 */ 37 a->sign = MP_ZPOS;
|
bn_mp_copy.c | 59 /* copy used count and sign */ 61 b->sign = a->sign;
|
bn_mp_neg.c | 29 b->sign = (a->sign == MP_ZPOS) ? MP_NEG : MP_ZPOS; 31 b->sign = MP_ZPOS;
|
/dalvik/vm/mterp/armv5te/ |
OP_GOTO_16.S | 10 FETCH_S(r0, 1) @ r0<- ssssAAAA (sign-extended) 11 movs r9, r0, asl #1 @ r9<- byte offset, check sign
|
OP_CONST_4.S | 6 mov r1, r1, asr #28 @ r1<- sssssssB (sign-extended)
|
OP_CONST_WIDE_16.S | 3 FETCH_S(r0, 1) @ r0<- ssssBBBB (sign-extended)
|
/dalvik/vm/mterp/armv6t2/ |
OP_CONST_4.S | 6 mov r1, r1, asr #28 @ r1<- sssssssB (sign-extended)
|
/external/jsr305/ri/src/main/java/javax/annotation/ |
Signed.java | 10 /** Used to annotate a value of unknown sign */
|
/external/openssl/crypto/bn/ |
bn_gcd.c | 213 int sign; local 248 sign = -1; 252 * -sign*X*a == B (mod |n|), 253 * sign*Y*a == A (mod |n|). 269 * (1) -sign*X*a == B (mod |n|), 270 * (2) sign*Y*a == A (mod |n|) 319 * (1) -sign*X*a == B (mod |n|), 320 * (2) sign*Y*a == A (mod |n|), 326 /* -sign*(X + Y)*a == B - A (mod |n|) */ 334 /* sign*(X + Y)*a == A - B (mod |n|) * 513 int sign; local [all...] |