/external/blktrace/ |
stats.h | 30 __u64 max; member in struct:minmax 39 mm->max = 0; 51 if (value > mm->max) 52 mm->max = value; 62 if (src->max > dst->max) 63 dst->max = src->max; 72 mm->max = cpu_to_be64(mm->max); [all...] |
/external/bluetooth/bluedroid/bta/ag/ |
bta_ag_at.h | 53 INT16 max; /* maximum value for int arg */ member in struct:__anon87
|
/external/chromium/chrome/browser/extensions/ |
extension_metrics_apitest.cc | 34 int max; member in struct:__anon1834::RecordedHistogram 131 EXPECT_EQ(r.max, histogram->declared_max());
|
/external/chromium_org/base/metrics/ |
histogram_samples.cc | 21 HistogramBase::Sample* max, 51 HistogramBase::Sample* max, 55 *max = max_; 97 HistogramBase::Sample max; local 102 it->Get(&min, &max, &count); 104 !pickle->WriteInt(max) ||
|
sample_map.cc | 50 Sample max; local 53 iter->Get(&min, &max, &count); 54 if (min + 1 != max) 76 void SampleMapIterator::Get(Sample* min, Sample* max, Count* count) const { 80 if (max != NULL) 81 *max = iter_->first + 1;
|
/external/chromium_org/base/ |
version.cc | 41 const uint16 max = 0xFFFF; local 42 if (num > max)
|
/external/chromium_org/chrome/common/metrics/ |
metrics_log_base.cc | 162 HistogramBase::Sample max; local 164 it->Get(&min, &max, &count); 167 bucket->set_max(max); 175 bucket->max() == histogram_proto->bucket(i + 1).min()) { 177 } else if (bucket->max() == bucket->min() + 1) {
|
/external/chromium_org/components/translate/common/ |
translate_metrics_unittest.cc | 109 HistogramBase::Sample max; local 111 i->Get(&min, &max, &count); 112 if (min <= value && value <= max && count >= 1)
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
kernel_object.cc | 74 size_t max = abs_parts.Size(); local 76 MountMap_t::iterator it = mounts_.find(abs_parts.Range(0, max - len)); 79 rel_parts->Append(abs_parts.Range(max - len, max));
|
/external/chromium_org/net/quic/crypto/ |
common_cert_set.cc | 114 size_t max = kSets[j].num_certs - 1; variable 115 while (max >= min) { 116 size_t mid = min + ((max - min) / 2); 122 max = mid - 1;
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLProgressElement.cpp | 98 return !std::isfinite(value) || value < 0 ? 0 : std::min(value, max()); 107 setFloatingPointAttribute(valueAttr, std::max(value, 0.)); 110 double HTMLProgressElement::max() const function in class:WebCore::HTMLProgressElement 112 double max = getFloatingPointAttribute(maxAttr); local 113 return !std::isfinite(max) || max <= 0 ? 1 : max; 116 void HTMLProgressElement::setMax(double max, ExceptionState& exceptionState) 118 if (!std::isfinite(max)) { 119 exceptionState.throwDOMException(NotSupportedError, ExceptionMessages::notAFiniteNumber(max)); [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_format_parse.py | 75 def max(self): member in class:Channel
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/ |
svga_tgsi.c | 240 int i, max = 0; local 242 max = MAX2(max, remap_table[i]); 244 remap_table[generic_index] = max + 1;
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
api_validate.c | 58 * Find the max index in the given element/index buffer 66 GLuint max = 0; local 79 if (((GLuint *) indices)[i] > max) 80 max = ((GLuint *) indices)[i]; 84 if (((GLushort *) indices)[i] > max) 85 max = ((GLushort *) indices)[i]; 90 if (((GLubyte *) indices)[i] > max) 91 max = ((GLubyte *) indices)[i]; 98 return max; 175 GLuint min, max; local [all...] |
version.c | 88 static const int max = 100; local 227 ctx->VersionString = (char *) malloc(max); 229 _mesa_snprintf(ctx->VersionString, max, 242 static const int max = 100; local 259 ctx->VersionString = (char *) malloc(max); 261 _mesa_snprintf(ctx->VersionString, max, 274 static const int max = 100; local 292 ctx->VersionString = (char *) malloc(max); 294 _mesa_snprintf(ctx->VersionString, max,
|
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/ |
a_utctm.c | 118 static const int max[8]={99,12,31,23,59,59,12,59}; local 141 if ((n < min[i]) || (n > max[i])) goto err; 156 if ((n < min[i]) || (n > max[i])) goto err;
|
/external/chromium_org/third_party/openssl/openssl/crypto/txt_db/ |
txt_db.c | 348 char **p,*max; local 368 max=p[db->num_fields]; /* last address */ 369 if (max == NULL) /* new row */ 378 if (((p[n] < (char *)p) || (p[n] > max))
|
/external/chromium_org/third_party/re2/re2/ |
simplify.cc | 122 // Simplifies the expression re{min,max} in terms of *, +, and ?. 125 static Regexp* SimplifyRepeat(Regexp* re, int min, int max, 307 // Simplifies the expression re{min,max} in terms of *, +, and ?. 313 Regexp* SimplifyWalker::SimplifyRepeat(Regexp* re, int min, int max, 316 if (max == -1) { 337 if (min == 0 && max == 0) 341 if (min == 1 && max == 1) 359 if (max > min) { 361 for (int i = min+1; i < max; i++) 370 // Some degenerate case, like min > max, or min < max < 0 372 LOG(DFATAL) << "Malformed repeat " << re->ToString() << " " << min << " " << max; local [all...] |
/external/chromium_org/third_party/re2/re2/testing/ |
possible_match_test.cc | 27 const char* max; member in struct:re2::PrefixTest 107 string min, max; local 114 CHECK(prog->PossibleMatchRange(&min, &max, t.maxlen)) 119 CHECK(RE2(t.regexp).PossibleMatchRange(&min, &max, t.maxlen)); 122 EXPECT_EQ(t.max, max) << t.regexp; 129 string min, max; local 131 // Fails because no room to write max. 132 EXPECT_FALSE(RE2("abc").PossibleMatchRange(&min, &max, 0)); 134 // Fails because there is no max -- any non-empty string matche 202 string min, max; local 218 CHECK_GE(s, min) << " regexp: " << regexp << " max: " << max; local [all...] |
/external/chromium_org/third_party/skia/src/core/ |
SkColor.cpp | 38 unsigned max = SkMax32(r, SkMax32(g, b)); local 39 unsigned delta = max - min; 41 SkScalar v = ByteToScalar(max); 51 SkScalar s = ByteDivToScalar(delta, max); 55 if (r == max) { 57 } else if (g == max) { 59 } else { // b == max
|
/external/chromium_org/third_party/skia/src/gpu/gl/ |
GrGLCaps.cpp | 110 GrGLint max; local 111 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_COMPONENTS, &max); 112 fMaxFragmentUniformVectors = max / 4; 632 r.appendf("Max FS Uniform Vectors: %d\n", fMaxFragmentUniformVectors); 633 r.appendf("Max FS Texture Units: %d\n", fMaxFragmentTextureUnits); 635 r.appendf("Max Fixed Function Texture Coords: %d\n", fMaxFixedFunctionTextureCoords); 637 r.appendf("Max Vertex Attributes: %d\n", fMaxVertexAttributes);
|
/external/chromium_org/third_party/skia/src/opts/ |
SkMorphology_opts_SSE2.cpp | 41 __m128i max = type == kDilate ? _mm_setzero_si128() : _mm_set1_epi32(0xFFFFFFFF); local 44 max = type == kDilate ? _mm_max_epu8(src_pixel, max) : _mm_min_epu8(src_pixel, max); 46 *dptr = _mm_cvtsi128_si32(max);
|
SkMorphology_opts_neon.cpp | 42 uint8x8_t max = vdup_n_u8(type == kDilate ? 0 : 255); local 45 max = type == kDilate ? vmax_u8(src_pixel, max) : vmin_u8(src_pixel, max); 47 *dptr = vget_lane_u32(vreinterpret_u32_u8(max), 0);
|
/external/chromium_org/third_party/zlib/ |
inftrees.c | 42 unsigned min, max; /* minimum and maximum code lengths */ local 114 for (max = MAXBITS; max >= 1; max--) 115 if (count[max] != 0) break; 116 if (root > max) root = max; 117 if (max == 0) { /* no symbols to code at all */ 126 for (min = 1; min < max; min++) 137 if (left > 0 && (type == CODES || max != 1) [all...] |
/external/clang/test/SemaCXX/ |
i-c-e-cxx.cpp | 43 unsigned max = 80 / x; local
|