HomeSort by relevance Sort by last modified time
    Searched defs:neg (Results 1 - 25 of 156) sorted by null

1 2 3 4 5 6 7

  /external/boringssl/src/crypto/asn1/
t_pkey.c 67 const char *neg; local
70 neg = (BN_is_negative(num))?"-":"";
82 if (BIO_printf(bp,"%s %s%lu (%s0x%lx)\n",number,neg,
83 (unsigned long)num->d[0],neg,(unsigned long)num->d[0])
90 (neg[0] == '-')?" (Negative)":"") <= 0)
a_enum.c 112 int neg=0,i; local
118 neg=1;
135 if (neg) r= -r;
x_long.c 148 int neg, i; local
157 if(len && (cont[0] & 0x80)) neg = 1;
158 else neg = 0;
162 if(neg) utmp |= cont[i] ^ 0xff;
166 if(neg) {
  /bionic/libc/upstream-openbsd/lib/libc/locale/
_wcstol.h 55 int neg, any, cutlim; local
73 neg = 1;
76 neg = 0;
92 cutoff = neg ? MIN_VALUE : MAX_VALUE;
95 if (neg) {
110 if (neg) {
_wcstoul.h 54 int neg, any, cutlim; local
71 neg = 1;
74 neg = 0;
110 if (neg && any > 0)
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
strtoimax.c 47 int neg, any, cutlim; local
70 neg = 1;
73 neg = 0;
96 * either 7 (neg==0) or 8 (neg==1), meaning that if we have
104 cutoff = neg ? INTMAX_MIN : INTMAX_MAX;
107 if (neg) {
125 if (neg) {
strtol.c 48 int neg, any, cutlim; local
71 neg = 1;
74 neg = 0;
97 * 7 (neg==0) or 8 (neg==1), meaning that if we have accumulated
104 cutoff = neg ? LONG_MIN : LONG_MAX;
107 if (neg) {
125 if (neg) {
strtoll.c 50 int neg, any, cutlim; local
73 neg = 1;
76 neg = 0;
99 * either 7 (neg==0) or 8 (neg==1), meaning that if we have
107 cutoff = neg ? LLONG_MIN : LLONG_MAX;
110 if (neg) {
128 if (neg) {
strtoul.c 48 int neg, any, cutlim; local
65 neg = 1;
68 neg = 0;
104 if (neg && any > 0)
strtoull.c 50 int neg, any, cutlim; local
67 neg = 1;
70 neg = 0;
106 if (neg && any > 0)
strtoumax.c 47 int neg, any, cutlim; local
64 neg = 1;
67 neg = 0;
103 if (neg && any > 0)
  /ndk/sources/android/support/src/wcstox/
intscan.c 57 int c, neg=0; local
66 neg = -(c=='-');
118 if (!(lim&1) && !neg) {
126 return (y^neg)-neg;
  /toolchain/binutils/binutils-2.25/libiberty/
strtoul.c 67 register int neg = 0, any, cutlim; local
76 neg = 1;
110 } else if (neg)
strtoull.c 72 register int neg = 0, any, cutlim; local
81 neg = 1;
115 } else if (neg)
strtol.c 96 register int neg = 0, any, cutlim; local
107 neg = 1;
130 * 7 (neg==0) or 8 (neg==1), meaning that if we have accumulated
137 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX;
158 acc = neg ? LONG_MIN : LONG_MAX;
160 } else if (neg)
strtoll.c 104 register int neg = 0, any, cutlim; local
115 neg = 1;
138 * 7 (neg==0) or 8 (neg==1), meaning that if we have accumulated
145 cutoff = neg ? -(ullong_type)LLONG_MIN : LLONG_MAX;
166 acc = neg ? LLONG_MIN : LLONG_MAX;
168 } else if (neg)
  /device/google/contexthub/firmware/src/
floatRt.c 93 bool neg = (word & BIT_SIGN); local
120 if (neg)
printf.c 27 bool neg = false; local
41 neg = true;
64 if (neg) {
  /external/dbus/tools/
strtoll.c 71 int neg, any, cutlim; local
83 neg = 1;
86 neg = 0;
115 * either 7 (neg==0) or 8 (neg==1), meaning that if we have
123 cutoff = neg ? (unsigned long long)-(LLONG_MIN + LLONG_MAX) + LLONG_MAX
147 acc = neg ? LLONG_MIN : LLONG_MAX;
160 } else if (neg)
strtoull.c 72 int neg, any, cutlim; local
82 neg = 1;
85 neg = 0;
139 } else if (neg)
  /device/google/dragon/audio/hal/dsp/
dsp_util.c 74 float32x4_t neg = vdupq_n_f32(-0.5f / 32768.0f); local
91 "vbsl q3, %q[pos], %q[neg] \n"
92 "vbsl q4, %q[pos], %q[neg] \n"
112 [neg]"w"(neg)
  /external/e2fsprogs/lib/e2p/
mntopts.c 104 int neg; local
114 neg = 0;
124 neg++;
140 if (neg)
  /external/guava/guava-tests/test/com/google/common/math/
MathBenchmarking.java 94 BigInteger neg = randomNonNegativeBigInteger(numBits).negate(); local
95 if (neg.signum() != 0) {
96 return neg;
  /development/ndk/sources/android/ndk_helper/
vecmath.cpp 120 float neg = 0; local
127 neg += temp;
132 neg += temp;
137 neg += temp;
142 neg += temp;
147 neg += temp;
152 neg += temp;
153 det_1 = pos + neg;
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
SSLEngineResultTest.java 47 int[] neg = { -1, -10, -1000, Integer.MIN_VALUE, local
62 for (int i = 0; i < neg.length; i++) {
65 SSLEngineResult.HandshakeStatus.FINISHED, neg[i], 1);
70 for (int i = 0; i < neg.length; i++) {
73 SSLEngineResult.HandshakeStatus.FINISHED, 1, neg[i]);

Completed in 475 milliseconds

1 2 3 4 5 6 7