Lines Matching refs:num
25 bc_num num; in bc_long2num() local
28 num = bc_copy_num(BCG(_zero_)); in bc_long2num()
29 return num; in bc_long2num()
34 num = bc_new_num_nonzeroed(BC_LONG_MAX_DIGITS, 0); in bc_long2num()
36 bc_copy_and_toggle_bcd(num->n_value, ptr, ptr + BC_LONG_MAX_DIGITS); in bc_long2num()
37 num->n_sign = MINUS; in bc_long2num()
38 return num; in bc_long2num()
50 num = bc_new_num_nonzeroed(len, 0); in bc_long2num()
51 char *ptr = num->n_value + len - 1; in bc_long2num()
56 num->n_sign = negative ? MINUS : PLUS; in bc_long2num()
58 return num; in bc_long2num()