HomeSort by relevance Sort by last modified time
    Searched refs:neg (Results 76 - 100 of 167) sorted by null

1 2 34 5 6 7

  /dalvik/vm/compiler/codegen/arm/Thumb2/
Factory.c 458 bool neg = (value < 0); local
459 int absValue = (neg) ? -value : value;
500 opCode = (neg) ? kThumbSubRRI3 : kThumbAddRRI3;
502 opCode = (neg) ? kThumbAddRRI3 : kThumbSubRRI3;
506 opCode = (neg) ? kThumb2SubRRI12 : kThumb2AddRRI12;
508 opCode = (neg) ? kThumb2AddRRI12 : kThumb2SubRRI12;
580 bool neg = (value < 0); local
581 int absValue = (neg) ? -value : value;
586 if ( !neg && (rDestSrc1 == 13) && (value <= 508)) { /* sp */
590 opCode = (neg) ? kThumbSubRI8 : kThumbAddRI8
    [all...]
  /external/dropbear/libtommath/
bn_mp_div.c 106 int res, n, t, i, norm, neg; local
148 neg = (a->sign == b->sign) ? MP_ZPOS : MP_NEG;
268 c->sign = neg;
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
ResourceHelper.java 309 boolean neg = f < 0;
310 if (neg) {
340 if (neg) {
  /external/openssl/crypto/bn/
bn_rand.c 236 if (range->neg || BN_is_zero(range))
bn_exp2.c 172 if (a1->neg || BN_ucmp(a1,m) >= 0)
206 if (a2->neg || BN_ucmp(a2,m) >= 0)
bn_exp.c 217 if (a->top == 1 && !a->neg && (BN_get_flags(p, BN_FLG_CONSTTIME) == 0))
270 if (m->neg)
274 aa->neg = 0;
421 if (a->neg || BN_ucmp(a,m) >= 0)
646 if (a->neg || BN_ucmp(a,m) >= 0)
bn.h 283 (dest)->neg=(b)->neg, \
306 int neg; /* one if the number is negative */ member in struct:bignum_st
390 #define BN_is_one(a) (BN_abs_is_word((a),1) && !(a)->neg)
391 #define BN_is_word(a,w) (BN_abs_is_word((a),(w)) && (!(w) || !(a)->neg))
399 _tmp_bn->neg = 0; \
447 #define BN_is_negative(a) ((a)->neg != 0)
599 * The BIGNUM::neg property of BIGNUMs representing binary polynomials is
    [all...]
bn_prime.c 280 if (a->neg)
285 t->neg = 0;
bn_sqr.c 141 rr->neg=0;
  /external/openssl/include/openssl/
bn.h 283 (dest)->neg=(b)->neg, \
306 int neg; /* one if the number is negative */ member in struct:bignum_st
390 #define BN_is_one(a) (BN_abs_is_word((a),1) && !(a)->neg)
391 #define BN_is_word(a,w) (BN_abs_is_word((a),(w)) && (!(w) || !(a)->neg))
399 _tmp_bn->neg = 0; \
447 #define BN_is_negative(a) ((a)->neg != 0)
599 * The BIGNUM::neg property of BIGNUMs representing binary polynomials is
    [all...]
  /external/ppp/pppd/
utils.c 167 int base, len, neg, quoted; local
225 neg = 0;
234 neg = 1;
253 neg = 1;
275 neg = 2;
389 while (str > num + neg) {
395 switch (neg) {
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/openssl/
bn.h 270 (dest)->neg=(b)->neg, \
293 int neg; /* one if the number is negative */ member in struct:bignum_st
376 #define BN_is_one(a) (BN_abs_is_word((a),1) && !(a)->neg)
377 #define BN_is_word(a,w) (BN_abs_is_word((a),(w)) && (!(w) || !(a)->neg))
385 _tmp_bn->neg = 0; \
427 #define BN_is_negative(a) ((a)->neg != 0)
575 * The BIGNUM::neg property of BIGNUMs representing binary polynomials is
  /external/skia/src/core/
SkString.cpp 59 bool neg = false; local
63 neg = true;
70 if (neg)
  /cts/tools/dasm/src/java_cup/
Main.java 742 boolean neg;
749 neg = time_val < 0;
750 if (neg) time_val = -time_val;
770 return (neg ? "-" : "") + pad + sec + "." +
  /cts/tools/dasm/test/
all_opcodes.d 148 neg-int v1, v2
150 neg-long v1, v2
152 neg-float v1, v2
153 neg-double v1, v2
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_math.h 57 int (*neg)(void *src, void *dst); member in struct:__anon3465
450 #define mp_neg(a, b) ltc_mp.neg(a, b)
  /external/dropbear/libtomcrypt/src/math/
gmp_desc.c 39 static int neg(void *a, void *b) function
398 &neg,
ltm_desc.c 68 static int neg(void *a, void *b) function
404 &neg,
  /external/skia/tests/
Sk64Test.cpp 6 int8_t zero, pos, neg, toBool, sign; member in struct:BoolTable
16 REPORTER_ASSERT(reporter, !a.isNeg() == !table.neg);
  /dalvik/vm/mterp/armv5te/
OP_FILLED_NEW_ARRAY.S 55 subs r9, r9, #1 @ length--, check for neg
  /external/libvpx/vp8/common/x86/
postproc_mmx.asm 101 neg rax
141 neg rax ; pitch is positive
301 neg rax ; rax = -pitch
304 neg rax
postproc_mmx.c 154 neg eax
222 neg eax ;
490 neg eax
550 neg eax ;
734 neg eax // eax = -pitch
737 neg eax
898 neg eax // eax = -pitch
901 neg eax
    [all...]
loopfilter_mmx.asm 78 neg rax ; negate pitch to deal with above border
214 neg rax
287 neg rax
580 neg rax
671 neg rax ; negate pitch to deal with above border
    [all...]
  /external/dropbear/libtommath/pre_gen/
mpi.c 79 int res, neg; local
183 neg = a->sign;
190 c->sign = neg;
1661 int res, n, t, i, norm, neg; local
3049 int err, ch, neg, y; local
4936 int res, neg; local
5318 int res, neg; local
6384 int y, res, neg; local
    [all...]
  /external/webkit/WebCore/rendering/
RenderFlexibleBox.cpp 278 int neg = maxTopNegMargin(); local
281 if (maxBottomNegMargin() > neg)
282 neg = maxBottomNegMargin();
283 setMaxTopMargins(pos, neg);
    [all...]

Completed in 3812 milliseconds

1 2 34 5 6 7