HomeSort by relevance Sort by last modified time
    Searched refs:Min (Results 151 - 175 of 240) sorted by null

1 2 3 4 5 67 8 910

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common.h 449 // Don't use std::min, std::max or std::swap, to minimize dependency
451 template<class T> T Min(T a, T b) { return a < b ? a : b; }
sanitizer_coverage_libcdep.cc 555 unsigned int payload_size = Min(blob_size, max_payload_size);
    [all...]
  /external/llvm/lib/CodeGen/
AtomicExpandPass.cpp 365 case AtomicRMWInst::Min:
609 // FIXME: we could also treat Min/Max/UMin/UMax by the INT_MIN/INT_MAX/...
  /external/pdfium/xfa/src/fxfa/src/fm2js/
xfa_fm2jscontext.h 29 static void Min(FXJSE_HOBJECT hThis,
  /external/v8/src/parsing/
scanner.h 256 int new_capacity = Min(capacity * kGrowthFactory, capacity + kMaxGrowth);
  /external/v8/src/regexp/
regexp-ast.h 60 return Interval(Min(from_, that.from_), Max(to_, that.to_));
375 RegExpQuantifier(int min, int max, QuantifierType type, RegExpTree* body)
377 min_(min),
379 min_match_(min * body->min_match()),
389 static RegExpNode* ToNode(int min, int max, bool is_greedy, RegExpTree* body,
397 int min() { return min_; } function in class:v8::internal::final
jsregexp.cc 111 int length = Min(kMaxLookaheadForBoyerMoore, pattern->length());
2386 int min = 100; local
    [all...]
  /external/v8/src/
transitions.cc 271 new_capacity = Min(kMaxCachedPrototypeTransitions, new_capacity);
utils.h 199 T Min(T a, T b) {
1020 // DCHECK(Min(dst, const_cast<T*>(src)) + num_words <=
1066 DCHECK(Min(dst, const_cast<T*>(src)) + num_bytes <=
    [all...]
log.cc 86 int uc16_length = Min(str->length(), kUtf16BufferSize);
104 size = Min(size, kUtf8BufferSize - utf8_pos_);
    [all...]
  /system/connectivity/shill/wifi/
scan_session_unittest.cc 207 TEST_F(ScanSessionTest, Min) {
471 // Set min & max scan frequency count to 1 so each scan will be of a single
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 179 /// min/max.
182 APInt& Min, APInt& Max) {
184 KnownZero.getBitWidth() == Min.getBitWidth() &&
186 "KnownZero, KnownOne and Min, Max must have equal bitwidth.");
191 Min = KnownOne;
195 Min.setBit(Min.getBitWidth()-1);
203 // min/max.
206 APInt &Min, APInt &Max) {
208 KnownZero.getBitWidth() == Min.getBitWidth() &
    [all...]
  /external/v8/src/runtime/
runtime-strings.cc 589 int block = Min(done, repeat - done);
759 const int length = static_cast<int>(Min<uint32_t>(s->length(), limit));
    [all...]
  /external/v8/src/wasm/
wasm-module.cc 83 os << (module.min_mem_pages * module.kPageSize) << " min mem";
537 Min(static_cast<size_t>(FLAG_wasm_num_compilation_tasks),
554 Min(static_cast<size_t>(FLAG_wasm_num_compilation_tasks),
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmstypes.c     [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/v8/src/heap/
heap.cc     [all...]
  /external/opencv3/modules/core/test/ocl/
test_arithm.cpp 149 randomSubMat(src2, src2_roi, roiSize, src2Border, type, std::max(-1540., minV), std::min(1740., maxV));
440 //////////////////////////////// Min/Max /////////////////////////////////////////////////
442 typedef ArithmTestBase Min;
444 OCL_TEST_P(Min, Mat)
464 OCL_OFF(cv::min(src1_roi, src2_roi, dst1_roi));
465 OCL_ON(cv::min(usrc1_roi, usrc2_roi, udst1_roi));
    [all...]
  /external/sonivox/jet_tools/JetCreator/
JetDialogs.py 46 for Lbl, Text, Row, Col, Len, Min, Max, Id, Lst, Fct, Enabled, HelpText in ctrls:
60 self.ctrls[Text] = JetSpinOneBased(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), min=Min, max=Max)
62 self.ctrls[Text] = JetSpin(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), min=Min, max=Max)
    [all...]
  /external/v8/src/compiler/
js-create-lowering.cc 537 length_type->Min() >= 0 &&
    [all...]
  /external/v8/test/cctest/
test-unboxed-doubles.cc 290 Min(expected_sequence_length, max_sequence_length);
    [all...]
  /external/chromium-trace/catapult/third_party/mocha/
mocha.js 317 var contextSize = Math.min(lines.length, 4);
729 var percent = Math.min(this.percent, 100)
    [all...]
  /external/chromium-trace/catapult/tracing/third_party/mocha/
mocha.js 317 var contextSize = Math.min(lines.length, 4);
729 var percent = Math.min(this.percent, 100)
    [all...]
  /external/opencv3/3rdparty/openexr/Imath/
ImathEuler.h 198 Min = 0x0000,
  /external/opencv3/modules/cudaarithm/test/
test_element_operations.cpp     [all...]

Completed in 1001 milliseconds

1 2 3 4 5 67 8 910