HomeSort by relevance Sort by last modified time
    Searched refs:sign (Results 126 - 150 of 4265) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d8_31pf.cpp 80 /* define values/representation for output codevector and sign */
276 indx[] -- array of type Word16 -- position and sign of
343 Word16 indx[], /* i : position and sign of 8 pulses (compressed) */
500 index array of type Word16 -- index of 8 pulses (sign+position)
559 Word16 index[], /* i : index of 8 pulses (sign+position) */
568 Word16 sign; local
594 sign = POS_CODE; /* +1.0 */
598 sign = -NEG_CODE; /* -1.0 */
603 cod[pos1] = sign; /* avoid buffer overflow */
614 sign = negate(sign)
    [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...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERGeneralizedTime.java 156 char sign = stime.charAt(signPos); local
157 if (sign == '-' || sign == '+')
168 sign = stime.charAt(signPos);
169 if (sign == '-' || sign == '+')
183 String sign = "+"; local
188 sign = "-";
198 hours += sign.equals("+") ? 1 : -1;
206 return "GMT" + sign + convert(hours) + ":" + convert(minutes)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_setup_line.c 261 static INLINE boolean sign(float x){ function
358 else if (sign(x1diff) == sign(-dx)) {
361 else if (sign(-y1diff) != sign(dy)) {
377 else if (sign(x2diff) != sign(-dx)) {
380 else if (sign(-y2diff) == sign(dy)) {
391 will_draw_start = sign(-x1diff) != sign(dx)
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_setup_line.c 261 static INLINE boolean sign(float x){ function
358 else if (sign(x1diff) == sign(-dx)) {
361 else if (sign(-y1diff) != sign(dy)) {
377 else if (sign(x2diff) != sign(-dx)) {
380 else if (sign(-y2diff) == sign(dy)) {
391 will_draw_start = sign(-x1diff) != sign(dx)
    [all...]
  /external/chromium_org/chrome/browser/resources/cryptotoken/
signer.js 6 * @fileoverview Handles web page requests for gnubby sign requests.
15 * Handles a web sign request.
17 * @param {Object} request The web page's sign request.
18 * @param {Function} sendResponse Called back with the result of the sign.
49 * Handles a U2F sign request.
51 * @param {Object} request The web page's sign request.
52 * @param {Function} sendResponse Called back with the result of the sign.
121 * Validates a sign request using the given sign challenges name, and, if valid,
122 * enqueues the sign request for eventual processing
    [all...]
  /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/valgrind/main/VEX/switchback/
test_emfloat.c 183 * If SIGN is true, p is a signed.
512 u8 sign; /* Mantissa sign */ member in struct:__anon36935
526 uchar sign);
528 uchar sign);
690 ** sign determines the sign of the zero.
693 uchar sign)
698 dest->sign=sign;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_r11g11b10f.h 58 int sign = (f32.ui >> 16) & 0x8000; local
74 if (sign)
77 } else if (sign) {
144 int sign = (f32.ui >> 16) & 0x8000; local
160 if (sign)
163 } else if (sign) {
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_r11g11b10f.h 58 int sign = (f32.ui >> 16) & 0x8000; local
74 if (sign)
77 } else if (sign) {
144 int sign = (f32.ui >> 16) & 0x8000; local
160 if (sign)
163 } else if (sign) {
  /external/skia/src/core/
SkFloatBits.cpp 18 Floor and Cast are very similar, but Cast applies its sign after all other
81 // apply the sign after we check for overflow
84 // apply the sign before we right-shift
111 // apply the sign after we check for overflow
114 // apply the sign before we right-shift
141 // apply the sign after we check for overflow
144 // apply the sign before we right-shift
162 // record the sign and make value positive
163 int sign = SkExtractSign(value); local
164 value = SkApplySign(value, sign);
196 int sign = SkExtractSign(value); local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
c1035pf.cpp 264 Word16 sign[], // (i) : sign of d[n]
268 Word16 indx[] // (o) : index of 10 pulses (sign+position)
288 // read sign
289 j = sign[i];
316 // sign of 1st pulse == sign of 2nd pulse
330 // sign of 1st pulse != sign of 2nd pulse
401 Word16 sign[], /* (i) : sign of d[n] *
659 Word16 dn[L_CODE], sign[L_CODE]; local
    [all...]
  /frameworks/base/core/jni/android/opengl/
poly_clip.cpp 41 #define CLIP_AND_SWAP(elem, sign, k, p, q, r) { \
42 poly_clip_to_halfspace(p, q, &v->elem-(float *)v, sign, sign*k); \
49 * copying the portion satisfying sign*s[index] < k*sw into q,
59 void poly_clip_to_halfspace(Poly* p, Poly* q, int index, float sign, float k)
72 tu = sign*COORD(u, index) - u->sw*k;
76 tv = sign*COORD(v, index) - v->sw*k;
  /external/chromium_org/third_party/WebKit/Source/wtf/
dtoa.h 37 WTF_EXPORT void dtoa(DtoaBuffer result, double dd, bool& sign, int& exponent, unsigned& precision);
38 WTF_EXPORT void dtoaRoundSF(DtoaBuffer result, double dd, int ndigits, bool& sign, int& exponent, unsigned& precision);
39 WTF_EXPORT void dtoaRoundDP(DtoaBuffer result, double dd, int ndigits, bool& sign, int& exponent, unsigned& precision);
41 // Size = 80 for sizeof(DtoaBuffer) + some sign bits, decimal point, 'e', exponent digits.
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
pitch_filter_mips.c 16 int16_t sign,
36 // Load coefficients outside the loop and sign-extend gain and sign
50 "seh %[sign32], %[sign] \n\t"
56 [sign] "r" (sign)
  /external/fio/
flow.c 19 int sign; local
24 sign = td->o.flow > 0 ? 1 : -1;
25 if (sign * flow->flow_counter > td->o.flow_watermark) {
  /external/replicaisland/src/com/replica/replicaisland/
InputGameInterface.java 104 final float magnitude = magnitudeRamp * Utils.sign(offset) * SLIDER_FILTER * mMovementSensitivity;
105 sliderOffset = magnitudeRamp * Utils.sign(offset);
152 int sign = Utils.sign(x); local
153 x = x - (sign * ROLL_DECAY * timeDelta);
154 if (Utils.sign(x) != sign) {
160 int sign = Utils.sign(y); local
161 y = y - (sign * ROLL_DECAY * timeDelta)
    [all...]
  /libcore/luni/src/main/java/java/lang/
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...]
  /external/chromium_org/third_party/speex/libspeex/
vq.c 109 /*Finds the indices of the n-best entries in a codebook with sign*/
112 int i,j,k, sign, used; local
121 sign=0;
125 sign=1;
142 if (sign)
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
intnum.h 107 * \param sign signed (1) or unsigned (0) LEB128 format
114 (const unsigned char *ptr, int sign, /*@out@*/ unsigned long *size);
119 * \param sign signed (1) or unsigned (0) source
125 (unsigned char *ptr, int sign, size_t srcsize, int bigendian);
207 /** Simple sign check.
279 * \param sign signedness of LEB128 encoding (0=unsigned, 1=signed)
284 unsigned char *ptr, int sign);
288 * \param sign signedness of LEB128 encoding (0=unsigned, 1=signed)
292 unsigned long yasm_intnum_size_leb128(const yasm_intnum *intn, int sign);
  /external/iproute2/lib/
Android.mk 32 -Wno-sign-compare \
65 -Wno-sign-compare \
  /external/libcxx/test/localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.members/
neg_format.pass.cpp 60 assert(p.field[1] == std::money_base::sign);
68 assert(p.field[1] == std::money_base::sign);
76 assert(p.field[1] == std::money_base::sign);
84 assert(p.field[1] == std::money_base::sign);
pos_format.pass.cpp 60 assert(p.field[1] == std::money_base::sign);
68 assert(p.field[1] == std::money_base::sign);
76 assert(p.field[1] == std::money_base::sign);
84 assert(p.field[1] == std::money_base::sign);
  /external/speex/libspeex/
vq.c 109 /*Finds the indices of the n-best entries in a codebook with sign*/
112 int i,j,k, sign, used; local
121 sign=0;
125 sign=1;
142 if (sign)
  /frameworks/opt/net/voip/src/jni/rtp/
G711Codec.cpp 52 int sign = (sample >> 8) & 0x80; local
62 ulaws[i] = ~(sign | (exponent << 4) | mantissa);
103 int sign = (sample >> 8) & 0x80; local
112 alaws[i] = (sign | (exponent << 4) | mantissa) ^ 0xD5;

Completed in 1220 milliseconds

1 2 3 4 56 7 8 91011>>