Searched refs:tmps (Results 1 – 5 of 5) sorted by relevance
| /freebsd/crypto/openssl/crypto/asn1/ |
| H A D | a_time.c | 268 ASN1_TIME *tmps = NULL; in ossl_asn1_time_from_tm() local 284 tmps = ASN1_STRING_new(); in ossl_asn1_time_from_tm() 286 tmps = s; in ossl_asn1_time_from_tm() 287 if (tmps == NULL) in ossl_asn1_time_from_tm() 290 if (!ASN1_STRING_set(tmps, NULL, len)) in ossl_asn1_time_from_tm() 293 tmps->type = type; in ossl_asn1_time_from_tm() 294 p = (char *)tmps->data; in ossl_asn1_time_from_tm() 302 tmps->length = BIO_snprintf(p, len, "%04d%02d%02d%02d%02d%02dZ", in ossl_asn1_time_from_tm() 307 tmps->length = BIO_snprintf(p, len, "%02d%02d%02d%02d%02d%02dZ", in ossl_asn1_time_from_tm() 314 ebcdic2ascii(tmps->data, tmps->data, tmps->length); in ossl_asn1_time_from_tm() [all …]
|
| /freebsd/crypto/openssl/crypto/rsa/ |
| H A D | rsa_sign.c | 291 unsigned char *tmps = NULL; in RSA_sign() local 313 if (!encode_pkcs1(&tmps, &encoded_len, type, m, m_len)) in RSA_sign() 315 encoded = tmps; in RSA_sign() 331 OPENSSL_clear_free(tmps, encoded_len); in RSA_sign()
|
| /freebsd/lib/libc/stdlib/ |
| H A D | strfmon.c | 67 char *tmps = STR; \ 68 while (*tmps != '\0') \ 69 PRINT(*tmps++); \
|
| /freebsd/usr.sbin/periodic/etc/daily/ |
| H A D | Makefile | 8 110.clean-tmps \
|
| /freebsd/contrib/one-true-awk/ |
| H A D | run.c | 81 Cell *tmps; /* free temporary cells for execution */ variable 932 if (a == tmps) in tfree() 934 a->cnext = tmps; in tfree() 935 tmps = a; in tfree() 942 if (!tmps) { in gettemp() 943 tmps = (Cell *) calloc(100, sizeof(*tmps)); in gettemp() 944 if (!tmps) in gettemp() 947 tmps[i-1].cnext = &tmps[i]; in gettemp() 948 tmps[i-1].cnext = NULL; in gettemp() 950 x = tmps; in gettemp() [all …]
|