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

1 2 3 4 5

  /external/chromium_org/third_party/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 110 int neg=0,i; local
116 neg=1;
133 if (neg) r= -r;
x_long.c 146 int neg, i; local
155 if(len && (cont[0] & 0x80)) neg = 1;
156 else neg = 0;
160 if(neg) utmp |= cont[i] ^ 0xff;
164 if(neg) {
a_int.c 68 int neg, ret; local
70 neg = x->type & V_ASN1_NEG;
71 if (neg != (y->type & V_ASN1_NEG))
73 if (neg)
81 if (neg)
115 int pad=0,ret,i,neg; local
119 neg=a->type & V_ASN1_NEG;
126 if (!neg && (i > 127)) {
129 } else if(neg) {
152 else if (!neg) memcpy(p,a->data,(unsigned int)a->length)
376 int neg=0,i; local
    [all...]
  /external/openssl/crypto/asn1/
t_pkey.c 69 const char *neg; local
72 neg = (BN_is_negative(num))?"-":"";
84 if (BIO_printf(bp,"%s %s%lu (%s0x%lx)\n",number,neg,
85 (unsigned long)num->d[0],neg,(unsigned long)num->d[0])
92 (neg[0] == '-')?" (Negative)":"") <= 0)
a_enum.c 111 int neg=0,i; local
117 neg=1;
134 if (neg) r= -r;
x_long.c 145 int neg, i; local
154 if(len && (cont[0] & 0x80)) neg = 1;
155 else neg = 0;
159 if(neg) utmp |= cont[i] ^ 0xff;
163 if(neg) {
t_req.c 95 const char *neg; local
120 neg=(ri->version->type == V_ASN1_NEG_INTEGER)?"-":"";
124 if(BIO_printf(bp,"%8sVersion: %s%lu (%s0x%lx)\n","",neg,l,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 48 int neg, any, cutlim; local
60 neg = 1;
63 neg = 0;
86 * either 7 (neg==0) or 8 (neg==1), meaning that if we have
94 cutoff = neg ? INTMAX_MIN : INTMAX_MAX;
97 if (neg) {
115 if (neg) {
strtol.c 49 int neg, any, cutlim; local
72 neg = 1;
75 neg = 0;
98 * 7 (neg==0) or 8 (neg==1), meaning that if we have accumulated
105 cutoff = neg ? LONG_MIN : LONG_MAX;
108 if (neg) {
126 if (neg) {
strtoll.c 50 int neg, any, cutlim; local
62 neg = 1;
65 neg = 0;
88 * either 7 (neg==0) or 8 (neg==1), meaning that if we have
96 cutoff = neg ? LLONG_MIN : LLONG_MAX;
99 if (neg) {
117 if (neg) {
strtoul.c 48 int neg, any, cutlim; local
58 neg = 1;
61 neg = 0;
97 if (neg && any > 0)
strtoull.c 50 int neg, any, cutlim; local
60 neg = 1;
63 neg = 0;
99 if (neg && any > 0)
strtoumax.c 48 int neg, any, cutlim; local
58 neg = 1;
61 neg = 0;
97 if (neg && any > 0)
  /external/openssl/crypto/bn/
bn_mpi.c 86 if (a->neg)
94 int neg=0; local
113 a->neg=0;
119 neg=1;
122 a->neg=neg;
123 if (neg)
bn_add.c 67 int a_neg = a->neg, ret;
77 if (a_neg ^ b->neg)
88 r->neg=1;
93 r->neg=0;
99 r->neg = a_neg;
160 r->neg = 0;
258 r->neg=0;
266 int add=0,neg=0; local
277 if (a->neg)
279 if (b->neg)
    [all...]
bn_div.c 120 rem->neg=BN_is_zero(rem)?0:m->neg;
121 dv->neg=m->neg^d->neg;
177 * dv->neg == num->neg ^ divisor->neg (unless the result is zero)
178 * rm->neg == num->neg (unless the remainder is zero
434 int neg = num->neg; local
    [all...]
  /external/e2fsprogs/lib/e2p/
mntopts.c 104 int neg; local
114 neg = 0;
124 neg++;
140 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/chromium_org/third_party/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 318 unsigned int neg, zero; local
340 zero = neg = 0;
352 neg = 1;
362 neg = 1;
410 if (neg) {
448 int c1, c2, neg; local
459 neg = 0;
470 neg = 1;
479 neg = 1;
547 if (neg) {
    [all...]
  /external/chromium_org/third_party/mesa/src/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);

Completed in 2315 milliseconds

1 2 3 4 5