HomeSort by relevance Sort by last modified time
    Searched defs:kBase (Results 1 - 11 of 11) sorted by null

  /art/libartbase/base/unix_file/
fd_file.h 115 kBase, // Base, file has not been flushed or closed.
  /art/runtime/arch/mips/
instruction_set_features_mips.cc 33 kBase,
46 static constexpr MipsLevel kRuntimeMipsLevel = MipsLevel::kBase;
  /external/libchrome/mojo/public/cpp/bindings/tests/
type_conversion_unittest.cc 115 const RedmondRect kBase = {10, 20, 30, 40};
119 RedmondRect rr = kBase;
135 const RedmondRect kBase = {10, 20, 30, 40};
138 RedmondRect rect = kBase;
  /frameworks/base/cmds/idmap2/idmap2/
Scan.cpp 72 constexpr int kBase = 10;
74 int version = strtol(version_prop.data(), nullptr, kBase);
  /art/runtime/
runtime_callbacks_test.cc 112 kBase,
121 if (state == CallbackState::kBase) {
138 CallbackState state = CallbackState::kBase;
153 cb_.state = CallbackState::kBase; // Ignore main thread attach.
  /external/libchrome/base/strings/
string_number_conversions.cc 127 // - constant kBase, the base in which to interpret the input
185 if (traits::kBase == 16 && end - begin > 2 && *begin == '0' &&
193 if (!CharToDigit<traits::kBase>(*current, &new_digit)) {
201 *output *= traits::kBase;
213 if (*output > static_cast<value_type>(traits::max() / traits::kBase) ||
214 (*output == static_cast<value_type>(traits::max() / traits::kBase) &&
215 new_digit > traits::max() % traits::kBase)) {
229 if (*output < traits::min() / traits::kBase ||
230 (*output == traits::min() / traits::kBase &&
231 new_digit > 0 - traits::min() % traits::kBase)) {
    [all...]
  /external/tensorflow/tensorflow/core/lib/gtl/
flatrep.h 48 static const uint32 kBase = 3;
49 static const uint32 kWidth = (1 << kBase);
150 Bucket* b = &array_[index >> kBase];
177 Bucket* b = &array_[index >> kBase];
214 Bucket* b = &array_[index >> kBase];
327 Bucket* b = &array_[index >> kBase];
  /external/v8/tools/
bigint-tester.py 17 kBase = 16
54 s.append(kChars[random.randint(1, kBase - 1)]) # No leading zero.
56 s.append(kChars[random.randint(0, kBase - 1)])
62 return int(x[:-1], kBase)
73 s = kChars[x % kBase] + s
74 x = x / kBase
143 }""" % {"op": self.GetOpString(), "base": kBase}
178 }""" % {"op": self.GetOpString(), "base": kBase}
241 right_length = 1 + int(math.log((kLineLength - left_length), kBase))
  /frameworks/av/media/libnblog/
PerformanceAnalysis.cpp 325 // The following formula adjusts kBase based on the buffer period length.
327 // formula below maps buffer period 2 to kBase = ~1, 4 to ~2, 20 to ~3, 40 to ~4.
329 const double kBase = log(mean) / log(2.2);
331 log(abs(x - mean) / mean) / log(kBase)) + 2;
  /external/pdfium/core/fxge/dib/
cfx_imagetransformer.cpp 20 constexpr int kBase = 256;
161 : a(FXSYS_round(src.a * kBase)),
162 b(FXSYS_round(src.b * kBase)),
163 c(FXSYS_round(src.c * kBase)),
164 d(FXSYS_round(src.d * kBase)),
165 e(FXSYS_round(src.e * kBase)),
166 f(FXSYS_round(src.f * kBase)) {}
170 *x1 = pdfium::base::saturated_cast<int>(val.first / kBase);
171 *y1 = pdfium::base::saturated_cast<int>(val.second / kBase);
176 return std::make_pair(a * x + c * y + e + kBase / 2
    [all...]
  /external/v8/src/regexp/
jsregexp.h 312 static const int kBase = 0;
    [all...]

Completed in 1707 milliseconds