/external/valgrind/VEX/priv/ |
guest_generic_x87.c | 61 S is the sign bit. For runs X----X, at least one of the Xs must be 63 there is an explicitly represented leading 1, and a sign bit, 77 sign bit, giving 64 in total. 109 UChar sign; local 111 sign = toUChar( (f64[7] >> 7) & 1 ); 132 f80[9] = toUChar( sign << 7 ); 163 f80[9] = toUChar( (sign << 7) | ((bexp >> 8) & 0xFF) ); 180 f80[9] = toUChar( (sign << 7) | 0x7F ); 198 f80[9] = toUChar( (sign << 7) | 0x7F ); 207 f80[9] = toUChar( (sign << 7) | 0x7F ) 250 UChar sign; local 439 UInt sign, expExp; local [all...] |
/external/valgrind/memcheck/tests/ |
vcpu_fbench.c | 404 int sign; local 407 x = (((sign= (x < 0.0)) != 0) ? -x: x); 414 sign = !sign; 435 return sign ? -r : r; 496 int sign, l, y; local 499 x = (((sign = (x < 0.0)) != 0) ? -x : x); 527 return sign ? -a : a;
|
/external/valgrind/perf/ |
fbench.c | 400 int sign; local 403 x = (((sign= (x < 0.0)) != 0) ? -x: x); 410 sign = !sign; 431 return sign ? -r : r; 492 int sign, l, y; local 495 x = (((sign = (x < 0.0)) != 0) ? -x : x); 523 return sign ? -a : a;
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
bandwidth_estimator.c | 173 int32_t sign; local 443 sign = 1; 446 sign = -1; 473 bweStr->recJitterShortTerm = 205 * (arrTimeNoise << 3) * sign + 753 /* adjust bw proportionally to negative average jitter sign */ 773 /* adjust Rate if jitter sign is mostly constant */ [all...] |
/frameworks/av/drm/libmediadrm/ |
Drm.cpp | 706 status_t Drm::sign(Vector<uint8_t> const &sessionId, function in class:android::Drm 722 return mPlugin->sign(sessionId, keyId, message, signature);
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
c4t64fx.c | 76 Word16 sign[], /* (i) sign vector */ 86 Word16 sign[], /* (i) sign vector */ 96 Word16 sign[], /* (i) sign vector */ 141 Word16 dn2[L_SUBFR], sign[L_SUBFR], vec[L_SUBFR]; local 238 * Find sign for each pulse position. * 280 /* set sign according to dn2[] = k_cn*cn[] + k_dn*dn[] */ 287 sign[i] = 32767; /* sign = +1 (Q12) * [all...] |
/frameworks/base/keystore/java/android/security/ |
KeyStore.java | 316 public byte[] sign(String key, byte[] data) { method in class:KeyStore 318 return mBinder.sign(key, data);
|
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/ |
BridgeTypedArray.java | 915 int sign = 1; local [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
vp9_tokenize.c | 116 int sign = 1; local 120 sign = 0; 123 const int a = sign ? -i : i; 124 int eb = sign; 151 cost += vp9_cost_bit(vp9_prob_half, extra & 1); /* sign */
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/ |
BigIntegerConvertTest.java | 572 int sign = 1; local 574 int aNumber = new BigInteger(sign, aBytes).intValue(); 584 int sign = -1; local 586 int aNumber = new BigInteger(sign, aBytes).intValue(); 607 int sign = -1; local 609 int aNumber = new BigInteger(sign, aBytes).intValue(); 669 assertEquals("incorrect sign", 1, aNumber.signum()); 684 assertEquals("incorrect sign", -1, aNumber.signum()); 699 assertEquals("incorrect sign", 1, aNumber.signum()); 714 assertEquals("incorrect sign", -1, aNumber.signum()) [all...] |
/libcore/ojluni/src/main/java/java/lang/ |
Long.java | 81 * result is the ASCII minus sign {@code '-'} 83 * negative, no sign character appears in the result. 287 char sign = 0; local 290 sign = '-'; 325 if (sign != 0) { 326 buf[--charPos] = sign; 347 * ASCII minus sign {@code '-'} (<code>'\u002D'</code>) to 348 * indicate a negative value or an ASCII plus sign {@code '+'} 372 * radix, except that the first character may be a minus sign 373 * {@code '-'} (<code>'\u002d'</code>) or plus sign {@cod [all...] |
/libcore/ojluni/src/main/java/java/util/ |
TimeZone.java | 83 * <code>GMT</code> <i>Sign</i> <i>Hours</i> <code>:</code> <i>Minutes</i> 84 * <code>GMT</code> <i>Sign</i> <i>Hours</i> <i>Minutes</i> 85 * <code>GMT</code> <i>Sign</i> <i>Hours</i> 86 * <i>Sign:</i> one of 111 * <code>GMT</code> <i>Sign</i> <i>TwoDigitHours</i> <code>:</code> <i>Minutes</i> 112 * <i>Sign:</i> one of 429 char sign = '+'; local 431 sign = '-'; 438 builder.append(sign); 604 char sign = id.charAt(3) local [all...] |
/ndk/sources/cxx-stl/stlport/src/ |
num_put_float.cpp | 216 static inline char* _Stl_ecvtR(double x, int n, int* pt, int* sign, char* buf) 217 { return ecvtbuf(x, n, pt, sign, buf); } 218 static inline char* _Stl_fcvtR(double x, int n, int* pt, int* sign, char* buf) 219 { return fcvtbuf(x, n, pt, sign, buf); } 224 static inline char* _Stl_ecvtR(long double x, int n, int* pt, int* sign, char* buf) 225 { return ecvtbuf(x, n, pt, sign, buf); } 226 static inline char* _Stl_fcvtR(long double x, int n, int* pt, int* sign, char* buf) 227 { return fcvtbuf(x, n, pt, sign, buf); } 231 static inline char* _Stl_ecvtR(double x, int n, int* pt, int* sign, char* buf, size_t bsize) 232 { return ecvt_r(x, n, pt, sign, buf, bsize) == 0 ? buf : 0; 862 int decpt, sign; local [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
GradControl.java | 153 int sign = 1; local
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/cloog/ |
clast.h | 116 int sign; member in struct:clast_equation
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/ |
clast.h | 116 int sign; member in struct:clast_equation
|
/prebuilts/go/darwin-x86/src/fmt/ |
scan.go | 578 sign = "+-" 660 s.accept(sign) // If there's a sign, it will be left in the token buffer. 717 // leading sign? 718 s.accept(sign) 734 // leading sign? 735 s.accept(sign) 751 // Must now have a sign. 755 // Sign is now in buffer 577 sign = "+-" const
|
/prebuilts/go/linux-x86/src/fmt/ |
scan.go | 578 sign = "+-" 660 s.accept(sign) // If there's a sign, it will be left in the token buffer. 717 // leading sign? 718 s.accept(sign) 734 // leading sign? 735 s.accept(sign) 751 // Must now have a sign. 755 // Sign is now in buffer 577 sign = "+-" const
|
/bionic/libc/bionic/ |
libc_logging.cpp | 143 * NOTE: Does *not* handle a sign prefix. 247 char sign = '\0'; local 295 sign = c; 378 /* sign extension, if needed */ 398 if (sign != '\0' || prec != -1) { 399 __assert(__FILE__, __LINE__, "sign/precision unsupported");
|
/cts/tests/tests/keystore/src/android/keystore/cts/ |
SignatureTest.java | 411 byte[] sigBytes = signature.sign(); 465 byte[] sigBytes = signature.sign(); 497 byte[] sigBytes = signature.sign(); [all...] |
/external/ImageMagick/MagickCore/ |
pixel-accessor.h | 217 sign; local 222 sign=x < 0.0 ? -1.0 : 1.0; 223 if ((sign*x) >= MagickEpsilon) 225 return(sign/MagickEpsilon);
|
/external/ImageMagick/coders/ |
cin.c | 84 sign, 579 cin.data_format.sign=(unsigned char) ReadBlobByte(image); 82 sign, member in struct:_CINDataFormatInfo [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/fraction/ |
BigFraction.java | 137 // move sign to numerator 181 final long sign = bits & 0x8000000000000000L; local 188 if (sign != 0) { [all...] |
/external/boringssl/src/crypto/evp/ |
internal.h | 110 * implementations which can't sign all digests. If null, it is 245 int (*sign)(EVP_PKEY_CTX *ctx, uint8_t *sig, size_t *siglen, member in struct:evp_pkey_method_st
|
/external/boringssl/src/include/openssl/ |
rsa.h | 419 /* RSA_FLAG_SIGN_VER causes the |sign| and |verify| functions of |rsa_meth_st| 491 int (*sign)(int type, const uint8_t *m, unsigned int m_length, member in struct:rsa_meth_st 518 * RSA decrypt and sign operations will call this, thus an ENGINE might wish
|