HomeSort by relevance Sort by last modified time
    Searched defs:sign (Results 226 - 250 of 585) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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>'&#92;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>'&#92;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
  /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/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
  /external/deqp/modules/gles2/performance/
es2pDrawCallBatchingTests.cpp 278 int sign = (m_spec.triangleCount % 2 == 1 || i % 2 == 0 ? 1 : -1); local
280 data.push_back(deInt8(-127 * sign));
281 data.push_back(deInt8(-127 * sign));
285 data.push_back(deInt8(127 * sign));
286 data.push_back(deInt8(-127 * sign));
290 data.push_back(deInt8(127 * sign));
291 data.push_back(deInt8(127 * sign));
318 int sign = (i % 2 == 0 ? 1 : -1); local
320 data.push_back(deInt8(-127 * sign));
321 data.push_back(deInt8(-127 * sign));
    [all...]
  /external/deqp/modules/gles2/scripts/
genutil.py 156 def sign(val): return val.applyUnary(glslSign) member in class:GenMath
  /external/deqp/modules/gles3/scripts/
genutil.py 166 def sign(val): return val.applyUnary(glslSign) member in class:GenMath
  /external/deqp/modules/gles31/scripts/
genutil.py 166 def sign(val): return val.applyUnary(glslSign) member in class:GenMath
  /external/dng_sdk/source/
dng_utils.h 808 int32 sign = (halfValue >> 15) & 0x00000001; local
820 return (uint32) (sign << 31);
850 return (uint32) ((sign << 31) | ((0x1eL + 127 - 15) << 23) | (0x3ffL << 13));
870 // Assemble sign, exponent and mantissa.
872 return (uint32) ((sign << 31) | (exponent << 23) | mantissa);
881 int32 sign = (i >> 16) & 0x00008000; local
893 return (uint16)sign;
911 // Assemble the half from sign, exponent (zero) and mantissa.
913 return (uint16)(sign | (mantissa >> 13));
924 // infinity with the same sign as f
979 int32 sign = (input [0] >> 7) & 0x01; local
    [all...]
  /external/elfutils/src/
objdump.c 400 char sign = '+'; local
403 sign = '-';
406 printf ("%c%#" PRIx64, sign, r_addend);
  /external/icu/icu4c/source/i18n/
decNumberLocal.h 282 uInt sign; /* 0=positive, DECFLOAT_Sign=negative */ member in struct:__anon12779
294 /* (array) notation (the 0 word or byte contains the sign bit), */
309 /* Tests for sign or specials, directly on DECFLOATs */
342 /* DFISUINT01 -- test for sign=0, finite, exponent q=0, and */
    [all...]

Completed in 508 milliseconds

1 2 3 4 5 6 7 8 91011>>