/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:__anon76247::__anon76248 20 unsigned int sign : 1; member in struct:__anon76247::__anon76249 55 unsigned int sign : 1; member in struct:__anon76251::__anon76252 70 unsigned int sign : 1; member in struct:__anon76251::__anon76253 90 unsigned int sign : 1; member in struct:__anon76255::__anon76256 97 unsigned int sign:1; member in struct:__anon76255::__anon76257 117 unsigned int sign : 1; member in struct:__anon76258::__anon76259 125 unsigned int sign:1; member in struct:__anon76258::__anon76260 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...] |
/prebuilts/go/darwin-x86/src/math/ |
copysign.go | 8 // of x and the sign of y. 10 const sign = 1 << 63 11 return Float64frombits(Float64bits(x)&^sign | Float64bits(y)&sign)
|
/prebuilts/go/linux-x86/src/math/ |
copysign.go | 8 // of x and the sign of y. 10 const sign = 1 << 63 11 return Float64frombits(Float64bits(x)&^sign | Float64bits(y)&sign)
|
/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::__anon36016 53 unsigned int sign :1; 70 unsigned int sign :1; member in struct:IEEEd2bits::__anon36017 76 unsigned int sign :1; 78 unsigned int sign :1;
|