HomeSort by relevance Sort by last modified time
    Searched refs:sign (Results 1 - 25 of 1305) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/vboot_reference/tests/
external_rsa_signer.sh 5 echo "Reads data to sign from stdin, encrypted data is output to stdout"
9 openssl rsautl -sign -inkey $1
  /external/pdfium/third_party/bigint/
BigInteger.cc 13 // Copy sign
14 sign = x.sign;
19 BigInteger::BigInteger(const Blk *b, Index blen, Sign s) : mag(b, blen) {
24 sign = zero;
28 // If the magnitude is zero, force the sign to zero.
29 sign = mag.isZero() ? zero : s;
33 * that the sign is a valid member of the enumeration. Oh well. */
38 BigInteger::BigInteger(const BigUnsigned &x, Sign s) : mag(x) {
43 sign = zero
    [all...]
  /art/runtime/interpreter/mterp/arm/
op_goto.S 8 sbfx rINST, rINST, #8, #8 @ rINST<- ssssssAA (sign-extended)
op_goto_16.S 8 FETCH_S rINST, 1 @ rINST<- ssssAAAA (sign-extended)
  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestSign.rs 24 return sign(inV);
28 return sign(inV);
32 return sign(inV);
36 return sign(inV);
40 return sign(inV);
44 return sign(inV);
48 return sign(inV);
52 return sign(inV);
  /external/crcalc/src/com/hp/creals/
StringFloatRep.java 42 sign = s;
48 * The sign associated with this approximation. May be -1, _1, or zero.
50 public int sign; field in class:StringFloatRep
66 * Produce a textual representation including the sign and exponent.
70 (sign < 0? "-" : "") + mantissa + "E" + Integer.toString(exponent)
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d1035pf.cpp 94 represented by sign+position
130 Word16 index[], // (i) : index of 10 pulses (sign+position)
134 Word16 i, j, pos1, pos2, sign, tmp;
157 sign = 4096; // +1.0
161 sign = -4096; // -1.0
164 cod[pos1] = sign;
176 sign = negate (sign);
178 cod[pos2] = add (cod[pos2], sign);
208 Word16 index[], /* (i) : index of 10 pulses (sign+position) *
213 Word16 sign, tmp; local
    [all...]
d2_11pf.h 84 Word16 sign, /* i : signs of 2 pulses. */
d3_14pf.h 105 Word16 sign, /* i : signs of 3 pulses. */
d4_17pf.h 106 Word16 sign, /* i : signs of 4 pulses. */
  /toolchain/binutils/binutils-2.25/libiberty/
copysign.c 10 unsigned int sign : 1; member in struct:__anon75840::__anon75841
20 unsigned int sign : 1; member in struct:__anon75840::__anon75842
55 unsigned int sign : 1; member in struct:__anon75844::__anon75845
70 unsigned int sign : 1; member in struct:__anon75844::__anon75846
90 unsigned int sign : 1; member in struct:__anon75848::__anon75849
97 unsigned int sign:1; member in struct:__anon75848::__anon75850
117 unsigned int sign : 1; member in struct:__anon75851::__anon75852
125 unsigned int sign:1; member in struct:__anon75851::__anon75853
140 a.number.sign =b.number.sign;
    [all...]
  /bionic/libm/
signbit.c 38 return (u.bits.sign);
46 return (u.bits.sign);
55 return (u.bits.sign);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fabsl.c 41 u.bits.sign = 0;
s_copysignl.c 40 ux.bits.sign = uy.bits.sign;
s_cbrtf.c 36 u_int32_t sign; local
40 sign=hx&0x80000000; /* sign= sign(x) */
41 hx ^=sign;
51 SET_FLOAT_WORD(t,sign|((high&0x7fffffff)/3+B2));
53 SET_FLOAT_WORD(t,sign|(hx/3+B1));
s_rintl.c 59 int ex, sign; local
70 sign = expsign >> 15;
79 x += shift[sign];
80 x -= shift[sign];
83 * If the result is +-0, then it must have the same sign as x, but
84 * the above calculation doesn't always give this. Fix up the sign.
87 return (zero[sign]);
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
cor_h.h 83 Word16 sign[], /* (i) : sign of d[n] */
set_sign.h 105 Word16 sign[], /* o : sign of dn[] */
113 Word16 sign[], /* o : sign of d[n] */
  /external/nanopb-c/examples/using_double_on_avr/
double_conversion.c 12 * Single precision: sign, 8-bit exp, 23-bit frac.
13 * Double precision: sign, 11-bit exp, 52-bit frac.
20 uint8_t sign; local
25 sign = (in.i >> 31) & 1;
57 mantissa |= (uint64_t)sign << 63;
64 uint8_t sign; local
70 sign = (value >> 63) & 1;
83 if (sign)
91 if (sign)
118 out.i |= (uint32_t)sign << 31
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/score/
addi.s 14 .macro tran1632 insn32, insn16, sign
18 \insn32 r0, \sign * 1
21 \insn32 r15, \sign * 16
24 \insn32 r15, \sign * 1024 * 16
  /external/deqp/framework/delibs/debase/
deFloat16.c 30 deUint32 sign; local
40 sign = (x.u >> 16u) & 0x00008000u;
49 return (deFloat16) sign;
64 return (deFloat16) (sign | mantissa);
71 return (deFloat16) (sign | 0x7c00u);
77 return (deFloat16) (sign | 0x7c00u | mantissa | (mantissa == 0u));
95 return (deFloat16) (sign | 0x7c00u);
98 return (deFloat16) (sign | ((deUint32)expotent << 10u) | (mantissa >> 13u));
104 deUint32 sign; local
115 sign = ((deUint32)val16 >> 15u) & 0x00000001u
    [all...]
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfRational.cpp 94 int sign; local
98 sign = 1; // positive
102 sign = -1; // negative
114 n = sign; // infinity
121 n = sign * (int) floor (x * d + 0.5);
  /ndk/sources/android/support/src/stdio/
fpmath.h 51 unsigned int sign :1; member in struct:IEEEf2bits::__anon35608
53 unsigned int sign :1;
70 unsigned int sign :1; member in struct:IEEEd2bits::__anon35609
76 unsigned int sign :1;
78 unsigned int sign :1;
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
Duration.java 31 public int sign; // 1 or -1 field in class:Duration
40 sign = 1;
49 sign = 1;
66 sign = -1;
131 cal.add(Calendar.DAY_OF_MONTH, sign*weeks*7);
132 cal.add(Calendar.DAY_OF_MONTH, sign*days);
133 cal.add(Calendar.HOUR, sign*hours);
134 cal.add(Calendar.MINUTE, sign*minutes);
135 cal.add(Calendar.SECOND, sign*seconds);
143 long factor = 1000 * sign;
    [all...]
  /external/v8/test/cctest/
test-dtoa.cc 64 int sign; local
66 DoubleToAscii(0.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
70 DoubleToAscii(0.0, DTOA_FIXED, 2, buffer, &sign, &length, &point);
75 DoubleToAscii(0.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point);
80 DoubleToAscii(1.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
84 DoubleToAscii(1.0, DTOA_FIXED, 3, buffer, &sign, &length, &point);
90 DoubleToAscii(1.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point);
96 DoubleToAscii(1.5, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
100 DoubleToAscii(1.5, DTOA_FIXED, 10, buffer, &sign, &length, &point);
106 DoubleToAscii(1.5, DTOA_PRECISION, 10, buffer, &sign, &length, &point)
270 int sign; local
290 int sign; local
313 int sign; local
    [all...]

Completed in 966 milliseconds

1 2 3 4 5 6 7 8 91011>>