HomeSort by relevance Sort by last modified time
    Searched refs:sign (Results 251 - 275 of 1929) sorted by null

<<11121314151617181920>>

  /external/openssl/crypto/evp/
p_sign.c 131 if (ctx->digest->sign == NULL)
136 return(ctx->digest->sign(ctx->digest->type,m,m_len,sigret,siglen,
  /external/replicaisland/src/com/replica/replicaisland/
AttackAtDistanceComponent.java 58 (Utils.sign(player.getPosition().x - parentObject.getPosition().x)
59 == Utils.sign(parentObject.facingDirection.x));
PatrolComponent.java 112 final int targetFacingDirection = Utils.sign(horizontalDelta);
120 != Utils.sign(parentObject.facingDirection.x)) {
128 != Utils.sign(parentObject.facingDirection.x)) {
194 if (Utils.sign(parentObject.getTargetVelocity().x) != Utils.sign(parentObject.getVelocity().x)) {
221 if (Utils.sign(player.getPosition().x - parentObject.getPosition().x)
222 == Utils.sign(parentObject.facingDirection.x)) {
251 mMaxSpeed * Utils.sign(parentObject.facingDirection.x);
  /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;
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
residual.cpp 158 int escape, numPrefix, sufmask, suffix, shift, sign, value, absvalue, vlcnum, level_two_or_higher; local
262 if (TrailingOnes) /* keep reading the sign of those trailing ones */
307 sign = 0;
311 sign = 1;
319 status = BitstreamWriteBits(stream, value * 2 + sign - 1, 1);
323 status = BitstreamWriteBits(stream, 14 + 1 + 4, (1 << 4) | ((value - 8) << 1) | sign);
327 status = BitstreamWriteBits(stream, 14 + 2 + 12, (1 << 12) | ((value - 16) << 1) | sign) ;
339 status = BitstreamWriteBits(stream, numPrefix + vlcnum + 1, (1 << (shift + 1)) | (suffix << 1) | sign);
343 status = BitstreamWriteBits(stream, 28, (1 << 12) | ((value - escape) << 1) | sign);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_remquol.c 78 sx = ux.bits.sign;
79 sxy = sx ^ uy.bits.sign;
80 ux.bits.sign = 0; /* |x| */
81 uy.bits.sign = 0; /* |y| */
139 /* convert back to floating value and restore the sign */
140 if((hx|lx)==0) { /* return sign(x)*0 */
157 ux.bits.sign = 0;
172 ux.bits.sign ^= sx;
e_jn.c 74 sgn = (n&1)&(hx>>31); /* even n -- 0, odd n -- sign(x) */
218 int32_t sign; local
227 sign = 1;
230 sign = 1 - ((n&1)<<1);
233 if(n==1) return(sign*__ieee754_y1(x));
269 if(sign>0) return b; else return -b;
  /external/chromium_org/third_party/freetype/src/psaux/
psconv.c 79 FT_Bool sign = 0; local
87 sign = FT_BOOL( *p == '-' );
110 if ( sign )
150 FT_Bool sign = 0; local
158 sign = FT_BOOL( *p == '-' );
228 if ( sign )
  /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...]
  /libcore/luni/src/main/java/java/util/
TimeZone.java 215 char sign = '+'; local
217 sign = '-';
222 builder.append(sign);
382 char sign = id.charAt(3); local
384 if (sign == '-') {
388 String cleanId = String.format("GMT%c%02d:%02d", sign, hour, minute);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_arit.c 126 if (type.width == 8 && !type.sign) {
129 else if (type.width == 16 && type.sign) {
133 if (type.width == 8 && type.sign) {
136 if (type.width == 16 && !type.sign) {
139 if (type.width == 32 && !type.sign) {
142 if (type.width == 32 && type.sign) {
216 if (type.width == 8 && !type.sign) {
220 else if (type.width == 16 && type.sign) {
224 if (type.width == 8 && type.sign) {
227 if (type.width == 16 && !type.sign) {
1177 LLVMValueRef sign; local
1640 LLVMValueRef sign; local
1689 LLVMValueRef sign; local
1752 LLVMValueRef sign; local
    [all...]
lp_bld_const.c 66 if(type.sign)
87 return type.sign ? type.width - 1 : type.width;
134 if(!type.sign)
194 if(type.sign)
267 else if(type.sign)
276 if(type.sign)
352 elems[i] = LLVMConstInt(elem_type, val, type.sign ? 1 : 0);
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_arit.c 126 if (type.width == 8 && !type.sign) {
129 else if (type.width == 16 && type.sign) {
133 if (type.width == 8 && type.sign) {
136 if (type.width == 16 && !type.sign) {
139 if (type.width == 32 && !type.sign) {
142 if (type.width == 32 && type.sign) {
216 if (type.width == 8 && !type.sign) {
220 else if (type.width == 16 && type.sign) {
224 if (type.width == 8 && type.sign) {
227 if (type.width == 16 && !type.sign) {
1177 LLVMValueRef sign; local
1640 LLVMValueRef sign; local
1689 LLVMValueRef sign; local
1752 LLVMValueRef sign; local
    [all...]
lp_bld_const.c 66 if(type.sign)
87 return type.sign ? type.width - 1 : type.width;
134 if(!type.sign)
194 if(type.sign)
267 else if(type.sign)
276 if(type.sign)
352 elems[i] = LLVMConstInt(elem_type, val, type.sign ? 1 : 0);
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_gcd.c 214 int sign; local
249 sign = -1;
253 * -sign*X*a == B (mod |n|),
254 * sign*Y*a == A (mod |n|).
270 * (1) -sign*X*a == B (mod |n|),
271 * (2) sign*Y*a == A (mod |n|)
320 * (1) -sign*X*a == B (mod |n|),
321 * (2) sign*Y*a == A (mod |n|),
327 /* -sign*(X + Y)*a == B - A (mod |n|) */
335 /* sign*(X + Y)*a == A - B (mod |n|) *
514 int sign; local
    [all...]
  /external/openssl/crypto/bn/
bn_gcd.c 214 int sign; local
249 sign = -1;
253 * -sign*X*a == B (mod |n|),
254 * sign*Y*a == A (mod |n|).
270 * (1) -sign*X*a == B (mod |n|),
271 * (2) sign*Y*a == A (mod |n|)
320 * (1) -sign*X*a == B (mod |n|),
321 * (2) sign*Y*a == A (mod |n|),
327 /* -sign*(X + Y)*a == B - A (mod |n|) */
335 /* sign*(X + Y)*a == A - B (mod |n|) *
514 int sign; local
    [all...]
  /external/opencv/cvaux/src/
cvscanlines.cpp 1299 int sign[4], i; local
1908 int sign[4], i; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_test_main.c 51 type.sign ? (type.floating || type.fixed ? "" : "s") : "u",
79 if(type.sign) {
126 if(!type.sign && value < 0.0)
147 if(type.sign) {
205 else if (type.sign)
212 if(!type.sign)
306 if(type.sign && !type.norm) {
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_main.c 51 type.sign ? (type.floating || type.fixed ? "" : "s") : "u",
79 if(type.sign) {
126 if(!type.sign && value < 0.0)
147 if(type.sign) {
205 else if (type.sign)
212 if(!type.sign)
306 if(type.sign && !type.norm) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
decimal.py 145 DecimalTuple = _namedtuple('DecimalTuple', 'sign digits exponent')
216 also a quiet NaN, but with the original sign, and an optional
243 The result of the operation is [sign,inf], where sign is the exclusive
248 def handle(self, context, sign, *args):
249 return _SignedInfinity[sign]
333 round-up, if implemented), the result of the operation is [sign,inf],
334 where sign is the sign of the intermediate result. For round-down, the
336 current precision, with the sign of the intermediate result. Fo
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
decimal.py 145 DecimalTuple = _namedtuple('DecimalTuple', 'sign digits exponent')
216 also a quiet NaN, but with the original sign, and an optional
243 The result of the operation is [sign,inf], where sign is the exclusive
248 def handle(self, context, sign, *args):
249 return _SignedInfinity[sign]
333 round-up, if implemented), the result of the operation is [sign,inf],
334 where sign is the sign of the intermediate result. For round-down, the
336 current precision, with the sign of the intermediate result. Fo
    [all...]
  /external/wpa_supplicant_8/src/tls/
libtommath.c 127 int used, alloc, sign; member in struct:__anon30733
391 * and sign to positive */
394 a->sign = MP_ZPOS;
418 a->sign = MP_ZPOS;
428 /* get sign of both inputs */
429 sa = a->sign;
430 sb = b->sign;
435 /* add their magnitudes, copy the sign */
436 c->sign = sa;
442 /* the sign of the one with the greater magnitude. *
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodemv.c 26 const int sign = comp < 0; local
27 const int mag = sign ? -comp : comp;
35 // Sign
36 vp9_write(w, sign, mvcomp->sign);
74 sign_cost[0] = vp9_cost_zero(mvcomp->sign);
75 sign_cost[1] = vp9_cost_one(mvcomp->sign);
161 const uint32_t s0 = nmv_count->comps[i].sign[0];
162 const uint32_t s1 = nmv_count->comps[i].sign[1];
229 update_mv(bc, branch_ct_sign[i], &mvc->comps[i].sign, NMV_UPDATE_PROB)
    [all...]

Completed in 1282 milliseconds

<<11121314151617181920>>