/external/skia/src/pathops/ |
SkOpAngle.h | 63 int sign() const { function in class:SkOpAngle
|
/external/skia/src/views/ |
SkTouchGesture.cpp | 30 // returns +1 or -1, depending on the sign of x 33 SkScalar sign = SK_Scalar1; local 35 sign = -sign; 37 return sign;
|
/external/tremolo/Tremolo/ |
codebook.c | 104 int sign=val&0x80000000; local 113 if(sign)mant= -mant;
|
/external/valgrind/main/VEX/useful/ |
fp_80_64.c | 75 S is the sign bit. For runs X----X, at least one of the Xs must be 77 there is an explicitly represented leading 1, and a sign bit, 91 sign bit, giving 64 in total. 107 UChar sign; local 109 sign = toUChar( (f64[7] >> 7) & 1 ); 130 f80[9] = toUChar( sign << 7 ); 161 f80[9] = toUChar( (sign << 7) | ((bexp >> 8) & 0xFF) ); 178 f80[9] = toUChar( (sign << 7) | 0x7F ); 196 f80[9] = toUChar( (sign << 7) | 0x7F ); 205 f80[9] = toUChar( (sign << 7) | 0x7F ) 248 UChar sign; local [all...] |
/external/webp/src/dsp/ |
dec_mips32.c | 23 const int sign = x >> 31; local 24 return (x ^ sign) - sign;
|
/frameworks/av/drm/mediadrm/plugins/mock/ |
MockDrmCryptoPlugin.cpp | 539 status_t MockDrmPlugin::sign(Vector<uint8_t> const &sessionId, function in class:android::MockDrmPlugin 545 ALOGD("MockDrmPlugin::sign(sessionId=%s, keyId=%s, message=%s)",
|
/frameworks/av/media/libmediaplayerservice/ |
Drm.cpp | 590 status_t Drm::sign(Vector<uint8_t> const &sessionId, function in class:android::Drm 604 return mPlugin->sign(sessionId, keyId, message, signature);
|
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
c8_31pf.cpp | 89 /* define values/representation for output codevector and sign */ 118 sign[] Array of type Word16 -- sign of pulses 190 Word16 sign[], /* i : sign of d[n] */ 236 /* read sign */ 237 j = sign[i]; 268 /* sign of 1st pulse == sign of 2nd pulse */ 284 /* sign of 1st pulse != sign of 2nd pulse * 763 Word16 sign[L_CODE]; local [all...] |
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
c2t64fx.c | 62 Word16 sign[L_SUBFR], vec[L_SUBFR], dn2[L_SUBFR]; local 69 * Find sign for each pulse position. * 113 /* set sign according to dn2[] = k_cn*cn[] + k_dn*dn[] */ 120 sign[i] = 32767; /* sign = +1 (Q12) */ 124 sign[i] = -32768; /* sign = -1 (Q12) */ 207 psign = sign; 268 if (sign[ix] > 0) 278 if (sign[iy] > 0 [all...] |
/frameworks/base/keystore/java/android/security/ |
KeyStore.java | 248 public byte[] sign(String key, byte[] data) { method in class:KeyStore 250 return mBinder.sign(key, data);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
vp9_entropymv.h | 83 vp9_prob sign; member in struct:__anon39797 111 unsigned int sign[2]; member in struct:__anon39799
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
vp9_encodemv.c | 35 const int sign = comp < 0; local 36 const int mag = sign ? -comp : comp; 44 // Sign 45 vp9_write(w, sign, mvcomp->sign); 83 sign_cost[0] = vp9_cost_zero(mvcomp->sign); 84 sign_cost[1] = vp9_cost_one(mvcomp->sign); 175 update_mv(w, comp_counts->sign, &comp->sign, MV_UPDATE_PROB);
|
/libcore/benchmarks/src/benchmarks/regression/ |
SignatureBenchmark.java | 86 this.signature = signer.sign(); 106 signer.sign();
|
/libcore/luni/src/main/java/java/lang/ |
Math.java | 1154 long sign = bits & Double.SIGN_MASK; local 1207 int sign = bits & Float.SIGN_MASK; local [all...] |
StrictMath.java | 923 * Returns a double with the given magnitude and the sign of {@code sign}. 924 * If {@code sign} is NaN, the sign of the result is positive. 927 public static double copySign(double magnitude, double sign) { 934 long signBits = Double.doubleToRawLongBits((sign != sign) ? 1.0 : sign); 940 * Returns a float with the given magnitude and the sign of {@code sign} 1018 long sign = bits & Double.SIGN_MASK; local 1072 int sign = bits & Float.SIGN_MASK; local [all...] |
/libcore/luni/src/main/java/java/math/ |
Conversion.java | 55 int sign = val.sign; local 59 if (sign == 0) { 65 if (sign < 0) { 76 int resLengthInChars = (int) (val.abs().bitLength() / bitsForRadixDigit + ((sign < 0) ? 1 124 if (sign == -1) { 139 int sign = val.sign; local 146 if (sign == 0) { 176 // +1 - one char for sign if needed [all...] |
/libcore/luni/src/main/java/java/security/ |
Signature.java | 61 protected static final int SIGN = 2; 71 * possible states are {@link #UNINITIALIZED}, {@link #SIGN} or 331 state = SIGN; 349 state = SIGN; 364 public final byte[] sign() throws SignatureException { method in class:Signature 365 if (state != SIGN) { 393 public final int sign(byte[] outbuf, int offset, int len) method in class:Signature 399 if (state != SIGN) { 557 case SIGN: 558 return "SIGN"; [all...] |
/libcore/luni/src/main/java/java/util/ |
TimeZone.java | 232 char sign = '+'; local 234 sign = '-'; 241 builder.append(sign); 402 char sign = id.charAt(3); local 404 if (sign == '-') { 408 String cleanId = String.format("GMT%c%02d:%02d", sign, hour, minute);
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
SignatureSpiTest.java | 361 signature.sign(buf, 2, 1);
|
/ndk/sources/android/support/src/wcstox/ |
floatscan.c | 87 static long double decfloat(FILE *f, int c, int bits, int emin, int sign, int pok) 161 if (!x[0]) return sign * 0.0; 165 return sign * (long double)x[0]; 168 return sign * LDBL_MAX * LDBL_MAX; 172 return sign * LDBL_MIN * LDBL_MIN; 189 if (rp == 9) return sign * (long double)x[0]; 190 if (rp < 9) return sign * (long double)x[0] / p10s[8-rp]; 193 return sign * (long double)x[0] * p10s[rp-10]; 281 y *= sign; 302 frac += 0.25*sign; 446 int sign = 1; local [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_compare/ |
size_size_string_size_size.pass.cpp | 22 int sign(int x) function 38 assert(sign(s.compare(pos1, n1, str, pos2, n2)) == sign(x)); 55 assert(sign(s.compare(pos1, n1, str, pos2)) == sign(x)); [all...] |
/ndk/sources/host-tools/ndk-stack/binutils/ |
addr2line.c | 228 bfd_vma sign = (bfd_vma) 1 << (bed->s->arch_size - 1); 230 pc &= (sign << 1) - 1; 232 pc = (pc ^ sign) - sign; 225 bfd_vma sign = (bfd_vma) 1 << (bed->s->arch_size - 1); local
|
/packages/apps/Mms/src/com/android/mms/dom/smil/ |
TimeImpl.java | 85 int sign = 1; local 90 sign = -1; 92 mResolvedOffset = sign*parseClockValue(timeValue)/1000.0;
|
/system/extras/verity/ |
Utils.java | 131 static byte[] sign(PrivateKey privateKey, byte[] input) throws Exception { method in class:Utils 135 return signer.sign();
|
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/ |
strtodg.c | 348 int j, k, nbits, nd, nd0, nf, nz, nz0, rd, rvbits, rve, rve1, sign; local 379 denorm = sign = nz0 = nz = 0; 385 sign = 1; 392 sign = 0; 412 irv = gethex(&s, fpi, exp, &rvb, sign); 417 sign = 0; 557 rd = 2 - sign; 563 rd = 1 + sign; 837 dsign = delta->sign; 838 delta->sign = finished = 0 [all...] |