/external/icu/icu4c/source/i18n/ |
coleitr.cpp | 456 int32_t max; local 457 if(maxExpansions != NULL && (max = uhash_igeti(maxExpansions, order)) != 0) { 458 return max;
|
/external/icu/icu4c/source/test/intltest/ |
tzbdtest.cpp | 81 UDate max = min + SIX_MONTHS; local 82 while ((max - min) > INTERVAL) { 83 UDate mid = (min + max) / 2; 89 max = mid; 93 logln("Date After: " + showDate(max)); 95 UDate maxdelta = max - expectedBoundary; 121 UDate max = min + SIX_MONTHS; local 127 if (tz->inDaylightTime(max, status) == startsInDST) { 128 dataerrln("FAIL: " + tz->getID(str) + " inDaylightTime(" + dateToString(max) + ") != " + (startsInDST ? "false" : "true")); 132 while ((max - min) > INTERVAL) 386 UDate max = min + SIX_MONTHS; local [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
StringRange.java | 132 int max; field in class:StringRange.Range 133 public Range(int min, int max) { 135 this.max = max; 146 return max - that.max; 150 return min * 37 + max; 155 return min == max ? result.toString() : result.append('~').appendCodePoint(max).toString(); 172 if (ranges[i].max != other.ranges[i].min-1) { // not adjacen [all...] |
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
CompoundTransliterator.java | 511 int max = 0; local 514 if (len > max) { 515 max = len; 518 setMaximumContextLength(max);
|
/external/iproute2/ip/ |
tcp_metrics.c | 288 int i, max = RTA_PAYLOAD(a); local 290 if (max > 16) 291 max = 16; 293 for (i = 0; i < max; i++)
|
/external/javassist/src/main/javassist/tools/reflect/ |
ClassMetaobject.java | 257 int max = 0; local 272 if (k > max) 273 max = k; 277 methods = new Method[max];
|
/external/junit/src/org/junit/experimental/max/ |
MaxHistory.java | 1 package org.junit.experimental.max; 160 * @return a comparator that ranks tests based on the JUnit Max sorting
|
/external/libmicrohttpd/doc/examples/ |
sessions.c | 725 int max; local 747 max = 0; 751 if (MHD_YES != MHD_get_fdset (d, &rs, &ws, &es, &max)) 761 if (-1 == select (max + 1, &rs, &ws, &es, tvp))
|
/external/libmicrohttpd/src/examples/ |
post_example.c | 708 MHD_socket max; local 730 max = 0; 734 if (MHD_YES != MHD_get_fdset (d, &rs, &ws, &es, &max)) 744 select (max + 1, &rs, &ws, &es, tvp);
|
/external/libmicrohttpd/src/testcurl/ |
perf_get.c | 371 MHD_socket max; local 424 max = 0; 429 mret = curl_multi_fdset (multi, &rs, &ws, &es, &max); 438 if (MHD_YES != MHD_get_fdset (d, &rs, &ws, &es, &max)) 448 select (max + 1, &rs, &ws, &es, &tv);
|
test_get.c | 273 MHD_socket max; local 322 max = 0; 327 mret = curl_multi_fdset (multi, &rs, &ws, &es, &max); 336 if (MHD_YES != MHD_get_fdset (d, &rs, &ws, &es, &max)) 346 select (max + 1, &rs, &ws, &es, &tv);
|
test_get_sendfile.c | 276 MHD_socket max; local 325 max = 0; 330 mret = curl_multi_fdset (multi, &rs, &ws, &es, &max); 339 if (MHD_YES != MHD_get_fdset (d, &rs, &ws, &es, &max)) 349 select (max + 1, &rs, &ws, &es, &tv);
|
test_post.c | 336 MHD_socket max; local 390 max = 0; 395 mret = curl_multi_fdset (multi, &rs, &ws, &es, &max); 404 if (MHD_YES != MHD_get_fdset (d, &rs, &ws, &es, &max)) 414 select (max + 1, &rs, &ws, &es, &tv);
|
/external/libvncserver/libvncclient/ |
tight.c | 405 uint16_t max[3]; local 416 max[0] = client->format.redMax; 417 max[1] = client->format.greenMax; 418 max[2] = client->format.blueMax; 428 pix[c] = (uint16_t)(((src[y*client->rectWidth] >> shift[c]) + thatRow[c]) & max[c]); 437 if (est[c] > (int)max[c]) { 438 est[c] = (int)max[c]; 442 pix[c] = (uint16_t)(((src[y*client->rectWidth+x] >> shift[c]) + est[c]) & max[c]);
|
/external/libvorbis/vq/ |
metrics.c | 95 float min=-1.f,max=-1.f,mean=0.f,meansq=0.f; local 112 if(max==-1 || localmin>max)max=localmin; 120 fprintf(stderr,"\tmaximum cell spacing (closest side): %g\n",sqrt(max));
|
vqgen.c | 91 float min=-1.f,max=-1.f,mean=0.f,acc=0.f; local 128 localmin=v->max[j]+localmin/2; /* this gives us rough diameter */ 130 if(max==-1 || localmin>max)max=localmin; 139 min,mean/acc,max,unused,dup); 214 fprintf(stderr,"fault; quantized value>max\n"); 256 v->max=_ogg_calloc(v->entries,sizeof(float)); 507 if(firstmetric>v->max[j])v->max[j]=firstmetric [all...] |
/external/libvpx/libvpx/third_party/libwebm/ |
mkvmuxerutil.cpp | 389 const uint64 max = bit - 2; local 391 if (value <= max)
|
/external/libweave/third_party/chromium/base/time/ |
time_unittest.cc | 293 TEST_F(TimeTest, Max) { 294 Time max = Time::Max(); local 295 EXPECT_TRUE(max.is_max()); 296 EXPECT_EQ(max, Time::Max()); 297 EXPECT_GT(max, Time::Now()); 298 EXPECT_GT(max, Time()); 302 Time t = Time::Max(); 303 EXPECT_EQ(std::numeric_limits<int64_t>::max(), t.ToInternalValue()) 573 TimeDelta max = TimeDelta::Max(); local [all...] |
/external/libxml2/ |
testOOM.c | 77 size_t max; member in struct:buffer 94 b->max = init_len; 112 size_t new_size = b->max ? b->max : 512; 115 if (new_size > b->max) { 120 b->max = new_size;
|
/external/llvm/lib/IR/ |
ConstantRange.cpp | 15 // ranges (other integral ranges use min/max values for special range values): 51 "Lower == Upper, but they aren't min or max value!"); 547 // if Upper is greater than Max Value, it covers the whole truncated range. 647 // be non-wrapping, round the result min and max value to the appropriate 674 // Similarly for the upper bound, swapping min for max. 684 ConstantRange Result_sext(std::min(L, Compare), std::max(L, Compare) + 1); 777 APInt max = getUnsignedMax().shl(Other.getUnsignedMax()); local 782 return ConstantRange(min, max + 1); 793 APInt max = getUnsignedMax().lshr(Other.getUnsignedMin()); 795 if (min == max + 1 [all...] |
/external/llvm/utils/KillTheDoctor/ |
KillTheDoctor.cpp | 62 #undef max macro 311 if (Timeout > std::numeric_limits<uint32_t>::max() / 1000) { 313 << std::numeric_limits<uint32_t>::max() / 1000 407 if (TotalTimeMiliseconds > std::numeric_limits<uint32_t>::max()) {
|
/external/mesa3d/src/gallium/drivers/nvc0/ |
nvc0_program.c | 220 uint8_t max = (vp->hdr[4] >> 24); local 223 max = MAX2(max, slot); 225 vp->hdr[4] = (max << 24) | (min << 12); 361 tcp->hdr[4] = 0xff000; /* initial min/max parallel output read address */
|
/external/mesa3d/src/mesa/main/ |
formats.c | 1631 GLuint max = MAX2(info->RedBits, info->GreenBits); local [all...] |
/external/mesa3d/src/mesa/swrast/ |
s_depth.c | 170 GLint min, max; local 191 max = (GLint) (max_f * fb->_DepthMaxF); 192 if (max < 0) 193 max = 0x7fffffff; /* catch over flow for 30-bit z */ 200 if (zValues[i] > max) 201 zValues[i] = max;
|
s_texcombine.c | 682 const GLfloat max = samp->MaxLod; local 686 lambda[i] = CLAMP(l, min, max); 740 const GLfloat max = samp->MaxLod; local 744 lambda[i] = CLAMP(l, min, max);
|