Home
last modified time | relevance | path

Searched refs:DIV_CEIL (Results 1 – 11 of 11) sorted by relevance

/third_party/node/deps/v8/src/bigint/
Ddiv-barrett.cc95 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()
Dbitwise.cc225 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()
Dutil.h19 #define DIV_CEIL(x, y) (((x)-1) / (y) + 1) macro
Ddiv-burnikel.cc210 int j = DIV_CEIL(s, m); in DivideBurnikelZiegler()
231 int t = std::max(DIV_CEIL(r, n), 2); in DivideBurnikelZiegler()
Dtostring.cc592 result = DIV_CEIL(bit_length, bits_per_char) + sign; in ToStringResultLength()
602 chars_required = DIV_CEIL(chars_required, min_bits_per_char); in ToStringResultLength()
Dmul-toom.cc64 int i = DIV_CEIL(std::max(X.len(), Y.len()), 3); in Toom3Main()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-graphite2.cc295 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()
Dhb-directwrite.cc566 unsigned int _consumed = DIV_CEIL ((len) * sizeof (Type), sizeof (*scratch)); \ in _hb_directwrite_shape()
Dhb-uniscribe.cc611 unsigned int _consumed = DIV_CEIL ((len) * sizeof (Type), sizeof (*scratch)); \ in _hb_uniscribe_shape()
Dhb-coretext.cc693 unsigned int _consumed = DIV_CEIL ((len) * sizeof (Type), sizeof (*scratch)); \ in _hb_coretext_shape()
Dhb-algs.hh765 static inline unsigned int DIV_CEIL (const unsigned int a, unsigned int b) in DIV_CEIL() function