Searched refs:bc_num_expand (Results 1 – 2 of 2) sorted by relevance
/external/bc/src/ |
D | num.c | 62 static void bc_num_expand(BcNum *restrict n, size_t req) { in bc_num_expand() function 194 if (a->len + 1 > c->cap) bc_num_expand(c, a->len + 1); in bc_num_mulArray() 346 bc_num_expand(n, bc_vm_growSize(n->len, places_rdx)); in bc_num_extend() 475 bc_num_expand(n, bc_vm_growSize(n->len, places_rdx)); in bc_num_shiftLeft() 504 bc_num_expand(n, BC_NUM_RDX(n->scale)); in bc_num_shiftRight() 529 bc_num_expand(n, bc_vm_growSize(expand, n->len)); in bc_num_shiftRight() 724 bc_num_expand(c, bc_vm_growSize(clen, 1)); in bc_num_m_simp() 826 bc_num_expand(c, max); in bc_num_k() 971 bc_num_expand(c, len); in bc_num_m() 1033 bc_num_expand(c, a->len); in bc_num_d_long() [all …]
|
/external/toybox/toys/pending/ |
D | bc.c | 167 void bc_num_expand(BcNum *n, size_t req); 1249 if (n->cap < len) bc_num_expand(n, len); in bc_num_extend() 1479 bc_num_expand(c, a->len + b->len + 1); in bc_num_k() 1583 bc_num_expand(c, c->len + maxrdx); in bc_num_m() 1623 bc_num_expand(&cp, len + 2); in bc_num_d() 1636 if (cp.cap == cp.len) bc_num_expand(&cp, cp.len + 1); in bc_num_d() 1642 bc_num_expand(c, cp.len); in bc_num_d() 1817 else bc_num_expand(c, req); in bc_num_binary() 2053 void bc_num_expand(BcNum *n, size_t req) { in bc_num_expand() function 2067 bc_num_expand(d, s->len); in bc_num_copy() [all …]
|