HomeSort by: relevance | last modified time | path
    Searched defs:buf_n (Results 1 - 5 of 5) sorted by relevancy

  /src/crypto/external/bsd/openssl/dist/crypto/
params_from_text.c 28 size_t *buf_n, BIGNUM **tmpbn, int *found)
96 *buf_n = (buf_bits + 7) / 8;
109 *buf_n = p->data_size;
117 *buf_n = strlen(value) + 1;
127 *buf_n = hexdigits >> 1;
129 *buf_n = value_n;
139 void *buf, size_t buf_n, BIGNUM *tmpbn)
144 if (buf_n > 0) {
156 BN_bn2nativepad(tmpbn, buf, buf_n);
167 size_t i = buf_n;
211 size_t buf_n = 0; local
    [all...]
o_str.c 138 static int hexstr2buf_sep(unsigned char *buf, size_t buf_n, size_t *buflen,
165 if (cnt > buf_n) {
181 int OPENSSL_hexstr2buf_ex(unsigned char *buf, size_t buf_n, size_t *buflen,
184 return hexstr2buf_sep(buf, buf_n, buflen, str, sep);
191 size_t buf_n, tmp_buflen; local
193 buf_n = strlen(str);
194 if (buf_n <= 1) {
198 buf_n /= 2;
199 if ((buf = OPENSSL_malloc(buf_n)) == NULL) {
207 if (hexstr2buf_sep(buf, buf_n, &tmp_buflen, str, sep))
    [all...]
  /src/external/mit/isl/dist/
isl_printer_private.h 30 int buf_n; member in struct:isl_printer
  /src/crypto/external/apache2/openssl/dist/crypto/
params_from_text.c 29 size_t *buf_n, BIGNUM **tmpbn, int *found)
94 *buf_n = (buf_bits + 7) / 8;
107 *buf_n = p->data_size;
115 *buf_n = strlen(value) + 1;
125 *buf_n = hexdigits >> 1;
127 *buf_n = value_n;
137 void *buf, size_t buf_n, BIGNUM *tmpbn)
142 if (buf_n > 0) {
154 BN_bn2nativepad(tmpbn, buf, buf_n);
165 size_t i = buf_n;
314 size_t buf_n = 0; local
    [all...]
o_str.c 210 static int hexstr2buf_sep(unsigned char *buf, size_t buf_n, size_t *buflen,
237 if (cnt > buf_n) {
253 int OPENSSL_hexstr2buf_ex(unsigned char *buf, size_t buf_n, size_t *buflen,
256 return hexstr2buf_sep(buf, buf_n, buflen, str, sep);
263 size_t buf_n, tmp_buflen; local
265 buf_n = strlen(str);
266 if (buf_n <= 1) {
270 buf_n /= 2;
271 if ((buf = OPENSSL_malloc(buf_n)) == NULL)
277 if (hexstr2buf_sep(buf, buf_n, &tmp_buflen, str, sep))
    [all...]

Completed in 25 milliseconds