Searched refs:BC_NUM_SIZE (Results 1 – 2 of 2) sorted by relevance
/external/bc/src/ |
D | num.c | 72 n->num = bc_vm_realloc(n->num, BC_NUM_SIZE(req)); in bc_num_expand() 196 memset(c->num, 0, BC_NUM_SIZE(c->cap)); in bc_num_mulArray() 323 memmove(n->num, n->num + places_rdx, BC_NUM_SIZE(n->len)); in bc_num_truncate() 347 memmove(n->num + places_rdx, n->num, BC_NUM_SIZE(n->len)); in bc_num_extend() 348 memset(n->num, 0, BC_NUM_SIZE(places_rdx)); in bc_num_extend() 385 memcpy(b->num, n->num + idx, BC_NUM_SIZE(b->len)); in bc_num_split() 386 memcpy(a->num, n->num, BC_NUM_SIZE(idx)); in bc_num_split() 476 memmove(n->num + places_rdx, n->num, BC_NUM_SIZE(n->len)); in bc_num_shiftLeft() 477 memset(n->num, 0, BC_NUM_SIZE(places_rdx)); in bc_num_shiftLeft() 530 memset(n->num + n->len, 0, BC_NUM_SIZE(expand)); in bc_num_shiftRight() [all …]
|
/external/bc/include/ |
D | num.h | 163 #define BC_NUM_SIZE(n) ((n) * sizeof(BcDig)) macro
|