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

1 2 3 45 6 7 8 91011>>

  /external/dropbear/libtommath/
bn_mp_mod.c 34 if (t.sign != b->sign) {
bn_mp_read_signed_bin.c 30 a->sign = MP_ZPOS;
32 a->sign = MP_NEG;
  /external/kernel-headers/original/linux/
calc64.h 31 * Sign aware variation of the above. On some architectures a
33 * is avoided by the sign check.
  /frameworks/base/media/libeffects/lvm/lib/Common/lib/
ScalarArithmetic.h 42 * MSB (16) = sign bit
46 * MSB (32) = sign bit
  /libcore/luni/src/main/native/
cbigint.h 27 /* IEEE floats consist of: sign bit, exponent field, significand field
28 single: 31 = sign bit, 30..23 = exponent (8 bits), 22..0 = significand (23 bits)
29 double: 63 = sign bit, 62..52 = exponent (11 bits), 51..0 = significand (52 bits)
35 positive == sign bit clear
36 negative == sign bit set
  /external/libvpx/vp8/encoder/
quantize.c 46 sz = (z >> 31); // sign of z
54 x = (y ^ sz) - sz; // get the sign back
99 sz = (z >> 31); // sign of z
107 x = (y ^ sz) - sz; // get the sign back
158 /* Sign of z. */
166 /* Put the sign back. */
199 sz = (z >> 31); // sign of z
203 x = (y ^ sz) - sz; // get the sign back
246 sz = (z >> 31); // sign of z
252 x = (y ^ sz) - sz; // get the sign bac
    [all...]
  /external/icu4c/data/unidata/
UnicodeData.txt 36 0023;NUMBER SIGN;Po;0;ET;;;;;N;;;;;
37 0024;DOLLAR SIGN;Sc;0;ET;;;;;N;;;;;
38 0025;PERCENT SIGN;Po;0;ET;;;;;N;;;;;
44 002B;PLUS SIGN;Sm;0;ES;;;;;N;;;;;
61 003C;LESS-THAN SIGN;Sm;0;ON;;;;;Y;;;;;
62 003D;EQUALS SIGN;Sm;0;ON;;;;;N;;;;;
63 003E;GREATER-THAN SIGN;Sm;0;ON;;;;;Y;;;;;
163 00A2;CENT SIGN;Sc;0;ET;;;;;N;;;;;
164 00A3;POUND SIGN;Sc;0;ET;;;;;N;;;;;
165 00A4;CURRENCY SIGN;Sc;0;ET;;;;;N;;;;
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
set_sign.cpp 80 These functions are used to build a sign vector according
129 sign = buffer containing sign of dn elements (Word16)
138 sign buffer is modified to contain the sign information for the
153 This function builds sign vector according to dn buffer It also finds
171 Word16 sign[], o : sign of dn[]
180 // set sign according to dn[]
186 sign[i] = 32767
    [all...]
  /external/openssl/crypto/pkcs7/
pk7_lib.c 78 if (ret && PKCS7_type_is_data(p7->d.sign->contents))
81 os=p7->d.sign->contents->d.data;
83 p7->d.sign->contents->d.data = NULL;
95 if(!p7->d.sign || !p7->d.sign->contents->d.ptr)
137 if (p7->d.sign->contents != NULL)
138 PKCS7_free(p7->d.sign->contents);
139 p7->d.sign->contents=p7_data;
170 if ((p7->d.sign=PKCS7_SIGNED_new()) == NULL)
172 if (!ASN1_INTEGER_set(p7->d.sign->version,1)
    [all...]
  /external/chromium/third_party/icu/source/data/unidata/
UnicodeData.txt 36 0023;NUMBER SIGN;Po;0;ET;;;;;N;;;;;
37 0024;DOLLAR SIGN;Sc;0;ET;;;;;N;;;;;
38 0025;PERCENT SIGN;Po;0;ET;;;;;N;;;;;
44 002B;PLUS SIGN;Sm;0;ES;;;;;N;;;;;
61 003C;LESS-THAN SIGN;Sm;0;ON;;;;;Y;;;;;
62 003D;EQUALS SIGN;Sm;0;ON;;;;;N;;;;;
63 003E;GREATER-THAN SIGN;Sm;0;ON;;;;;Y;;;;;
163 00A2;CENT SIGN;Sc;0;ET;;;;;N;;;;;
164 00A3;POUND SIGN;Sc;0;ET;;;;;N;;;;;
165 00A4;CURRENCY SIGN;Sc;0;ET;;;;;N;;;;
    [all...]
  /bionic/libm/src/
s_cbrt.c 41 u_int32_t sign; local
45 sign=hx&0x80000000; /* sign= sign(x) */
46 hx ^=sign;
71 SET_HIGH_WORD(t,sign|((high&0x7fffffff)/3+B2));
73 SET_HIGH_WORD(t,sign|(hx/3+B1));
s_fmax.c 49 if (u[0].bits.sign != u[1].bits.sign)
50 return (u[u[0].bits.sign].d);
s_fmaxf.c 49 if (u[0].bits.sign != u[1].bits.sign)
50 return (u[u[0].bits.sign].f);
s_fmaxl.c 51 if (u[0].bits.sign != u[1].bits.sign)
52 return (u[0].bits.sign ? y : x);
s_fmin.c 49 if (u[0].bits.sign != u[1].bits.sign)
50 return (u[u[1].bits.sign].d);
s_fminf.c 49 if (u[0].bits.sign != u[1].bits.sign)
50 return (u[u[1].bits.sign].f);
s_fminl.c 51 if (u[0].bits.sign != u[1].bits.sign)
52 return (u[1].bits.sign ? y : x);
  /external/dropbear/libtomcrypt/src/pk/dsa/
dsa_sign_hash.c 15 DSA implementation, sign a hash, Tom St Denis
21 Sign a hash with DSA
22 @param in The hash to sign
23 @param inlen The length of the hash to sign
112 Sign a hash with DSA
113 @param in The hash to sign
114 @param inlen The length of the hash to sign
  /external/skia/include/core/
SkFloatBits.h 22 /** Convert a sign-bit int (i.e. float interpreted as int) into a 2s compliement
34 /** Convert a 2s compliment int to a sign-bit (i.e. int interpreted as float).
38 int sign = x >> 31; local
40 x = (x ^ sign) - sign;
41 // set the sign bit as needed
42 x |= sign << 31;
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.6.3.js 37 The sum of two infinities of opposite sign is NaN.
38 The sum of two infinities of the same sign is the infinity of that sign.
41 two zeros of opposite sign, is +0.
45 sign is +0.
47 involved, and the operands have the same sign or have different
51 the result is then an infinity of appropriate sign. The ECMAScript
  /frameworks/base/core/jni/android/opengl/
poly_clip.cpp 41 #define CLIP_AND_SWAP(elem, sign, k, p, q, r) { \
42 poly_clip_to_halfspace(p, q, &v->elem-(float *)v, sign, sign*k); \
49 * copying the portion satisfying sign*s[index] < k*sw into q,
59 void poly_clip_to_halfspace(Poly* p, Poly* q, int index, float sign, float k)
72 tu = sign*COORD(u, index) - u->sw*k;
76 tv = sign*COORD(v, index) - v->sw*k;
  /packages/apps/Calculator/res/values/
strings.xml 46 <!-- Do not translate. Unicode division sign; don't translate. Displayed as button on screen. -->
48 <!-- Do not translate. Unicode multiplication sign; don't translate. Displayed as button on screen. -->
50 <!-- Do not translate. Plus sign, displayed as button on screen -->
52 <!-- Do not translate. Unicode minus sign; don't translate. Displayed as button on screen. -->
56 <!-- Do not translate. Equal sign; don't translate. Displayed as button on screen. -->
67 <!-- Do not translate. Unicode pi sign; don't translate. Displayed as button on screen. -->
79 <!-- Do not translate. Unicode square root sign; don't translate. Displayed on button on screen. -->
  /external/dropbear/libtommath/mtest/
mtest.c 207 a.sign = MP_ZPOS;
208 b.sign = MP_ZPOS;
221 a.sign = MP_ZPOS;
222 b.sign = MP_ZPOS;
237 a.sign = b.sign = c.sign = 0;
252 b.sign = MP_ZPOS;
253 a.sign = MP_ZPOS;
  /dalvik/docs/opcodes/
opcode-12-const.html 17 Move the given literal value (sign-extended to 32 bits, if necessary) into the
77 Otherwise, if B is a 4 bit or 16 bit constant, it is sign-extended to 32
78 bits, that is, B'=sign-extended(B).
opcode-16-const-wide.html 17 Move the given literal value (sign-extended to 64 bits) into the specified
77 Otherwise, if B is a 16 bit or 32 bit constant, it is sign-extended to
78 64 bits, that is, B'=sign-extended(B).

Completed in 1496 milliseconds

1 2 3 45 6 7 8 91011>>