Searched refs:DIV_CEIL (Results 1 – 11 of 11) sorted by relevance
/third_party/node/deps/v8/src/bigint/ |
D | div-barrett.cc | 95 k = DIV_CEIL(k, 2); in InvertNewton() 102 int initial_digits = DIV_CEIL(k + 1, kDigitBits); in InvertNewton() 121 int fraction_digits = DIV_CEIL(2 * k + 3, kDigitBits); in InvertNewton() 127 fraction_digits = DIV_CEIL(2 * k + 1, kDigitBits); in InvertNewton() 314 int t = DIV_CEIL(A.len(), n); in DivideBarrett()
|
D | bitwise.cc | 225 int digits = DIV_CEIL(n, kDigitBits); in TruncateToNBits() 243 int digits = DIV_CEIL(n, kDigitBits); in TruncateAndSubFromPowerOfTwo() 274 int needed_digits = DIV_CEIL(n, kDigitBits); in AsIntNResultLength() 294 int needed_digits = DIV_CEIL(n, kDigitBits); in AsIntN() 326 int needed_digits = DIV_CEIL(n, kDigitBits); in AsUintN_Pos_ResultLength()
|
D | util.h | 19 #define DIV_CEIL(x, y) (((x)-1) / (y) + 1) macro
|
D | div-burnikel.cc | 210 int j = DIV_CEIL(s, m); in DivideBurnikelZiegler() 231 int t = std::max(DIV_CEIL(r, n), 2); in DivideBurnikelZiegler()
|
D | tostring.cc | 592 result = DIV_CEIL(bit_length, bits_per_char) + sign; in ToStringResultLength() 602 chars_required = DIV_CEIL(chars_required, min_bits_per_char); in ToStringResultLength()
|
D | mul-toom.cc | 64 int i = DIV_CEIL(std::max(X.len(), Y.len()), 3); in Toom3Main()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | hb-graphite2.cc | 295 while ((DIV_CEIL (sizeof (hb_graphite2_cluster_t) * buffer->len, sizeof (*scratch)) + in _hb_graphite2_shape() 296 DIV_CEIL (sizeof (hb_codepoint_t) * glyph_count, sizeof (*scratch))) > scratch_size) in _hb_graphite2_shape() 310 unsigned int _consumed = DIV_CEIL ((len) * sizeof (Type), sizeof (*scratch)); \ in _hb_graphite2_shape()
|
D | hb-directwrite.cc | 566 unsigned int _consumed = DIV_CEIL ((len) * sizeof (Type), sizeof (*scratch)); \ in _hb_directwrite_shape()
|
D | hb-uniscribe.cc | 611 unsigned int _consumed = DIV_CEIL ((len) * sizeof (Type), sizeof (*scratch)); \ in _hb_uniscribe_shape()
|
D | hb-coretext.cc | 693 unsigned int _consumed = DIV_CEIL ((len) * sizeof (Type), sizeof (*scratch)); \ in _hb_coretext_shape()
|
D | hb-algs.hh | 765 static inline unsigned int DIV_CEIL (const unsigned int a, unsigned int b) in DIV_CEIL() function
|