Home
last modified time | relevance | path

Searched refs:max2 (Results 1 – 14 of 14) sorted by relevance

/external/stlport/test/unit/
Dmax_test.cpp17 CPPUNIT_TEST(max2);
24 void max2();
45 void MaxTest::max2() in max2() function in MaxTest
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
Dsmooth.c43 int16_t max1, max2; in WebRtcIlbcfix_Smooth() local
50 max2=WebRtcSpl_MaxAbsValueW16(surround, ENH_BLOCKL); in WebRtcIlbcfix_Smooth()
51 maxtot=WEBRTC_SPL_MAX(max1, max2); in WebRtcIlbcfix_Smooth()
/external/skia/src/pathops/
DSkOpContour.cpp324 double max2 = twoCoin.fTs[!twoIdx][1]; in checkCoincidentPair() local
325 bool cancelers = (min1 < max1) != (min2 < max2); in checkCoincidentPair()
329 if (min2 > max2) { in checkCoincidentPair()
330 SkTSwap(min2, max2); in checkCoincidentPair()
335 if (between(min1, max2, max1)) { in checkCoincidentPair()
336 max = max2; in checkCoincidentPair()
338 if (between(min2, min1, max2)) { in checkCoincidentPair()
341 if (between(min2, max1, max2)) { in checkCoincidentPair()
370 double hiEnd = SkTMax(max1, max2); in checkCoincidentPair()
/external/chromium_org/third_party/skia/src/pathops/
DSkOpContour.cpp335 double max2 = twoCoin.fTs[!twoIdx][1]; in checkCoincidentPair() local
336 bool cancelers = (min1 < max1) != (min2 < max2); in checkCoincidentPair()
340 if (min2 > max2) { in checkCoincidentPair()
341 SkTSwap(min2, max2); in checkCoincidentPair()
346 if (between(min1, max2, max1)) { in checkCoincidentPair()
347 max = max2; in checkCoincidentPair()
349 if (between(min2, min1, max2)) { in checkCoincidentPair()
352 if (between(min2, max1, max2)) { in checkCoincidentPair()
381 double hiEnd = SkTMax(max1, max2); in checkCoincidentPair()
/external/aac/libSBRenc/src/
Dsbrenc_freq_sca.cpp629 INT max1,max2; in FDKsbrEnc_UpdateHiRes() local
637 max2=num_master; in FDKsbrEnc_UpdateHiRes()
639 ( (max1+1) < max2) ) in FDKsbrEnc_UpdateHiRes()
/external/llvm/test/CodeGen/X86/
Dscalar_sse_minmax.ll30 define double @max2(double %x, double %y) {
/external/llvm/test/Transforms/InstSimplify/
Dmaxmin.ll12 define i1 @max2(i32 %x, i32 %y) {
13 ; CHECK-LABEL: @max2(
/external/chromium_org/v8/test/cctest/
Dtest-types.cc610 i::Handle<i::Object> max2 = *j2; in Range() local
612 if (min2->Number() > max2->Number()) std::swap(min2, max2); in Range()
614 TypeHandle type2 = T.Range(min2, max2); in Range()
615 CHECK(Equal(type1, type2) == (*min1 == *min2 && *max1 == *max2)); in Range()
961 i::Handle<i::Object> max2 = *j2; in Is() local
963 if (min2->Number() > max2->Number()) std::swap(min2, max2); in Is()
965 TypeHandle type2 = T.Range(min2, max2); in Is()
968 max1->Number() <= max2->Number())); in Is()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
DPKIXNameConstraintValidator.java465 byte[] max2 = new byte[ipLength]; in minMaxIPs()
473 max2[i] = (byte)(ip2[i] & subnetmask2[i] | ~subnetmask2[i]); in minMaxIPs()
476 return new byte[][]{min1, max1, min2, max2}; in minMaxIPs()
/external/skia/src/core/
DSkXfermode.cpp432 static inline int max2(int a, int b) { return a > b ? a : b; } in max2() function
434 #define maximum(a, b, c) max2(max2(a, b), c)
/external/chromium_org/third_party/skia/src/core/
DSkXfermode.cpp432 static inline int max2(int a, int b) { return a > b ? a : b; } in max2() function
434 #define maximum(a, b, c) max2(max2(a, b), c)
/external/webp/src/dsp/
Ddec_neon.c675 const uint8x16_t max2 = vmaxq_u8(a_p1_p0, a_q3_q2); in NeedsFilter2() local
677 const uint8x16_t max12 = vmaxq_u8(max1, max2); in NeedsFilter2()
/external/chromium_org/third_party/libwebp/dsp/
Ddec_neon.c675 const uint8x16_t max2 = vmaxq_u8(a_p1_p0, a_q3_q2); in NeedsFilter2() local
677 const uint8x16_t max12 = vmaxq_u8(max1, max2); in NeedsFilter2()
/external/deqp/modules/glshared/
DglsVertexArrayTests.cpp1532 const deUint32 max2 = 4; in createQuadsPacked() local
1550 deUint32 w = deRandom_getUint32(&rnd) % max2; in createQuadsPacked()