HomeSort by relevance Sort by last modified time
    Searched defs:diff2 (Results 1 - 24 of 24) sorted by null

  /external/skia/infra/bots/recipes/
check_generated_files.py 64 diff2 = api.run( variable
76 diff2 = '''%s'''
78 if diff1 != diff2:
81 """ % (diff1, diff2))
  /external/skqp/infra/bots/recipes/
check_generated_files.py 64 diff2 = api.run( variable
76 diff2 = '''%s'''
78 if diff1 != diff2:
81 """ % (diff1, diff2))
  /external/llvm/test/MC/Mips/
mips64eb-fixups.s 13 $diff2 = ($loc3)-($loc0)
14 .8byte ($diff2)
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Mips/
mips64eb-fixups.s 13 $diff2 = ($loc3)-($loc0)
14 .8byte ($diff2)
  /external/tensorflow/tensorflow/lite/experimental/micro/examples/micro_speech/micro_features/
pcan_gain_control_util.cc 78 const int32_t diff2 = static_cast<int32_t>(y2) - y0; local
79 const int32_t a1 = 4 * diff1 - diff2;
80 const int32_t a2 = diff2 - a1;
  /external/tensorflow/tensorflow/lite/experimental/microfrontend/lib/
pcan_gain_control_util.c 77 const int32_t diff2 = (int32_t) y2 - y0; local
78 const int32_t a1 = 4 * diff1 - diff2;
79 const int32_t a2 = diff2 - a1;
  /external/webp/src/utils/
filters_utils.c 42 const int diff2 = SDIFF(p[i], p[i - width]); local
48 bins[WEBP_FILTER_VERTICAL][diff2] = 1;
  /external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
TestCLDRLocaleCoverage.java 65 Set<String> diff2 = new LinkedHashSet<>(Sets.difference(orgLocales, cldrLocales)); local
66 diff2.removeAll(skip);
67 if (!diff2.isEmpty()) {
68 String diffString = diff2.toString();
70 for (String localeId : diff2) {
77 return diff2;
  /external/icu/icu4c/source/test/cintltst/
cstrtest.c 327 int32_t diff1, diff2; local
335 diff2=getSign(uprv_compareInvEbcdicAsAscii(invStrings[i][0], invStrings[i-1][0]));
336 if(diff2!=-diff1) {
338 invStrings[i][1], invStrings[i-1][1], (short)diff2);
  /external/libaom/libaom/av1/encoder/x86/
highbd_block_error_intrin_avx2.c 33 __m256i diff2 = _mm256_sub_epi32(mm256_coeff2, mm256_dqcoeff2); local
35 __m256i diff2h = _mm256_srli_epi64(diff2, 32);
38 __m256i res2 = _mm256_mul_epi32(diff2, diff2);
  /external/webrtc/webrtc/common_audio/signal_processing/
resample_by_2_mips.c 61 int32_t diff1, diff2; local
73 "subu %[diff2], %[in322], %[state5] \n\t"
76 [diff1] "=&r" (diff1), [diff2] "=r" (diff2), [inw] "+r" (inw)
83 "mult $ac1, %[diff2], %[k1Res0] \n\t"
95 "subu %[diff2], %[tmp12], %[state6] \n\t"
98 "mult $ac1, %[diff2], %[k1Res1] \n\t"
115 [diff2] "r" (diff2), [diff1] "r" (diff1), [in322] "r" (in322),
123 "subu %[diff2], %[tmp22], %[state7] \n\t
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
ARTPSource.cpp 133 uint32_t diff2 = AbsDiff(seq2, mHighestSeqNumber); local
136 if (diff1 < diff2) {
138 // diff1 < diff2 ^ diff1 < diff3
141 // diff3 <= diff1 < diff2
144 } else if (diff2 < diff3) {
145 // diff2 <= diff1 ^ diff2 < diff3
148 // diff3 <= diff2 <= diff1
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
MapsTest.java 334 MapDifference<Integer, String> diff2 = Maps.difference(right, left); local
335 assertFalse(diff2.areEqual());
336 assertEquals(ImmutableMap.of(6, "z"), diff2.entriesOnlyOnLeft());
337 assertEquals(ImmutableMap.of(2, "b", 4, "d"), diff2.entriesOnlyOnRight());
338 assertEquals(ImmutableMap.of(1, "a"), diff2.entriesInCommon());
342 diff2.entriesDiffering());
344 + "value differences={3=(f, c), 5=(g, e)}", diff2.toString());
357 MapDifference<Integer, String> diff2 = Maps.difference(left, right2); local
362 .addEqualityGroup(diff2)
394 MapDifference<Integer, String> diff2 = Maps.difference(right, left local
475 SortedMapDifference<Integer, String> diff2 = local
541 SortedMapDifference<Integer, String> diff2 = local
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MapsTest.java 400 MapDifference<Integer, String> diff2 = Maps.difference(right, left); local
401 assertFalse(diff2.areEqual());
402 assertEquals(ImmutableMap.of(6, "z"), diff2.entriesOnlyOnLeft());
403 assertEquals(ImmutableMap.of(2, "b", 4, "d"), diff2.entriesOnlyOnRight());
404 assertEquals(ImmutableMap.of(1, "a"), diff2.entriesInCommon());
408 diff2.entriesDiffering());
410 + "value differences={3=(f, c), 5=(g, e)}", diff2.toString());
423 MapDifference<Integer, String> diff2 = Maps.difference(left, right2); local
428 .addEqualityGroup(diff2)
460 MapDifference<Integer, String> diff2 = Maps.difference(right, left local
541 SortedMapDifference<Integer, String> diff2 = local
607 SortedMapDifference<Integer, String> diff2 = local
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/tool/
ShowZoneEquivalences.java 74 Set<String> diff2 = new TreeSet<String>(icu4jTZIDs); local
75 diff2.removeAll(extras);
76 System.out.println("icu4jTZIDs - StandardCodes: " + diff2);
77 diff2 = new TreeSet<String>(extras);
78 diff2.removeAll(icu4jTZIDs);
79 System.out.println("StandardCodes - icu4jTZIDs: " + diff2);
  /external/deqp/modules/gles31/functional/
es31fShaderPackingFunctionTests.cpp 827 const int diff2 = de::abs((int)ref2 - (int)res2); local
830 if (diff0 > maxDiff || diff1 > maxDiff || diff2 > maxDiff || diff3 > maxDiff)
837 << "\n diffs = " << tcu::IVec4(diff0, diff1, diff2, diff3) << ", max diff = " << maxDiff
924 const deUint32 diff2 = getUlpDiff(ref2, res2); local
927 if (diff0 > maxDiff || diff1 > maxDiff || diff2 > maxDiff || diff3 > maxDiff)
1036 const int diff2 = de::abs((int)ref2 - (int)res2); local
1133 const deUint32 diff2 = getUlpDiff(ref2, res2); local
    [all...]
  /external/libevent/test/
regress_thread.c 357 long diff1,diff2; local
362 diff2 = timeval_msec_diff(&actual_delay,
364 if (labs(diff1) < labs(diff2)) {
regress_util.c 1251 struct timeval tv1, tv2, tv3, diff1, diff2; local
1263 evutil_timersub(&tv3, &tv2, &diff2);
1265 usec2 = diff2.tv_sec * 1000000 + diff2.tv_usec;
    [all...]
  /external/clang/test/CXX/expr/expr.const/
p2-0x.cpp 219 constexpr int diff2 = &a[1][3] - &a[1][0]; member in namespace:UndefinedBehavior::Ptr
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderPackingFunctionTests.cpp 1000 const int diff2 = de::abs((int)ref2 - (int)res2); local
1115 const deUint32 diff2 = getUlpDiff(ref2, res2); local
1243 const int diff2 = de::abs((int)ref2 - (int)res2); local
1358 const deUint32 diff2 = getUlpDiff(ref2, res2); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/wsi/
vktWsiDisplayTimingTests.cpp 897 const deUint64 diff2 = actual - desired; local
910 log << TestLog::Message << "\t\t diff = " << diff2 << " nsec" << TestLog::EndMessage;
    [all...]
  /external/libvpx/libvpx/vpx_dsp/mips/
avg_msa.c 686 v16u8 diff0, diff1, diff2, diff3, min0, min1, max0, max1; local
695 diff2 = __msa_asub_u_b(s2, d2);
699 min1 = __msa_min_u_b(diff2, diff3);
703 max1 = __msa_max_u_b(diff2, diff3);
  /external/webp/src/dsp/
enc_sse2.c 364 const __m128i diff2 = _mm_sub_epi16(src_2, ref_2); local
373 const __m128i shuf23l = _mm_unpacklo_epi32(diff2, diff3);
375 const __m128i shuf23h = _mm_unpackhi_epi32(diff2, diff3);
    [all...]
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.jdt.core_3.14.0.v20180528-0519.jar 

Completed in 1041 milliseconds