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

1 2 3 4 5 67 8 91011>>

  /external/openssl/crypto/evp/
evp_locl.h 307 int (*sign)(EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, member in struct:evp_pkey_method_st
  /external/quake/quake/src/QW/client/
pmove.c 740 static int sign[3] = {0, -1, 1}; local
759 pmove.origin[0] = base[0] + (sign[x] * 1.0/8);
760 pmove.origin[1] = base[1] + (sign[y] * 1.0/8);
761 pmove.origin[2] = base[2] + (sign[z] * 1.0/8);
view.c 84 float sign; local
90 sign = side < 0 ? -1 : 1;
100 return side*sign;
  /external/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...]
  /external/valgrind/main/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/main/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/main/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/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextSkia.cpp 44 int sign = SkExtractSign(value); local
46 value = SkApplySign(value, sign);
49 return SkApplySign(value, sign);
  /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/compile/mclinker/lib/Target/ARM/
ARMRelocationFactory.cpp 108 // Reverse sign bit, then subtract sign bit.
343 uint32_t sign = ((pOffset & 0x80000000U) >> 31); local
344 return (pUpper16 & ~0x7ffU) | ((pOffset >> 12) & 0x3ffU) | (sign << 10);
351 uint32_t sign = ((pOffset & 0x80000000U) >> 31); local
353 ((((pOffset >> 23) & 1) ^ !sign) << 13) |
354 ((((pOffset >> 22) & 1) ^ !sign) << 11) |
561 // Check X is 24bit sign int. If not, we should use stub or PLT before apply.
    [all...]
  /libcore/luni/src/main/java/java/lang/
HexStringParser.java 67 private long sign; field in class:HexStringParser
118 sign <<= (MANTISSA_WIDTH + EXPONENT_WIDTH);
120 return sign | exponent | mantissa;
124 * Parses the sign field.
127 this.sign = signStr.equals("-") ? 1 : 0;
  /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...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
StrictMathTest.java 192 assertEquals("If the sign is NaN, the result should be positive.",
199 final double sign = COPYSIGN_DD_CASES[j]; local
201 .copySign(magnitude, sign));
203 if (sign > 0 || Double.valueOf(+0.0).equals(sign)
204 || Double.valueOf(0.0).equals(sign)) {
206 "If the sign is positive, the result should be positive.",
209 if (sign < 0 || Double.valueOf(-0.0).equals(sign)) {
211 "If the sign is negative, the result should be negative."
264 final float sign = COPYSIGN_FF_CASES[j]; local
    [all...]
  /external/icu4c/i18n/
decNumberLocal.h 294 uInt sign; /* 0=positive, DECFLOAT_Sign=negative */ member in struct:__anon7423
306 /* (array) notation (the 0 word or byte contains the sign bit), */
321 /* Tests for sign or specials, directly on DECFLOATs */
354 /* DFISUINT01 -- test for sign=0, finite, exponent q=0, and */
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
FastMath.java 662 * @return The integer's sign.
664 public static int sign(int iValue) { method in class:FastMath
677 * @return The float's sign.
679 public static float sign(float fValue) { method in class:FastMath
895 * the value whose sign is to be adjusted.
897 * the value whose sign is to be used.
898 * @return x with its sign changed to match the sign of y.
    [all...]
Ray.java 215 float sign; local
217 sign = 1;
219 sign = -1f;
227 float dirDotDiffxEdge2 = sign * direction.dot(diff.cross(edge2, edge2));
229 float dirDotEdge1xDiff = sign
234 float diffDotNorm = -sign * diff.dot(norm);
290 float sign; local
292 sign = 1;
294 sign = -1f;
305 float dirDotDiffxEdge2 = sign * (direction.x * diffEdge2
    [all...]
  /external/opencv/cv/src/
cvconvhull.cpp 191 int* stack, int sign, int sign2 );
609 int sign = 0; local
630 sign += (index2 > index1) ? 1 : 0;
631 sign += (index3 > index2) ? 1 : 0;
632 sign += (index1 > index3) ? 1 : 0;
634 rev_orientation = (sign == 2) ? 0 : 1;
  /external/qemu/audio/
audio_int.h 60 int sign; member in struct:audio_pcm_info
  /external/quake/quake/src/QW/server/
sv_user.c 1205 float sign; local
1211 sign = side < 0 ? -1 : 1;
1221 return side*sign;
    [all...]
  /external/skia/src/core/
SkMath.cpp 80 int sign = SkExtractSign(a ^ b); local
83 return sign;
105 if (sign < 0) {
218 int sign = SkExtractSign(x); local
219 uint32_t a = SkApplySign(x, sign);
222 return SkApplySign(SK_MaxS32, sign);
249 return SkApplySign(r, sign);
265 // make numer and denom positive, and sign hold the resulting sign
266 int32_t sign = SkExtractSign(numer ^ denom) local
368 int sign = SkExtractSign(value); local
    [all...]
  /external/srec/srec/EventLog/src/
riff.c 182 int sign, exponent, mantissa, sample; local
185 sign = (ulawbyte & 0x80);
189 if (sign != 0) sample = -sample;
196 int sign, achord, astep, delta, sample; local
203 sign = (alawcode & 0x80);
208 if (sign != 0) sample = -sample;
  /external/valgrind/main/VEX/useful/
hd_fpu.c 74 UInt sign = e_lsb[9] >> 7; local
90 d_lsb[7] = ((bexp >> 4) & 0x7F) | ((sign & 0x1) << 7);
108 UInt sign = d_lsb[7] >> 7; local
121 e_lsb[9] = ((bexp >> 8) & 0x7F) | ((sign & 0x1) << 7);
    [all...]
  /frameworks/base/core/java/android/text/format/
Time.java 695 String sign = (gmtoff < 0) ? "-" : "+"; local
700 return String.format(Locale.US, "%s%s%02d:%02d", base, sign, hours, minutes);
  /frameworks/base/core/java/com/android/internal/util/
XmlUtils.java 92 int sign = 1; local
98 sign = -1;
123 return Integer.parseInt(nm.substring(index), base) * sign;
  /libcore/luni/src/main/java/java/util/
Date.java 376 char sign = 0; local
415 if (sign == '+' || sign == '-') {
419 minutesOffset = sign == '-' ? -Integer
426 zoneOffset = sign == '-' ? -digit : digit;
427 sign = 0;
512 sign = next;
515 sign = 0;

Completed in 3080 milliseconds

1 2 3 4 5 67 8 91011>>