HomeSort by relevance Sort by last modified time
    Searched defs:max (Results 151 - 175 of 1518) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
random.h 106 max() const
164 * std::numeric_limits<_UIntType>::max() plus 1. Otherwise, the template
252 max()
468 max()
680 max()
909 max()
910 { return _RandomNumberEngine::max(); }
4232 max() const function
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
random.h 106 max() const
164 * std::numeric_limits<_UIntType>::max() plus 1. Otherwise, the template
252 max()
468 max()
680 max()
909 max()
910 { return _RandomNumberEngine::max(); }
4232 max() const function
    [all...]
  /bionic/libc/bionic/
pathconf.c 89 static const struct { uint32_t type; int max; } knownMax[] = member in struct:__anon61
103 return knownMax[nn].max;
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
LocalSnapshot.java 81 int max = locals.getMaxSize(); local
86 for (int i = 0; i < max; i++) {
  /dalvik/dx/src/com/android/dx/dex/code/
LocalSnapshot.java 81 int max = locals.getMaxSize(); local
86 for (int i = 0; i < max; i++) {
  /dalvik/dx/src/com/android/dx/merge/
SortableType.java 73 int max; local
75 max = 0; // this is Object.class or an interface
79 max = 1; // unknown, so assume it's a root.
83 max = sortableSupertype.depth;
90 max = Math.max(max, 1); // unknown, so assume it's a root.
94 max = Math.max(max, implemented.depth)
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_metrics_module.cc 74 int max,
82 max,
88 max,
108 int max; local
113 EXTENSION_FUNCTION_VALIDATE(metric_type->GetInteger("max", &max));
118 return RecordValue(name, histogram_type, min, max, buckets, sample);
  /external/chromium/testing/gmock/src/
gmock-cardinalities.cc 52 BetweenCardinalityImpl(int min, int max)
54 max_(max >= min_ ? max : min_) {
60 } else if (max < 0) {
62 << "but is actually " << max << "."; local
64 } else if (min > max) {
65 ss << "The invocation upper bound (" << max
147 // Creates a cardinality that allows between min and max calls.
148 Cardinality Between(int min, int max) {
149 return Cardinality(new BetweenCardinalityImpl(min, max));
    [all...]
  /external/chromium_org/cc/layers/
heads_up_display_layer_impl.h 56 // graph, so that the graph always scales to either it's max or
62 double max; member in class:cc::HeadsUpDisplayLayerImpl::Graph
  /external/chromium_org/chrome/browser/
chrome_page_zoom.cc 49 double max = value_type == PAGE_ZOOM_VALUE_TYPE_LEVEL ? local
52 if (!found_custom && custom_value > min && custom_value < max) {
  /external/chromium_org/native_client_sdk/src/examples/api/url_loader/
url_loader_handler.cc 16 #undef max macro
  /external/chromium_org/native_client_sdk/src/examples/api/var_array_buffer/
var_array_buffer.cc 19 #undef max macro
136 double max = *std::max_element(histogram_, histogram_ + kHistogramSize);
138 histogram_[i] /= max;
  /external/chromium_org/third_party/freetype/src/base/
ftdebug.c 133 int max = FT_Trace_Get_Count(); local
136 if ( idx < max )
  /external/chromium_org/third_party/freetype/src/psnames/
pstables.h 4080 int count, min, max; local
    [all...]
  /external/chromium_org/third_party/libxml/src/
testAutomata.c 133 int min, max; local
160 max = scanNumber(&ptr);
168 BAD_CAST ptr, min, max, NULL);
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_add.c 107 int max,min,dif; local
116 max = a->top;
118 dif = max - min;
120 if (bn_wexpand(r,max+1) == NULL)
123 r->top=max;
168 int max,min,dif; local
178 max = a->top;
180 dif = max - min;
188 if (bn_wexpand(r,max) == NULL) return(0);
237 memcpy(rp,ap,sizeof(*rp)*(max-i))
265 int max; local
    [all...]
bn_sqr.c 67 int max,al; local
88 max = 2 * al; /* Non-zero (from above) */
89 if (bn_wexpand(rr,max) == NULL) goto err;
131 if (bn_wexpand(tmp,max) == NULL) goto err;
136 if (bn_wexpand(tmp,max) == NULL) goto err;
143 * the square of 'a' will max-1 words. */
145 rr->top = max - 1;
147 rr->top = max;
160 int i,j,max; local
164 max=n*2
    [all...]
  /external/chromium_org/ui/gfx/
break_list.h 45 // Set the max position and trim any breaks at or beyond that position.
46 void SetMax(size_t max);
47 size_t max() const { return max_; } function in class:gfx::BreakList
111 void BreakList<T>::SetMax(size_t max) {
112 typename std::vector<Break>::iterator i = GetBreak(max);
113 i += (i == breaks_.begin() || i->first < max) ? 1 : 0;
115 max_ = max;
169 DCHECK_LT(breaks_.back().first, max_) << "Break beyond max position.";
  /external/chromium_org/v8/test/cctest/
test-time.cc 88 Time max = Time::Max(); local
89 CHECK(max.IsMax());
90 CHECK(max == Time::FromTimespec(max.ToTimespec()));
104 Time max = Time::Max(); local
105 CHECK(max.IsMax());
106 CHECK(max == Time::FromTimeval(max.ToTimeval()))
122 Time max = Time::Max(); local
    [all...]
  /external/chromium_org/v8/test/mjsunit/
math-min-max.js 84 // Test Math.max().
86 assertEquals(Number.NEGATIVE_INFINITY, Math.max());
87 assertEquals(1, Math.max(1));
88 assertEquals(2, Math.max(1, 2));
89 assertEquals(2, Math.max(2, 1));
90 assertEquals(3, Math.max(1, 2, 3));
91 assertEquals(3, Math.max(3, 2, 1));
92 assertEquals(3, Math.max(2, 3, 1));
93 assertEquals(3.3, Math.max(1.1, 2.2, 3.3));
94 assertEquals(3.3, Math.max(3.3, 2.2, 1.1))
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
LocalSnapshot.java 81 int max = locals.getMaxSize(); local
86 for (int i = 0; i < max; i++) {
  /external/easymock/src/org/easymock/internal/
Results.java 72 int min = 0, max = 0; local
76 if (interval.hasOpenCount() || max == Integer.MAX_VALUE) {
77 max = Integer.MAX_VALUE;
79 max += interval.getMaximum();
83 return new Range(min, max);
  /external/eigen/test/eigen2/
eigen2_packetmath.cpp 38 template<> const complex<float>& max(const complex<float>& a, const complex<float>& b) function in namespace:std
99 CHECK_CWISE(std::max, ei_pmax);
  /external/emma/core/java12/com/vladium/util/
ByteArrayIStream.java 61 final int max = m_max; local
63 if (pos >= max) return -1;
64 if (pos + length > max) length = max - pos;
  /external/flac/libFLAC/
ogg_decoder_aspect.c 41 #ifdef max
42 #undef max macro
44 #define max(x,y) ((x)>(y)?(x):(y)) macro
213 const size_t ogg_bytes_to_read = max(bytes_requested - *bytes, OGG_BYTES_CHUNK);
235 /* double protection; this will happen if the read callback returns more bytes than the max requested, which would overflow Ogg's internal buffer */

Completed in 1166 milliseconds

1 2 3 4 5 67 8 91011>>