Lines Matching defs:flags
32 if (a->flags & ASN1_STRING_FLAG_BITS_LEFT) {
33 bits = (int)a->flags & 0x07;
113 ret->flags &= ~(ASN1_STRING_FLAG_BITS_LEFT | 0x07); /* clear */
114 ret->flags |= (ASN1_STRING_FLAG_BITS_LEFT | i); /* set */
163 a->flags &= ~(ASN1_STRING_FLAG_BITS_LEFT | 0x07); /* clear, set on write */
200 * the flags vector. Returns 0 if there is at least one bit set in 'a'
201 * which is not specified in 'flags', 1 otherwise.
202 * 'len' is the length of 'flags'.
205 const unsigned char *flags, int flags_len)
217 unsigned char mask = i < flags_len ? ~flags[i] : 0xff;