Lines Matching refs:places
620 * The places function (@ operator). This is a BcNumBinaryOp function.
722 * A function returning the required allocation size for a places, left shift,
727 * @return The size of allocation needed for the result of places, left
736 * Truncate @a n *by* @a places decimal places. This only extends places *after*
739 * @param places The number of places to truncate @a n by.
742 bc_num_truncate(BcNum* restrict n, size_t places);
745 * Extend @a n *by* @a places decimal places. This only extends places *after*
748 * @param places The number of places to extend @a n by.
751 bc_num_extend(BcNum* restrict n, size_t places);
754 * Shifts @a n right by @a places decimal places. This is the workhorse of the
758 * @param places The number of decimal places to shift @a n right by.
761 bc_num_shiftRight(BcNum* restrict n, size_t places);