HomeSort by relevance Sort by last modified time
    Searched full:sign (Results 351 - 375 of 1662) sorted by null

<<11121314151617181920>>

  /external/fdlibm/
s_floor.c 45 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */
  /external/icu4c/tools/genrb/
rbutil.c 91 /* if i is negative add the negative sign */
  /external/kernel-headers/original/asm-x86/
elf.h 58 #define R_X86_64_32S 11 /* Direct 32 bit sign extended */
60 #define R_X86_64_PC16 13 /* 16 bit sign extended pc relative */
61 #define R_X86_64_8 14 /* Direct 8 bit sign extended */
62 #define R_X86_64_PC8 15 /* 8 bit sign extended pc relative */
processor-flags.h 12 #define X86_EFLAGS_SF 0x00000080 /* Sign Flag */
  /external/opencore/codecs_v2/audio/gsm_amr/amr_nb/dec/src/
d2_11pf.h 84 Word16 sign, /* i : signs of 2 pulses. */
  /external/opencore/codecs_v2/audio/gsm_amr/amr_nb/enc/src/
c2_9pf.cpp 131 Word16 dn_sign[], /* i : sign of dn[] */
135 Word16 sign[], /* o : sign of 2 pulses */
177 sign = pointer to the signs of 2 pulses (Word16)
248 Word16 * sign // o : Signs of 2 pulses
265 index = build_code(subNr, codvec, dn_sign, code, h, y, sign);
311 Word16 * sign, /* o : Signs of 2 pulses */
395 sign,
841 dn_sign = vector containing the sign of pulses (Word16)
846 sign = vector containing the sign of 2 pulses (Word16
    [all...]
  /external/openssl/android.testssl/
testssl.sh 68 echo "sign user certificate request with the just created CA via 'x509'"
  /external/openssl/apps/
CA.com 7 $! CA -sign ... will sign the generated request and output
57 $ echo "usage: CA -newcert|-newreq|-newca|-sign|-verify"
153 $ IF ((prog_opt .EQS. "-sign") .OR. (prog_opt .EQS. "-signreq"))
  /external/openssl/crypto/pkcs7/
pk7_smime.c 226 p7->d.sign->cert))
239 X509_STORE_CTX_set0_crls(&cert_ctx, p7->d.sign->crl);
374 && p7->d.sign->cert) signer =
375 X509_find_by_issuer_and_serial (p7->d.sign->cert,
  /external/openssl/patches/
testssl.sh 68 echo "sign user certificate request with the just created CA via 'x509'"
  /external/qemu/audio/
audio.c 684 int bits = 8, sign = 0; local
688 sign = 1;
693 sign = 1;
699 sign = 1;
706 && info->sign == sign
713 int bits = 8, sign = 0, shift = 0; local
717 sign = 1;
722 sign = 1;
729 sign = 1
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Math/
15.8.2.14.js 25 returns a number value x with a positive sign
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/TypeConversion/
9.5-2.js 36 3 compute (sign (result(1)) * floor(abs(result 1)))
75 var sign = ( n < 0 ) ? -1 : 1;
81 n = (sign * Math.floor( Math.abs(n) )) % Math.pow(2,32);
82 if ( sign == -1 ) {
9.8.1.js 56 character 'e', followed by a plus sign '+' or minus
57 sign '' according to whether n1 is positive or
65 sign '+' or minus sign '' according to whether n1 is
  /external/zlib/contrib/dotzlib/DotZLib/
AssemblyInfo.cs 32 // In order to sign your assembly you must specify a key to use. Refer to the
  /frameworks/base/media/libstagefright/codecs/amrnb/dec/src/
d2_11pf.h 84 Word16 sign, /* i : signs of 2 pulses. */
  /frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
c2_9pf.cpp 131 Word16 dn_sign[], /* i : sign of dn[] */
135 Word16 sign[], /* o : sign of 2 pulses */
177 sign = pointer to the signs of 2 pulses (Word16)
248 Word16 * sign // o : Signs of 2 pulses
265 index = build_code(subNr, codvec, dn_sign, code, h, y, sign);
311 Word16 * sign, /* o : Signs of 2 pulses */
395 sign,
841 dn_sign = vector containing the sign of pulses (Word16)
846 sign = vector containing the sign of 2 pulses (Word16
    [all...]
  /sdk/eclipse/buildConfig/
build.properties 87 #Set to true if you want to sign jars
89 #sign.alias=<alias>
90 #sign.keystore=<keystore location>
91 #sign.storepass=<keystore password>
  /dalvik/libcore/math/src/test/java/org/apache/harmony/math/tests/java/math/
BigIntegerConvertTest.java 831 int sign = 1; local
833 int aNumber = new BigInteger(sign, aBytes).intValue();
849 int sign = -1; local
851 int aNumber = new BigInteger(sign, aBytes).intValue();
884 int sign = -1; local
886 int aNumber = new BigInteger(sign, aBytes).intValue();
    [all...]
  /external/qemu/elff/
dwarf_defs.h 143 * end is all zeroes or sign extension bits).
156 * they consist entirely of sign extension bits. Consider the 32-bit integer
157 * -2. The three high level bytes of the number are sign extension, thus LEB128
174 * sign - If true, the caller expects the LEB128 to contain a signed
178 void get_common(Dwarf_Value* value, bool sign) const {
182 value->type = sign ? DWARF_VALUE_S32 : DWARF_VALUE_U32;
194 * byte controls the sign. If 7-th bit of the last LEB128 byte is set,
215 if (sign) {
229 if (sign) {
266 const void* process(Dwarf_Value* value, bool sign) const {
    [all...]
  /bionic/libm/man/
lgamma.3 90 returns the sign of \(*G(x).
99 but the caller must provide an integer to store the sign of \(*G(x).
  /bionic/libm/src/
e_atan2.c 72 m = ((hy>>31)&1)|((hx>>30)&2); /* 2*sign(x)+sign(y) */
e_atan2f.c 45 m = ((hy>>31)&1)|((hx>>30)&2); /* 2*sign(x)+sign(y) */
  /dalvik/libcore/luni/src/main/java/java/util/
Date.java 386 char sign = 0; local
425 if (sign == '+' || sign == '-') {
429 minutesOffset = sign == '-' ? -Integer
436 zoneOffset = sign == '-' ? -digit : digit;
437 sign = 0;
524 sign = next;
527 sign = 0;
  /dalvik/libcore/security/src/main/files/cacerts/
256fd83b.0 29 Digital Signature, Certificate Sign, CRL Sign

Completed in 64 milliseconds

<<11121314151617181920>>