HomeSort by relevance Sort by last modified time
    Searched refs:max1 (Results 1 - 20 of 20) sorted by null

  /external/stlport/test/unit/
max_test.cpp 16 CPPUNIT_TEST(max1);
23 void max1();
37 void MaxTest::max1() function in class:MaxTest
  /ndk/tests/device/test-gnustl-full/unit/
max_test.cpp 16 CPPUNIT_TEST(max1);
23 void max1();
37 void MaxTest::max1() function in class:MaxTest
  /ndk/tests/device/test-stlport/unit/
max_test.cpp 16 CPPUNIT_TEST(max1);
23 void max1();
37 void MaxTest::max1() function in class:MaxTest
  /external/libvpx/libvpx/vp9/decoder/
vp9_dsubexp.c 31 int max1 = (n - 1 - modulus / 2) / modulus + 1; local
32 if (v < max1) {
36 v -= max1;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_dsubexp.c 31 int max1 = (n - 1 - modulus / 2) / modulus + 1; local
32 if (v < max1) {
36 v -= max1;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
transform_mips.c 31 int32_t inre1, inre2, tmpre, tmpim, factor, max, max1; local
215 " subu %[max1], $zero, %[max] \n\t"
239 "addiu %[r4], %[max1], -1 \n\t"
250 "shrav_r.w %[r0], %[r0], %[max1] \n\t"
251 "shrav_r.w %[r1], %[r1], %[max1] \n\t"
252 "shrav_r.w %[r2], %[r2], %[max1] \n\t"
253 "shrav_r.w %[r3], %[r3], %[max1] \n\t"
259 "srav %[r0], %[r0], %[max1] \n\t"
260 "srav %[r1], %[r1], %[max1] \n\t"
261 "srav %[r2], %[r2], %[max1] \n\t
606 int32_t r0, r1, r2, r3, r4, r5, r6, r7, r8, r9, r10, max, max1; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
smooth.c 43 int16_t max1, max2; local
49 max1=WebRtcSpl_MaxAbsValueW16(current, ENH_BLOCKL);
51 maxtot=WEBRTC_SPL_MAX(max1, max2);
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
pitch_ol.cpp 735 Word16 max1, max2, max3;
841 pit_max, j, &max1, &rmax1, &r01, dtx);
854 pit_max, j, &max1, dtx);
882 if (sub (mult (max1, THRESHOLD), max2) < 0)
884 max1 = max2;
893 if (sub (mult (max1, THRESHOLD), max3) < 0)
954 Word16 max1; local
    [all...]
p_ol_wgh.cpp 733 Word16 max1;
791 st->old_T0_med, &max1, st->wght_flg, &ol_gain_flg[idx],
876 Word16 max1; local
935 st->old_T0_med, &max1, st->wght_flg, &ol_gain_flg[idx],
  /external/aac/libSBRenc/src/
sbrenc_freq_sca.cpp 629 INT max1,max2; local
636 max1=0;
638 while( (v_k_master[max1+1] < 32 ) && /* noQMFChannels(dualRate)/divider */
639 ( (max1+1) < max2) )
641 max1++;
644 *xover_band=max1;
  /external/chromium_org/third_party/skia/src/pathops/
SkOpContour.cpp 333 double max1 = oneCoin.fTs[!oneIdx][1]; local
336 bool cancelers = (min1 < max1) != (min2 < max2);
337 if (min1 > max1) {
338 SkTSwap(min1, max1);
343 if (between(min1, min2, max1)) {
346 if (between(min1, max2, max1)) {
352 if (between(min2, max1, max2)) {
353 max = SkTMax(max, max1);
381 double hiEnd = SkTMax(max1, max2);
  /external/skia/src/pathops/
SkOpContour.cpp 322 double max1 = oneCoin.fTs[!oneIdx][1]; local
325 bool cancelers = (min1 < max1) != (min2 < max2);
326 if (min1 > max1) {
327 SkTSwap(min1, max1);
332 if (between(min1, min2, max1)) {
335 if (between(min1, max2, max1)) {
341 if (between(min2, max1, max2)) {
342 max = SkTMax(max, max1);
370 double hiEnd = SkTMax(max1, max2);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigDecimalTest.java 418 BigDecimal max1 = new BigDecimal(value2, 1); local
420 assertTrue("1233456000.0 is not greater than 1233456", max1.max(max2)
421 .equals(max1));
422 max1 = new BigDecimal(-1.224D);
424 assertTrue("-1.224 is not greater than -1.2245", max1.max(max2).equals(
425 max1));
426 max1 = new BigDecimal(123E18);
428 assertTrue("123E19 is the not the max", max1.max(max2).equals(max2));
    [all...]
  /cts/apps/CtsVerifier/lib/colorchecker/
colorcheckertest.cpp 320 int max1 = 0; local
333 if ((i < houghHeight / 2) && (houghAngleSum[i] > max1)) {
334 max1 = houghAngleSum[i];
    [all...]
  /external/chromium_org/v8/test/cctest/
test-types.cc 598 // Range(min1, max1) = Range(min2, max2) <=> min1 = min2 /\ max1 = max2
608 i::Handle<i::Object> max1 = *j1; local
611 if (min1->Number() > max1->Number()) std::swap(min1, max1);
613 TypeHandle type1 = T.Range(min1, max1);
615 CHECK(Equal(type1, type2) == (*min1 == *min2 && *max1 == *max2));
959 i::Handle<i::Object> max1 = *j1; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXNameConstraintValidator.java 462 byte[] max1 = new byte[ipLength];
470 max1[i] = (byte)(ip1[i] & subnetmask1[i] | ~subnetmask1[i]);
476 return new byte[][]{min1, max1, min2, max2};
    [all...]
  /external/chromium_org/third_party/libwebp/dsp/
dec_neon.c 674 const uint8x16_t max1 = vmaxq_u8(a_p3_p2, a_p2_p1); local
677 const uint8x16_t max12 = vmaxq_u8(max1, max2);
    [all...]
  /external/webp/src/dsp/
dec_neon.c 674 const uint8x16_t max1 = vmaxq_u8(a_p3_p2, a_p2_p1); local
677 const uint8x16_t max12 = vmaxq_u8(max1, max2);
    [all...]
  /external/elfutils/0.153/libcpu/
i386_parse.c     [all...]
  /prebuilts/sdk/tools/lib/
signapk.jar 

Completed in 971 milliseconds