/third_party/skia/third_party/externals/abseil-cpp/absl/numeric/ |
D | int128_stream_test.cc | 96 constexpr std::ios::fmtflags kBase = std::ios::showbase; variable 241 {0, kBase, /*width = */ 0, "0"}, in GetInt128FormatCases() 242 {0, kBase, /*width = */ 6, "_____0"}, in GetInt128FormatCases() 243 {0, kBase | kPos, /*width = */ 0, "+0"}, in GetInt128FormatCases() 244 {0, kBase | kPos, /*width = */ 6, "____+0"}, in GetInt128FormatCases() 249 {0, kUpper | kBase, /*width = */ 0, "0"}, in GetInt128FormatCases() 250 {0, kUpper | kBase, /*width = */ 6, "_____0"}, in GetInt128FormatCases() 251 {0, kUpper | kBase | kPos, /*width = */ 0, "+0"}, in GetInt128FormatCases() 252 {0, kUpper | kBase | kPos, /*width = */ 6, "____+0"}, in GetInt128FormatCases() 257 {0, kLeft | kBase, /*width = */ 0, "0"}, in GetInt128FormatCases() [all …]
|
/third_party/node/deps/v8/tools/ |
D | bigint-tester.py | 20 kBase = 16 variable 55 s.append(kChars[random.randint(1, kBase - 1)]) # No leading zero. 57 s.append(kChars[random.randint(0, kBase - 1)]) 63 return int(x[:-1], kBase) 74 s = kChars[x % kBase] + s 75 x = x / kBase 144 }""" % {"op": self.GetOpString(), "base": kBase} 179 }""" % {"op": self.GetOpString(), "base": kBase} 242 right_length = 1 + int(math.log((kLineLength - left_length), kBase))
|
/third_party/gn/src/base/strings/ |
D | string_number_conversions.cc | 189 if (traits::kBase == 16 && end - begin > 2 && *begin == '0' && in Invoke() 197 if (!CharToDigit<traits::kBase>(*current, &new_digit)) { in Invoke() 205 *output *= traits::kBase; in Invoke() 217 if (*output > static_cast<value_type>(traits::max() / traits::kBase) || in CheckBounds() 218 (*output == static_cast<value_type>(traits::max() / traits::kBase) && in CheckBounds() 219 new_digit > traits::max() % traits::kBase)) { in CheckBounds() 233 if (*output < traits::min() / traits::kBase || in CheckBounds() 234 (*output == traits::min() / traits::kBase && in CheckBounds() 235 new_digit > 0 - traits::min() % traits::kBase)) { in CheckBounds() 254 static const int kBase = BASE; member in base::__anon49c8f84c0111::BaseIteratorRangeToNumberTraits
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/ |
D | btree_test.h | 66 constexpr unsigned kBase = 64; // avoid integer division. 70 buf[p--] = ' ' + (val % kBase); 71 val /= kBase; 72 maxval /= kBase;
|
/third_party/node/deps/v8/src/objects/ |
D | js-collator.cc | 36 kBase, enumerator 485 {Sensitivity::kBase, Sensitivity::kAccent, in New() 501 case Sensitivity::kBase: in New()
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
D | FramebufferMultiviewTest.cpp | 20 const size_t kBase = static_cast<size_t>(GL_COLOR_ATTACHMENT0); in GetDrawBufferRange() local 23 drawBuffers[i] = static_cast<GLenum>(kBase + i); in GetDrawBufferRange()
|
/third_party/mindspore/patches/ |
D | 0005-micro-for-ohos.patch | 5098 constexpr auto kBase = "base";
|