Home
last modified time | relevance | path

Searched refs:max_limbs (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/multiprecision/cpp_int/
H A Dimport_export.hpp76 …static const unsigned max_limbs = MaxBits ? MaxBits / (CHAR_BIT * sizeof(limb_type)) + ((MaxBits %… in resize_to_bit_size() local
77 if(limb_count > max_limbs) in resize_to_bit_size()
78 limb_count = max_limbs; in resize_to_bit_size()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/multiprecision/
H A Dcpp_int.hpp259 …static const unsigned max_limbs = MaxBits / (CHAR_BIT * sizeof(limb_type)) + ((MaxBits % (CHAR_BIT… in resize() local
261 if(new_size > max_limbs) in resize()
262 new_size = max_limbs; in resize()
269 cap = (std::min)((std::max)(cap * 4, new_size), max_limbs); in resize()