Home
last modified time | relevance | path

Searched refs:bf_malloc (Results 1 – 2 of 2) sorted by relevance

/third_party/quickjs/
Dlibbf.c1359 tabu = bf_malloc(s, sizeof(limb_t) * (2 * n + 1)); in mp_recip()
1360 tabt = bf_malloc(s, sizeof(limb_t) * (n + 2)); in mp_recip()
1380 tabt = bf_malloc(s, sizeof(limb_t) * (n + h + 1)); in mp_recip()
1381 tabu = bf_malloc(s, sizeof(limb_t) * (n + 2 * h - l + 2)); in mp_recip()
1448 tabb_inv = bf_malloc(s, sizeof(limb_t) * (n + 1)); in mp_divnorm_large()
1449 tabt = bf_malloc(s, sizeof(limb_t) * 2 * (n + 1)); in mp_divnorm_large()
1488 tabt = bf_malloc(s, sizeof(limb_t) * (na + 1)); in mp_divnorm_large()
1697 taba = bf_malloc(s, (na + 1) * sizeof(limb_t)); in __bf_div()
2060 tmp_buf = bf_malloc(s, sizeof(limb_t) * n2); in mp_sqrtrem()
2156 a1 = bf_malloc(s, sizeof(limb_t) * 2 * n); in bf_sqrt()
[all …]
Dlibbf.h206 static inline void *bf_malloc(bf_context_t *s, size_t size) in bf_malloc() function