Home | History | Annotate | Download | only in asn1

Lines Matching refs:flags

77 		if (a->flags & ASN1_STRING_FLAG_BITS_LEFT)
79 bits=(int)a->flags&0x07;
142 ret->flags&= ~(ASN1_STRING_FLAG_BITS_LEFT|0x07); /* clear */
143 ret->flags|=(ASN1_STRING_FLAG_BITS_LEFT|(i&0x07)); /* set */
189 a->flags&= ~(ASN1_STRING_FLAG_BITS_LEFT|0x07); /* clear, set on write */
228 * the flags vector. Returns 0 if there is at least one bit set in 'a'
229 * which is not specified in 'flags', 1 otherwise.
230 * 'len' is the length of 'flags'.
233 unsigned char *flags, int flags_len)
243 unsigned char mask = i < flags_len ? ~flags[i] : 0xff;