Function calcSetStringLimbsBufferLen [src]
Prototype
pub fn calcSetStringLimbsBufferLen(base: u8, string_len: usize) usize
Parameters
base: u8
string_len: usize
Source
pub fn calcSetStringLimbsBufferLen(base: u8, string_len: usize) usize {
const limb_count = calcSetStringLimbCount(base, string_len);
return calcMulLimbsBufferLen(limb_count, limb_count, 2);
}