Lines Matching refs:ret
49 int i, ret;
59 ret = (*p & V_ASN1_CONSTRUCTED);
91 if (inf && !(ret & V_ASN1_CONSTRUCTED))
100 ret |= 0x80;
103 return ret | inf;
120 unsigned long ret = 0;
142 ret <<= 8;
143 ret |= *p++;
146 if (ret > LONG_MAX)
149 ret = i;
153 *rl = (long)ret;
224 int ret = 1;
231 ret++;
235 ret += 3;
237 ret++;
242 ret++;
246 if (ret >= INT_MAX - length)
248 return ret + length;
266 ASN1_STRING *ret;
270 ret = ASN1_STRING_new();
271 if (ret == NULL)
273 if (!ASN1_STRING_copy(ret, str)) {
274 ASN1_STRING_free(ret);
277 return ret;
348 ASN1_STRING *ret;
350 ret = OPENSSL_zalloc(sizeof(*ret));
351 if (ret == NULL) {
355 ret->type = type;
356 return ret;