HomeSort by relevance Sort by last modified time
    Searched full:sign (Results 151 - 175 of 2033) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/dropbear/libtommath/
bn_mp_to_signed_bin.c 26 b[0] = (unsigned char) ((a->sign == MP_ZPOS) ? 0 : 1);
bn_mp_zero.c 24 a->sign = MP_ZPOS;
bn_mp_div_2.c 60 b->sign = a->sign;
bn_mp_div_3.c 35 q.sign = a->sign;
bn_mp_lcm.c 49 /* fix the sign to positive */
50 c->sign = MP_ZPOS;
  /external/speex/libspeex/
vq_sse.h 96 int sign; local
99 sign=0;
103 sign=1;
116 if (sign)
  /frameworks/base/media/libeffects/lvm/lib/Common/src/
LVM_Polynomial.c 49 LVM_INT32 Y,A,XTemp,Temp,sign; local
57 sign=Temp;
60 Y+=((*pCoefficients)*sign);
62 sign*=Temp;
  /libcore/luni/src/main/java/java/math/
Conversion.java 55 int sign = val.sign; local
59 if (sign == 0) {
65 if (sign < 0) {
76 int resLengthInChars = (int) (val.abs().bitLength() / bitsForRadixDigit + ((sign < 0) ? 1
124 if (sign == -1) {
139 int sign = val.sign; local
146 if (sign == 0) {
176 // +1 - one char for sign if needed
    [all...]
  /bionic/libm/arm/
_fpmath.h 36 unsigned int sign :1; member in struct:IEEEl2bits::__anon547
38 unsigned int sign :1;
  /bionic/libm/man/
signbit.3 32 .Nd "determine whether a floating-point number's sign is negative"
44 and returns non-zero if the value of its sign is negative, otherwise 0.
  /bionic/libm/sh/
_fpmath.h 40 unsigned int sign :1; member in struct:IEEEl2bits::__anon558
42 unsigned int sign :1;
  /bionic/libm/src/
s_copysignl.c 40 ux.bits.sign = uy.bits.sign;
  /dalvik/vm/mterp/armv5te/
binopLit8.S 16 FETCH_S(r3, 1) @ r3<- ssssCCBB (sign-extended for CC)
20 movs r1, r3, asr #8 @ r1<- ssssssCC (sign extended)
  /dalvik/vm/mterp/x86-atom/
binopLit16.S 27 * sign extended 16-bit literal value and store the
38 FETCHs 1, %edx # %edx<- +CCCC, sign-extended literal
  /external/skia/include/core/
SkMath.h 59 /** If sign == -1, returns -n, else sign must be 0, and returns n.
62 static inline int32_t SkApplySign(int32_t n, int32_t sign) {
63 SkASSERT(sign == 0 || sign == -1);
64 return (n ^ sign) - sign;
67 /** Return x with the sign of y */
  /external/webkit/WebCore/platform/text/
TextBreakIteratorICU.cpp 181 "$HinV = \\u094D;" // Devanagari Sign Virama
184 "$BenV = \\u09CD;" // Bengali Sign Virama
187 "$PanV = \\u0A4D;" // Gurmukhi Sign Virama
190 "$GujV = \\u0ACD;" // Gujarati Sign Virama
193 "$OriV = \\u0B4D;" // Oriya Sign Virama
196 "$TelV = \\u0C4D;" // Telugu Sign Virama
199 "$KanV = \\u0CCD;" // Kannada Sign Virama
202 "$MalV = \\u0D4D;" // Malayalam Sign Virama
  /libcore/support/src/test/java/tests/security/
SignatureHelper.java 31 private final String plainData = "some data do sign and verify";
65 signed = signature.sign();
  /frameworks/base/docs/html/guide/publishing/
app-signing.jd 11 <li>You can sign with a self-signed key</li>
12 <li>How you sign your apps is critical &mdash; read this document carefully</li>
27 <li><a href="#signapp">Sign your application with your private key</a></li>
29 <li><a href="#ExportWizard">Compile and sign with Eclipse ADT</a></li>
64 <li>You can use self-signed certificates to sign your applications. No certificate authority
66 <li>When you are ready to release your application for end-users, you must sign it with a suitable private
74 sign your application .apk files.</li>
91 the debug key to sign the application .apk file. Because the password is known, the tools
95 and then sign the .apk <span style="color:red">with your private key</span>.
99 you first compile your application to an <em>unsigned</em> .apk. You must then sign
    [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
eurocreg.c 22 * the U+20AC Euro sign.
30 * My (Markus) suspicion is that some files got Euro sign mappings added manually,
40 * codepage 858, with the main difference being the additional Euro sign.
42 * codepages, and Microsoft Windows 2000's codepage 850 does not contain a Euro sign mapping.
43 * Therefore, cp850 must not support the Euro sign.
45 * Euro sign, using its new name.
  /external/dropbear/libtommath/mtest/
mpi.c 287 SIGN(mp) = MP_ZPOS;
320 SIGN(mp) = SIGN(from);
376 /* Copy the precision and sign from the original */
378 SIGN(to) = SIGN(from);
470 SIGN(mp) = MP_ZPOS;
517 SIGN(mp) = MP_NEG;
533 Compute the sum b = a + d, for a single digit d. Respects the sign of
546 if(SIGN(b) == MP_ZPOS)
    [all...]
  /external/icu4c/test/cintltst/
eurocreg.c 22 * the U+20AC Euro sign.
30 * My (Markus) suspicion is that some files got Euro sign mappings added manually,
40 * codepage 858, with the main difference being the additional Euro sign.
42 * codepages, and Microsoft Windows 2000's codepage 850 does not contain a Euro sign mapping.
43 * Therefore, cp850 must not support the Euro sign.
45 * Euro sign, using its new name.
  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
SDL_fbmatrox.c 127 Uint32 sign; local
158 /* Set up the blit direction (sign) flags */
159 sign = 0;
161 sign |= 1;
164 sign |= 4;
206 mga_out32(MGAREG_SGN, sign);
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.5.1.js 37 The sign of the result is positive if both operands have the same sign,
41 The sign is determined by the rule already stated above.
43 signed infinity. The sign is determined by the rule already stated above.
47 the result is then an infinity of appropriate sign. If the magnitude is
49 of appropriate sign. The ECMAScript language requires support of gradual
  /external/chromium/third_party/icu/source/data/unidata/
DerivedNumericValues.txt 71 1018A ; 0.0 ; ; 0 # No GREEK ZERO SIGN
84 1245F ; 0.125 ; ; 1/8 # Nl CUNEIFORM NUMERIC SIGN ONE EIGHTH ASH
91 12461 ; 0.16666667 ; ; 1/6 # Nl CUNEIFORM NUMERIC SIGN OLD ASSYRIAN ONE SIXTH
106 12460 ; 0.25 ; ; 1/4 # Nl CUNEIFORM NUMERIC SIGN ONE QUARTER ASH
107 12462 ; 0.25 ; ; 1/4 # Nl CUNEIFORM NUMERIC SIGN OLD ASSYRIAN ONE QUARTER
114 1245A ; 0.33333333 ; ; 1/3 # Nl CUNEIFORM NUMERIC SIGN ONE THIRD DISH
115 1245D ; 0.33333333 ; ; 1/3 # Nl CUNEIFORM NUMERIC SIGN ONE THIRD VARIANT FORM A
138 10175..10176 ; 0.5 ; ; 1/2 # No [2] GREEK ONE HALF SIGN..GREEK ONE HALF SIGN ALTERNATE FORM
157 10177 ; 0.66666667 ; ; 2/3 # No GREEK TWO THIRDS SIGN
    [all...]
  /external/icu4c/data/unidata/
DerivedNumericValues.txt 77 1018A ; 0.0 ; ; 0 # No GREEK ZERO SIGN
112 1245F ; 0.125 ; ; 1/8 # Nl CUNEIFORM NUMERIC SIGN ONE EIGHTH ASH
125 12461 ; 0.16666667 ; ; 1/6 # Nl CUNEIFORM NUMERIC SIGN OLD ASSYRIAN ONE SIXTH
150 12460 ; 0.25 ; ; 1/4 # Nl CUNEIFORM NUMERIC SIGN ONE QUARTER ASH
151 12462 ; 0.25 ; ; 1/4 # Nl CUNEIFORM NUMERIC SIGN OLD ASSYRIAN ONE QUARTER
159 1245A ; 0.33333333 ; ; 1/3 # Nl CUNEIFORM NUMERIC SIGN ONE THIRD DISH
160 1245D ; 0.33333333 ; ; 1/3 # Nl CUNEIFORM NUMERIC SIGN ONE THIRD VARIANT FORM A
184 10175..10176 ; 0.5 ; ; 1/2 # No [2] GREEK ONE HALF SIGN..GREEK ONE HALF SIGN ALTERNATE FORM
204 10177 ; 0.66666667 ; ; 2/3 # No GREEK TWO THIRDS SIGN
    [all...]

Completed in 481 milliseconds

1 2 3 4 5 67 8 91011>>