HomeSort by relevance Sort by last modified time
    Searched refs:Max (Results 126 - 150 of 199) sorted by null

1 2 3 4 56 7 8

  /external/v8/src/
platform-openbsd.cc 170 Max(highest_ever_allocated,
scopes.cc 140 num_heap_slots_ = Max(num_heap_slots_,
    [all...]
utils.h 196 T Max(T a, T b) {
507 inline Vector<char> MutableCStrVector(char* data, int max) {
509 return Vector<char>(data, (length < max) ? length : max);
lithium-allocator.cc 54 static inline LifetimePosition Max(LifetimePosition a, LifetimePosition b) {
437 first_interval_->end_ = Max(end, first_interval_->end_);
    [all...]
elements.cc     [all...]
jsregexp.cc 4258 int max = ranges->at(0).to(); local
4448 int max = character_ranges->at(0).to(); local
    [all...]
jsregexp.h 291 bool IsEverything(uc16 max) { return from_ == 0 && to_ >= max; }
728 return Interval(Min(from_, that.from_), Max(to_, that.to_));
    [all...]
isolate.cc 545 int limit = Max(frame_limit, 0);
    [all...]
platform-win32.cc 836 Max(highest_ever_allocated,
    [all...]
  /external/chromium_org/v8/src/
jsregexp.cc 736 Max(registers_per_match_, Isolate::kJSRegexpStaticOffsetsVectorSize);
5372 int max = ranges->at(0).to(); local
5481 int max = character_ranges->at(0).to(); local
    [all...]
isolate.cc 650 limit = Max(limit, 0); // Ensure that limit is not negative.
730 int limit = Max(frame_limit, 0);
    [all...]
ast.cc 981 if (that->max() == RegExpTree::kInfinity) {
984 stream()->Add("%i ", that->max());
    [all...]
jsregexp.h 283 bool IsEverything(uc16 max) { return from_ == 0 && to_ >= max; }
700 return Interval(Min(from_, that.from_), Max(to_, that.to_));
    [all...]
platform-win32.cc 853 Max(highest_ever_allocated,
    [all...]
scopes.cc 148 num_heap_slots_ = Max(num_heap_slots_,
    [all...]
ic.cc     [all...]
code-stubs.h     [all...]
serialize.cc 647 int max = external_references->max_id(type) + 1; local
648 encodings_[type] = NewArray<Address>(max + 1);
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/image_editor/
image_util.js 61 * @param {number} max Maximum value.
62 * @return {number} The closest to the |value| number in span [min, max].
64 ImageUtil.clamp = function(min, value, max) {
65 return Math.max(min, Math.min(max, value));
71 * @param {number} max Maximum value.
74 ImageUtil.between = function(min, value, max) {
75 return (value - min) * (value - max) <= 0;
420 * Max size of image to be displayed (in pixels)
610 var step = Math.max(16, Math.ceil(image.height / stripCount)) & 0xFFFFF0
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/
webrunner.js 167 // Make Max
168 results.max = times[ num - 1 ];
490 results[curID].total[run] = {max:0, mean:0, median:0, min:0, deviation:0, error:0, num:0};
    [all...]
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 373 int64_t Max = scale * ((1LL << (field_width - 1)) - 1);
374 return (Val % scale) == 0 && Val >= Min && Val <= Max;
    [all...]
  /external/svox/pico/lib/
picopam.c 334 #define Max 66 /*offset to max syllable duration (uint 16,pauses)*/
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/photo/
mosaic_mode.js 213 integral(Math.max(0, Mosaic.ANIMATED_SCROLL_DURATION - position),
214 Math.max(0, Mosaic.ANIMATED_SCROLL_DURATION - lastPosition));
884 // Max density reached, commit if tentative, just continue if dry run.
    [all...]
  /external/chromium_org/chrome/browser/resources/profiler/
profiler.js 8 // TODO(eroman): The handling of "max" across snapshots is not correct.
10 // Secondly, we need to take into account the "max" of intermediary snapshots,
262 this.max_ = Math.max(this.max_, e[this.key_]);
338 * involves subtracting, but some fields like max may need to do
408 name: 'Max queue time',
436 name: 'Max run time',
782 var lastSlash = Math.max(path.lastIndexOf('/'),
    [all...]
  /external/chromium_org/net/cookies/
cookie_monster.cc     [all...]

Completed in 1009 milliseconds

1 2 3 4 56 7 8