Searched refs:BC_NUM_SIZE (Results 1 – 2 of 2) sorted by relevance
/external/bc/src/ |
D | num.c | 121 n->num = bc_vm_realloc(n->num, BC_NUM_SIZE(req)); in bc_num_expand() 374 memset(c->num, 0, BC_NUM_SIZE(c->cap)); in bc_num_mulArray() 560 memmove(n->num, n->num + places_rdx, BC_NUM_SIZE(n->len)); in bc_num_truncate() 594 memmove(n->num + places_rdx, n->num, BC_NUM_SIZE(n->len)); in bc_num_extend() 596 memset(n->num, 0, BC_NUM_SIZE(places_rdx)); in bc_num_extend() 654 memcpy(b->num, n->num + idx, BC_NUM_SIZE(b->len)); in bc_num_split() 656 memcpy(a->num, n->num, BC_NUM_SIZE(idx)); in bc_num_split() 833 memmove(n->num + places_rdx, n->num, BC_NUM_SIZE(n->len)); in bc_num_shiftLeft() 835 memset(n->num, 0, BC_NUM_SIZE(places_rdx)); in bc_num_shiftLeft() 908 memset(n->num + n->len, 0, BC_NUM_SIZE(expand)); in bc_num_shiftRight() [all …]
|
/external/bc/include/ |
D | num.h | 344 #define BC_NUM_SIZE(n) ((n) * sizeof(BcDig)) macro
|