Searched refs:neg (Results 1 - 25 of 382) sorted by relevance

1234567891011>>

/external/lldb/test/lang/c/blocks/
H A Dmain.c12 int (^neg)(int) = ^int(int a)
18 printf("%d\n", neg(-5)); // Set breakpoint 1 here.
/external/llvm/test/MC/AArch64/
H A Dneon-scalar-neg.s9 neg d29, d24
11 // CHECK: neg d29, d24 // encoding: [0x1d,0xbb,0xe0,0x7e]
/external/chromium_org/third_party/boringssl/src/crypto/asn1/
H A Dt_pkey.c67 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)
H A Dx_long.c146 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) {
H A Da_int.c68 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) memcp
376 int neg=0,i; local
[all...]
/external/openssl/crypto/asn1/
H A Dt_pkey.c69 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)
H A Dx_long.c145 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) {
H A Da_int.c69 int neg, ret; local
71 neg = x->type & V_ASN1_NEG;
72 if (neg != (y->type & V_ASN1_NEG))
74 if (neg)
82 if (neg)
116 int pad=0,ret,i,neg; local
120 neg=a->type & V_ASN1_NEG;
127 if (!neg && (i > 127)) {
130 } else if(neg) {
153 else if (!neg) memcp
377 int neg=0,i; local
[all...]
/external/openssl/crypto/bn/
H A Dbn_mpi.c86 if (a->neg)
94 int neg=0; local
113 a->neg=0;
119 neg=1;
122 a->neg=neg;
123 if (neg)
H A Dbn_add.c67 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...]
H A Dbn_kron.c132 if (B->neg)
134 B->neg = 0;
135 if (A->neg)
169 if ((A->neg ? ~BN_lsw(A) : BN_lsw(A)) & BN_lsw(B) & 2)
176 tmp->neg = 0;
H A Dbn_print.c81 if (a->neg) *(p++)='-';
176 int neg=0,h,m,i,j,k,c; local
181 if (*a == '-') { neg=1; a++; }
186 num=i+neg;
229 ret->neg=neg;
243 int neg=0,i,j; local
247 if (*a == '-') { neg=1; a++; }
252 num=i+neg;
286 ret->neg
[all...]
H A Dbn_shift.c73 r->neg=a->neg;
118 r->neg=a->neg;
144 r->neg=a->neg;
191 r->neg=a->neg;
H A Dbn_word.c139 if (a->neg)
141 a->neg=0;
144 a->neg=!(a->neg);
180 if (a->neg)
182 a->neg=0;
184 a->neg=1;
191 a->neg=1;
H A Dbn_div.c120 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 (unles
434 int neg = num->neg; local
[all...]
H A Dbn_recp.c182 d->neg=0;
186 r->neg=0;
202 r->neg=BN_is_zero(r)?0:m->neg;
203 d->neg=m->neg^recp->N.neg;
/external/chromium_org/third_party/boringssl/src/crypto/bn/
H A Dadd.c67 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...]
H A Dkronecker.c122 if (B->neg) {
123 B->neg = 0;
124 if (A->neg) {
157 if ((A->neg ? ~BN_lsw(A) : BN_lsw(A)) & BN_lsw(B) & 2) {
169 tmp->neg = 0;
H A Dcmp.c99 if (a->neg != b->neg) {
100 if (a->neg) {
105 if (a->neg == 0) {
191 return bn->neg == 0 && BN_abs_is_word(bn, 1);
195 return BN_abs_is_word(bn, w) && (w == 0 || bn->neg == 0);
H A Ddiv.c112 * dv->neg == num->neg ^ divisor->neg (unless the result is zero)
113 * rm->neg == num->neg (unless the remainder is zero)
172 sdiv->neg = 0;
177 snum->neg = 0;
207 wnum.neg = 0;
222 res->neg = (num->neg
359 int neg = num->neg; local
[all...]
H A Dbn.c153 dest->neg = src->neg;
163 bn->neg = 0;
243 bn->top = bn->neg = 0;
260 bn->neg = 0;
267 return bn->neg != 0;
272 bn->neg = 1;
274 bn->neg = 0;
/external/e2fsprogs/lib/e2p/
H A Dmntopts.c104 int neg; local
114 neg = 0;
124 neg++;
140 if (neg)
/external/ppp/pppd/
H A Dlcp.c653 #define LENCIVOID(neg) ((neg) ? CILEN_VOID : 0)
654 #define LENCICHAP(neg) ((neg) ? CILEN_CHAP : 0)
655 #define LENCISHORT(neg) ((neg) ? CILEN_SHORT : 0)
656 #define LENCILONG(neg) ((neg) ? CILEN_LONG : 0)
657 #define LENCILQR(neg) ((neg)
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr700_asm.c41 S_SQ_ALU_WORD0_SRC0_NEG(alu->src[0].neg) |
45 S_SQ_ALU_WORD0_SRC1_NEG(alu->src[1].neg) |
58 S_SQ_ALU_WORD1_OP3_SRC2_NEG(alu->src[2].neg) |
/external/mesa3d/src/gallium/drivers/r600/
H A Dr700_asm.c41 S_SQ_ALU_WORD0_SRC0_NEG(alu->src[0].neg) |
45 S_SQ_ALU_WORD0_SRC1_NEG(alu->src[1].neg) |
58 S_SQ_ALU_WORD1_OP3_SRC2_NEG(alu->src[2].neg) |

Completed in 970 milliseconds

1234567891011>>