Lines Matching refs:neg
25 int neg, ret;
27 neg = x->type & V_ASN1_NEG;
28 if (neg != (y->type & V_ASN1_NEG)) {
29 if (neg)
37 if (neg)
97 static size_t i2c_ibuf(const unsigned char *b, size_t blen, int neg,
107 if (!neg && (i > 127)) {
110 } else if (neg) {
157 int neg, pad;
163 neg = p[0] & 0x80;
165 *pneg = neg;
169 if (neg)
192 if (pad && (neg == (p[1] & 0x80))) {
202 twos_complement(b, p, plen, neg ? 0xffU : 0);
256 int neg)
261 if (neg) {
291 int neg;
309 c2i_ibuf(ret->data, &neg, *pp, len);
311 if (neg != 0)
618 int ossl_c2i_uint64_int(uint64_t *ret, int *neg,
631 (void)c2i_ibuf(buf, neg, *pp, len);
635 int ossl_i2c_uint64_int(unsigned char *p, uint64_t r, int neg)
641 return i2c_ibuf(buf + off, sizeof(buf) - off, neg, &p);