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

1 2 3 4 5

  /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) {
a_int.c 70 int neg, ret; local
72 neg = x->type & V_ASN1_NEG;
73 if (neg != (y->type & V_ASN1_NEG))
75 if (neg)
83 if (neg)
117 int pad=0,ret,i,neg; local
121 neg=a->type & V_ASN1_NEG;
128 if (!neg && (i > 127)) {
131 } else if(neg) {
154 else if (!neg) memcpy(p,a->data,(unsigned int)a->length)
378 int neg=0,i; local
    [all...]
  /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)
  /external/openssh/openbsd-compat/
strtoll.c 55 int neg, any, cutlim; local
67 neg = 1;
70 neg = 0;
93 * either 7 (neg==0) or 8 (neg==1), meaning that if we have
101 cutoff = neg ? LLONG_MIN : LLONG_MAX;
104 if (neg) {
122 if (neg) {
strtoul.c 53 int neg, any, cutlim; local
63 neg = 1;
66 neg = 0;
102 if (neg && any > 0)
strtoull.c 55 int neg, any, cutlim; local
65 neg = 1;
68 neg = 0;
104 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;
  /external/e2fsprogs/lib/e2p/
mntopts.c 104 int neg; local
114 neg = 0;
124 neg++;
140 if (neg)
feature.c 285 int neg; local
303 neg = 0;
323 neg++;
333 if (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]);
  /external/boringssl/src/crypto/bn/
add.c 67 int a_neg = a->neg, ret;
74 if (a_neg ^ b->neg) {
87 r->neg = 1;
92 r->neg = 0;
98 r->neg = a_neg;
156 r->neg = 0;
177 if (a->neg) {
178 a->neg = 0;
181 a->neg = !(a->neg);
204 int add = 0, neg = 0; local
    [all...]
mul.c 320 unsigned int neg, zero; local
343 zero = neg = 0;
355 neg = 1;
365 neg = 1;
413 if (neg) {
451 int c1, c2, neg; local
462 neg = 0;
473 neg = 1;
482 neg = 1;
550 if (neg) {
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
SSLEngineResultTest.java 49 int[] neg = { -1, -10, -1000, Integer.MIN_VALUE, local
63 for (int i = 0; i < neg.length; i++) {
66 SSLEngineResult.HandshakeStatus.FINISHED, neg[i], 1);
71 for (int i = 0; i < neg.length; i++) {
74 SSLEngineResult.HandshakeStatus.FINISHED, 1, neg[i]);
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_program_print.c 406 const char* neg = inst->RGB.Arg[arg].Negate ? "-" : ""; local
407 fprintf(f, ", %s%ssrc", neg, abs);
441 const char* neg = inst->Alpha.Arg[arg].Negate ? "-" : ""; local
442 fprintf(f, ", %s%ssrc", neg, abs);
  /external/pdfium/core/src/fxcrt/
fx_basic_gcc.cpp 12 FX_BOOL neg = FALSE; local
17 neg = TRUE;
31 return neg ? -num : num;

Completed in 542 milliseconds

1 2 3 4 5