HomeSort by relevance Sort by last modified time
    Searched defs:sign (Results 151 - 175 of 471) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/oauth/core/src/main/java/net/oauth/signature/
OAuthSignatureMethod.java 50 public void sign(OAuthMessage message) method in class:OAuthSignatureMethod
  /external/pdfium/third_party/freetype/src/cff/
cffparse.c 136 FT_Int sign = 0, exponent_sign = 0, have_overflow = 0; local
173 sign = 1;
377 if ( sign )
  /external/skia/gm/
dashing.cpp 445 int sign; // used to toggle the direction of the lines variable
451 sign = (x % 20) ? 1 : -1;
453 SkIntToScalar(x), -sign * SkIntToScalar(10003),
455 SkIntToScalar(x), sign * SkIntToScalar(10003));
462 sign = (y % 20) ? 1 : -1;
464 -sign * SkIntToScalar(10003), SkIntToScalar(y),
466 sign * SkIntToScalar(10003), SkIntToScalar(y));
  /external/skia/src/pathops/
SkPathOpsQuad.cpp 30 double sign = (fPts[oddMan].fY - origY) * adj - (fPts[oddMan].fX - origX) * opp; local
31 if (approximately_zero(sign)) {
38 if (test * sign > 0 && !precisely_zero(test)) {
102 // the sign of B -- and further suggesting that the greatest loss of precision
  /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/toybox/toys/posix/
find.c 119 // Return numeric value with explicit sign
122 char sign = 0; local
125 if (*str == '+' || *str == '-') sign = *(str++);
130 if (sign == '+') return val > myval;
131 if (sign == '-') return val < myval;
  /external/tremolo/Tremolo/
codebook.c 104 int sign=val&0x80000000; local
113 if(sign)mant= -mant;
  /external/v8/src/
conversions.cc 129 int sign; local
136 &sign, &length, &decimal_point);
138 if (sign) builder.AddCharacter('-');
220 int sign; local
228 &sign, &decimal_rep_length, &decimal_point);
312 int sign; local
326 &sign, &decimal_rep_length, &decimal_point);
331 &sign, &decimal_rep_length, &decimal_point);
358 int sign; local
366 &sign, &decimal_rep_length, &decimal_point)
    [all...]
  /external/valgrind/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 635 status_t MockDrmPlugin::sign(Vector<uint8_t> const &sessionId, function in class:android::MockDrmPlugin
641 ALOGD("MockDrmPlugin::sign(sessionId=%s, keyId=%s, message=%s)",
  /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/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
PasspointMatchInfo.java 192 int sign = tuple.getStatus() == HSConnectionCapabilityElement.ProtoStatus.Open ? local
209 score += elementScore * sign;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_entropymv.h 83 vp9_prob sign; member in struct:__anon24195
111 unsigned int sign[2]; member in struct:__anon24197
  /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 1170 long sign = bits & Double.SIGN_MASK; local
1223 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
358 state = SIGN;
376 state = SIGN;
391 public final byte[] sign() throws SignatureException { method in class:Signature
392 if (state != SIGN) {
420 public final int sign(byte[] outbuf, int offset, int len) method in class:Signature
426 if (state != SIGN) {
584 case SIGN:
585 return "SIGN";
    [all...]
  /libcore/luni/src/main/java/java/util/
TimeZone.java 106 char sign = id.charAt(3); local
108 if (sign == '-') {
112 String cleanId = String.format((Locale) null, "GMT%c%02d:%02d", sign, hour, minute);
276 char sign = '+'; local
278 sign = '-';
285 builder.append(sign);
  /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

Completed in 1601 milliseconds

1 2 3 4 5 67 8 91011>>