Symbol: V_ASN1_NEG
crypto/openssl/crypto/asn1/a_int.c
209
return i2c_ibuf(a->data, a->length, a->type & V_ASN1_NEG, pp);
crypto/openssl/crypto/asn1/a_int.c
27
neg = x->type & V_ASN1_NEG;
crypto/openssl/crypto/asn1/a_int.c
28
if (neg != (y->type & V_ASN1_NEG)) {
crypto/openssl/crypto/asn1/a_int.c
318
ret->type |= V_ASN1_NEG;
crypto/openssl/crypto/asn1/a_int.c
320
ret->type &= ~V_ASN1_NEG;
crypto/openssl/crypto/asn1/a_int.c
338
if ((a->type & ~V_ASN1_NEG) != itype) {
crypto/openssl/crypto/asn1/a_int.c
342
return asn1_get_int64(pr, a->data, a->length, a->type & V_ASN1_NEG);
crypto/openssl/crypto/asn1/a_int.c
360
a->type |= V_ASN1_NEG;
crypto/openssl/crypto/asn1/a_int.c
363
a->type &= ~V_ASN1_NEG;
crypto/openssl/crypto/asn1/a_int.c
375
if ((a->type & ~V_ASN1_NEG) != itype) {
crypto/openssl/crypto/asn1/a_int.c
379
if (a->type & V_ASN1_NEG) {
crypto/openssl/crypto/asn1/a_int.c
514
if ((ai->type & ~V_ASN1_NEG) != itype) {
crypto/openssl/crypto/asn1/a_int.c
524
if (ai->type & V_ASN1_NEG)
crypto/openssl/crypto/asn1/a_int.c
599
if ((a->type & ~V_ASN1_NEG) != V_ASN1_ENUMERATED)
crypto/openssl/crypto/asn1/f_int.c
149
bs->type = V_ASN1_INTEGER | (bs->type & V_ASN1_NEG);
crypto/openssl/crypto/asn1/f_int.c
24
if (a->type & V_ASN1_NEG) {
crypto/openssl/crypto/asn1/tasn_dec.c
922
(*tint)->type = utype | ((*tint)->type & V_ASN1_NEG);
crypto/openssl/crypto/asn1/tasn_prn.c
447
utype = str->type & ~V_ASN1_NEG;
crypto/openssl/crypto/x509/v3_utl.c
247
aint->type |= V_ASN1_NEG;
crypto/openssl/include/openssl/asn1.h
100
#define V_ASN1_NEG_INTEGER (2 | V_ASN1_NEG)
crypto/openssl/include/openssl/asn1.h
101
#define V_ASN1_NEG_ENUMERATED (10 | V_ASN1_NEG)