Home
last modified time | relevance | path

Searched full:diff (Results 1 – 25 of 9736) sorted by relevance

12345678910>>...390

/aosp_15_r20/external/webrtc/common_audio/signal_processing/
H A Dresample_by_2_internal.c36 int32_t tmp0, tmp1, diff; in WebRtcSpl_DownBy2IntToShort() local
45 diff = tmp0 - state[1]; in WebRtcSpl_DownBy2IntToShort()
49 diff = (diff + (1 << 13)) >> 14; in WebRtcSpl_DownBy2IntToShort()
50 tmp1 = state[0] + diff * kResampleAllpass[1][0]; in WebRtcSpl_DownBy2IntToShort()
52 diff = tmp1 - state[2]; in WebRtcSpl_DownBy2IntToShort()
54 diff = diff >> 14; in WebRtcSpl_DownBy2IntToShort()
55 if (diff < 0) in WebRtcSpl_DownBy2IntToShort()
56 diff += 1; in WebRtcSpl_DownBy2IntToShort()
57 tmp0 = state[1] + diff * kResampleAllpass[1][1]; in WebRtcSpl_DownBy2IntToShort()
59 diff = tmp0 - state[3]; in WebRtcSpl_DownBy2IntToShort()
[all …]
H A Dresample_by_2_mips.c153 int32_t tmp1, tmp2, diff; in WebRtcSpl_DownsampleBy2() local
159 diff = in32 - state1; in WebRtcSpl_DownsampleBy2()
160 tmp1 = MUL_ACCUM_1(kResampleAllpass2[0], diff, state0); in WebRtcSpl_DownsampleBy2()
162 diff = tmp1 - state2; in WebRtcSpl_DownsampleBy2()
163 tmp2 = MUL_ACCUM_2(kResampleAllpass2[1], diff, state1); in WebRtcSpl_DownsampleBy2()
165 diff = tmp2 - state3; in WebRtcSpl_DownsampleBy2()
166 state3 = MUL_ACCUM_2(kResampleAllpass2[2], diff, state2); in WebRtcSpl_DownsampleBy2()
171 diff = in32 - state5; in WebRtcSpl_DownsampleBy2()
172 tmp1 = MUL_ACCUM_1(kResampleAllpass1[0], diff, state4); in WebRtcSpl_DownsampleBy2()
174 diff = tmp1 - state6; in WebRtcSpl_DownsampleBy2()
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/core/grappler/utils/
H A Dgraph_view_internal_test.cc66 MutableNodeViewDiff diff(&graph_view, d_node->node_index()); in TEST() local
67 EXPECT_TRUE(IsEmpty(&diff)); in TEST()
68 EXPECT_TRUE(IsWellFormed(&diff, updated_node_names)); in TEST()
70 UpdateName(&diff, "e"); in TEST()
71 EXPECT_FALSE(IsEmpty(&diff)); in TEST()
72 EXPECT_TRUE(IsWellFormed(&diff, updated_node_names)); in TEST()
74 UpdateName(&diff, "d"); in TEST()
75 EXPECT_TRUE(IsEmpty(&diff)); in TEST()
76 EXPECT_TRUE(IsWellFormed(&diff, updated_node_names)); in TEST()
90 MutableNodeViewDiff diff(&graph_view, d_node->node_index()); in TEST() local
[all …]
H A Dgraph_view_internal.h402 // the field will be cleared in the diff.
404 inline bool UpdateName(NodeViewDiff<GraphViewT>* diff, absl::string_view name) { in UpdateName() argument
405 if (diff->graph_view->GetNode(diff->node_index)->GetName() == name) { in UpdateName()
406 diff->name.clear(); in UpdateName()
407 diff->update_name = false; in UpdateName()
409 diff->name = string(name); in UpdateName()
410 diff->update_name = true; in UpdateName()
416 // field will be cleared in the diff.
418 inline bool UpdateOp(NodeViewDiff<GraphViewT>* diff, absl::string_view op) { in UpdateOp() argument
419 if (diff->graph_view->GetNode(diff->node_index)->GetOp() == op) { in UpdateOp()
[all …]
/aosp_15_r20/external/cronet/third_party/icu/source/common/
H A Ducnvbocu.cpp214 /* Faster versions of packDiff() for single-byte-encoded diff values. */
216 /** Is a diff value encodable in a single byte? */
217 #define DIFF_IS_SINGLE(diff) (BOCU1_REACH_NEG_1<=(diff) && (diff)<=BOCU1_REACH_POS_1) argument
219 /** Encode a diff value in a single byte. */
220 #define PACK_SINGLE_DIFF(diff) (BOCU1_MIDDLE+(diff)) argument
222 /** Is a diff value encodable in two bytes? */
223 #define DIFF_IS_DOUBLE(diff) (BOCU1_REACH_NEG_2<=(diff) && (diff)<=BOCU1_REACH_POS_2) argument
264 * mode decoder's incomplete (diff<<2)|count (ignored when toULength==0)
279 * @param diff difference value -0x10ffff..0x10ffff
287 packDiff(int32_t diff) { in packDiff() argument
[all …]
/aosp_15_r20/external/icu/icu4c/source/common/
H A Ducnvbocu.cpp214 /* Faster versions of packDiff() for single-byte-encoded diff values. */
216 /** Is a diff value encodable in a single byte? */
217 #define DIFF_IS_SINGLE(diff) (BOCU1_REACH_NEG_1<=(diff) && (diff)<=BOCU1_REACH_POS_1) argument
219 /** Encode a diff value in a single byte. */
220 #define PACK_SINGLE_DIFF(diff) (BOCU1_MIDDLE+(diff)) argument
222 /** Is a diff value encodable in two bytes? */
223 #define DIFF_IS_DOUBLE(diff) (BOCU1_REACH_NEG_2<=(diff) && (diff)<=BOCU1_REACH_POS_2) argument
264 * mode decoder's incomplete (diff<<2)|count (ignored when toULength==0)
279 * @param diff difference value -0x10ffff..0x10ffff
287 packDiff(int32_t diff) { in packDiff() argument
[all …]
/aosp_15_r20/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/builder/
H A DDiffBuilderTest.java61 public DiffResult<TypeTestClass> diff(final TypeTestClass obj) { in diff() method in DiffBuilderTest.TypeTestClass
102 final DiffResult<TypeTestClass> list = class1.diff(class2); in testBoolean()
104 final Diff<?> diff = list.getDiffs().get(0); in testBoolean() local
105 assertEquals(Boolean.class, diff.getType()); in testBoolean()
106 assertEquals(Boolean.TRUE, diff.getLeft()); in testBoolean()
107 assertEquals(Boolean.FALSE, diff.getRight()); in testBoolean()
115 final DiffResult<TypeTestClass> list = class1.diff(class2); in testBooleanArray()
117 final Diff<?> diff = list.getDiffs().get(0); in testBooleanArray() local
119 (Object[]) diff.getLeft()); in testBooleanArray()
121 (Object[]) diff.getRight()); in testBooleanArray()
[all …]
/aosp_15_r20/external/libavc/common/x86/
H A Dih264_deblk_chroma_ssse3.c110 __m128i diff, alpha_cbcr_16x8, beta_cbcr_16x8; in ih264_deblk_chroma_vert_bs4_ssse3() local
145 diff = _mm_subs_epi16(p0_uv_8x16, q0_uv_8x16); //Condn 1 in ih264_deblk_chroma_vert_bs4_ssse3()
146 diff = _mm_abs_epi16(diff); in ih264_deblk_chroma_vert_bs4_ssse3()
148 flag1 = _mm_cmpgt_epi16(alpha_cbcr_16x8, diff); in ih264_deblk_chroma_vert_bs4_ssse3()
150 diff = _mm_subs_epi16(q1_uv_8x16, q0_uv_8x16); //Condtn 2 in ih264_deblk_chroma_vert_bs4_ssse3()
151 diff = _mm_abs_epi16(diff); in ih264_deblk_chroma_vert_bs4_ssse3()
153 flag1 = _mm_and_si128(flag1, _mm_cmpgt_epi16(beta_cbcr_16x8, diff)); in ih264_deblk_chroma_vert_bs4_ssse3()
155 diff = _mm_subs_epi16(p1_uv_8x16, p0_uv_8x16); //Condtn 3 in ih264_deblk_chroma_vert_bs4_ssse3()
156 diff = _mm_abs_epi16(diff); in ih264_deblk_chroma_vert_bs4_ssse3()
157 flag1 = _mm_and_si128(flag1, _mm_cmpgt_epi16(beta_cbcr_16x8, diff)); in ih264_deblk_chroma_vert_bs4_ssse3()
[all …]
/aosp_15_r20/external/icu/icu4j/main/charset/src/main/java/com/ibm/icu/charset/
H A DCharsetBOCU1.java207 /* Faster versions of packDiff() for single-byte-encoded diff values. */
209 /** Is a diff value encodable in a single byte? */
210 private static boolean DIFF_IS_SINGLE(int diff){ in DIFF_IS_SINGLE() argument
211 return (BOCU1_REACH_NEG_1<=(diff) && (diff)<=BOCU1_REACH_POS_1); in DIFF_IS_SINGLE()
214 /** Encode a diff value in a single byte. */
215 private static int PACK_SINGLE_DIFF(int diff){ in PACK_SINGLE_DIFF() argument
216 return (BOCU1_MIDDLE+(diff)); in PACK_SINGLE_DIFF()
219 /** Is a diff value encodable in two bytes? */
220 private static boolean DIFF_IS_DOUBLE(int diff){ in DIFF_IS_DOUBLE() argument
221 return (BOCU1_REACH_NEG_2<=(diff) && (diff)<=BOCU1_REACH_POS_2); in DIFF_IS_DOUBLE()
[all …]
/aosp_15_r20/external/libhevc/encoder/
H A Dihevce_chroma_had_satd.c113 WORD16 diff[16], m[16], d[16]; in ihevce_chroma_HAD_4x4_8bit() local
121 diff[k + 0] = pu1_origin[2 * 0] - pu1_pred_buf[2 * 0]; in ihevce_chroma_HAD_4x4_8bit()
122 diff[k + 1] = pu1_origin[2 * 1] - pu1_pred_buf[2 * 1]; in ihevce_chroma_HAD_4x4_8bit()
123 diff[k + 2] = pu1_origin[2 * 2] - pu1_pred_buf[2 * 2]; in ihevce_chroma_HAD_4x4_8bit()
124 diff[k + 3] = pu1_origin[2 * 3] - pu1_pred_buf[2 * 3]; in ihevce_chroma_HAD_4x4_8bit()
131 m[0] = diff[0] + diff[12]; in ihevce_chroma_HAD_4x4_8bit()
132 m[1] = diff[1] + diff[13]; in ihevce_chroma_HAD_4x4_8bit()
133 m[2] = diff[2] + diff[14]; in ihevce_chroma_HAD_4x4_8bit()
134 m[3] = diff[3] + diff[15]; in ihevce_chroma_HAD_4x4_8bit()
135 m[4] = diff[4] + diff[8]; in ihevce_chroma_HAD_4x4_8bit()
[all …]
/aosp_15_r20/external/stg/
H A Dreporting.cc86 const auto [resolved, typedefs] = diff::ResolveTypedefs(graph, id); in GetResolvedDescription()
101 const diff::Comparison& comparison, std::ostream& os, in PrintComparison()
147 using Seen = std::unordered_map<diff::Comparison, bool, diff::HashComparison>;
153 void Report(const diff::Comparison&);
160 void Print(const diff::Comparison&, size_t, const std::string&);
163 void Plain::Print(const diff::Comparison& comparison, size_t indent, in Print()
173 const auto& diff = it->second; in Print() local
175 const bool holds_changes = diff.holds_changes; in Print()
185 } else if (!diff.details.empty()) { in Print()
191 for (const auto& detail : diff.details) { in Print()
[all …]
H A Dstgdiff_test.cc44 const diff::Ignore ignore;
67 diff::Ignore(),
76 diff::Ignore(diff::Ignore::SYMBOL_TYPE_PRESENCE),
85 diff::Ignore(),
94 diff::Ignore(diff::Ignore::TYPE_DECLARATION_STATUS),
103 diff::Ignore(),
112 diff::Ignore(diff::Ignore::PRIMITIVE_TYPE_ENCODING),
121 diff::Ignore(),
130 diff::Ignore(diff::Ignore::MEMBER_SIZE),
139 diff::Ignore(),
[all …]
/aosp_15_r20/external/llvm/test/tools/llvm-cov/
H A Dllvm-cov.test14 RUN: llvm-cov gcov test.c | diff -u test_no_options.output -
15 RUN: diff -aub test_no_options.cpp.gcov test.cpp.gcov
16 RUN: diff -aub test_no_options.h.gcov test.h.gcov
21 RUN: llvm-cov gcov -o objdir test.c | diff -u test_no_options.output -
22 RUN: diff -aub test_objdir.cpp.gcov test.cpp.gcov
23 RUN: diff -aub test_objdir.h.gcov test.h.gcov
26 RUN: llvm-cov gcov -o objdir/test.o test.c | diff -u test_no_options.output -
27 RUN: diff -aub test_objdir.cpp.gcov test.cpp.gcov
28 RUN: diff -aub test_objdir.h.gcov test.h.gcov
31 RUN: llvm-cov gcov -o objdir/test test.c | diff -u test_no_options.output -
[all …]
/aosp_15_r20/external/libvpx/vpx_dsp/mips/
H A Dsubtract_mmi.c16 void vpx_subtract_block_mmi(int rows, int cols, int16_t *diff, in vpx_subtract_block_mmi() argument
84 "gssdlc1 %[ftmp11], 0x07(%[diff]) \n\t" in vpx_subtract_block_mmi()
85 "gssdrc1 %[ftmp11], 0x00(%[diff]) \n\t" in vpx_subtract_block_mmi()
86 MMI_ADDU(%[diff], %[diff], %[diff_stride]) in vpx_subtract_block_mmi()
90 "gssdlc1 %[ftmp11], 0x07(%[diff]) \n\t" in vpx_subtract_block_mmi()
91 "gssdrc1 %[ftmp11], 0x00(%[diff]) \n\t" in vpx_subtract_block_mmi()
92 MMI_ADDU(%[diff], %[diff], %[diff_stride]) in vpx_subtract_block_mmi()
96 "gssdlc1 %[ftmp11], 0x07(%[diff]) \n\t" in vpx_subtract_block_mmi()
97 "gssdrc1 %[ftmp11], 0x00(%[diff]) \n\t" in vpx_subtract_block_mmi()
98 MMI_ADDU(%[diff], %[diff], %[diff_stride]) in vpx_subtract_block_mmi()
[all …]
H A Dsub_pixel_variance_msa.c33 #define VARIANCE_WxH(sse, diff, shift) \ argument
34 (sse) - (((uint32_t)(diff) * (diff)) >> (shift))
36 #define VARIANCE_LARGE_WxH(sse, diff, shift) \ argument
37 (sse) - (((int64_t)(diff) * (diff)) >> (shift))
44 int32_t *diff) { in avg_sse_diff_4width_msa() argument
69 *diff = HADD_SW_S32(vec); in avg_sse_diff_4width_msa()
79 int32_t *diff) { in avg_sse_diff_8width_msa() argument
103 *diff = HADD_SW_S32(vec); in avg_sse_diff_8width_msa()
113 int32_t height, int32_t *diff) { in avg_sse_diff_16width_msa() argument
158 *diff = HADD_SW_S32(vec); in avg_sse_diff_16width_msa()
[all …]
H A Dvariance_msa.c36 #define VARIANCE_WxH(sse, diff, shift) \ argument
37 (sse) - (((uint32_t)(diff) * (diff)) >> (shift))
39 #define VARIANCE_LARGE_WxH(sse, diff, shift) \ argument
40 (sse) - (((int64_t)(diff) * (diff)) >> (shift))
44 int32_t height, int32_t *diff) { in sse_diff_4width_msa() argument
65 *diff = HADD_SW_S32(vec); in sse_diff_4width_msa()
72 int32_t height, int32_t *diff) { in sse_diff_8width_msa() argument
92 *diff = HADD_SW_S32(vec); in sse_diff_8width_msa()
99 int32_t height, int32_t *diff) { in sse_diff_16width_msa() argument
132 *diff = HADD_SW_S32(vec); in sse_diff_16width_msa()
[all …]
H A Dsubtract_msa.c60 int16_t *diff, int32_t diff_stride) { in sub_blk_16x16_msa() argument
77 ST_SH2(diff0, diff1, diff, 8); in sub_blk_16x16_msa()
78 diff += diff_stride; in sub_blk_16x16_msa()
82 ST_SH2(diff0, diff1, diff, 8); in sub_blk_16x16_msa()
83 diff += diff_stride; in sub_blk_16x16_msa()
87 ST_SH2(diff0, diff1, diff, 8); in sub_blk_16x16_msa()
88 diff += diff_stride; in sub_blk_16x16_msa()
92 ST_SH2(diff0, diff1, diff, 8); in sub_blk_16x16_msa()
93 diff += diff_stride; in sub_blk_16x16_msa()
97 ST_SH2(diff0, diff1, diff, 8); in sub_blk_16x16_msa()
[all …]
/aosp_15_r20/external/libvpx/vpx_dsp/loongarch/
H A Dsubtract_lsx.c99 int16_t *diff, int32_t diff_stride) { in sub_blk_16x16_lsx() argument
113 int16_t *diff_tmp = diff + 8; in sub_blk_16x16_lsx()
143 __lsx_vst(src0, diff, 0); in sub_blk_16x16_lsx()
144 __lsx_vstx(src2, diff, dst_stride); in sub_blk_16x16_lsx()
145 __lsx_vstx(src4, diff, dst_stride2); in sub_blk_16x16_lsx()
146 __lsx_vstx(src6, diff, dst_stride3); in sub_blk_16x16_lsx()
151 diff += dst_stride2; in sub_blk_16x16_lsx()
153 __lsx_vst(pred0, diff, 0); in sub_blk_16x16_lsx()
154 __lsx_vstx(pred2, diff, dst_stride); in sub_blk_16x16_lsx()
155 __lsx_vstx(pred4, diff, dst_stride2); in sub_blk_16x16_lsx()
[all …]
/aosp_15_r20/external/deqp-deps/glslang/Test/
Druntests39 diff -b $BASEDIR/$b.out "$TARGETDIR/$b.out" || HASERROR=1
50 diff -b $BASEDIR/badMacroArgs.frag.out "$TARGETDIR/badMacroArgs.frag.out" || HASERROR=1
53 diff -b $BASEDIR/gl_samplemask_array_size_32.frag.out "$TARGETDIR/gl_samplemask_array_size_32.frag.…
55 diff -b $BASEDIR/gl_samplemask_array_size_64.frag.out "$TARGETDIR/gl_samplemask_array_size_64.frag.…
61 diff -b $BASEDIR/reflection.vert.out "$TARGETDIR/reflection.vert.out" || HASERROR=1
63 diff -b $BASEDIR/reflection.options.vert.out "$TARGETDIR/reflection.options.vert.out" || HASERROR=1
65 diff -b $BASEDIR/reflection.frag.out "$TARGETDIR/reflection.frag.out" || HASERROR=1
67 diff -b $BASEDIR/reflection.options.frag.out "$TARGETDIR/reflection.options.frag.out" || HASERROR=1
69 diff -b $BASEDIR/reflection.options.geom.out "$TARGETDIR/reflection.options.geom.out" || HASERROR=1
71 diff -b $BASEDIR/reflection.linked.out "$TARGETDIR/reflection.linked.out" || HASERROR=1
[all …]
/aosp_15_r20/external/angle/third_party/glslang/src/Test/
H A Druntests39 diff -b $BASEDIR/$b.out "$TARGETDIR/$b.out" || HASERROR=1
50 diff -b $BASEDIR/badMacroArgs.frag.out "$TARGETDIR/badMacroArgs.frag.out" || HASERROR=1
53 diff -b $BASEDIR/gl_samplemask_array_size_32.frag.out "$TARGETDIR/gl_samplemask_array_size_32.frag.…
55 diff -b $BASEDIR/gl_samplemask_array_size_64.frag.out "$TARGETDIR/gl_samplemask_array_size_64.frag.…
61 diff -b $BASEDIR/reflection.vert.out "$TARGETDIR/reflection.vert.out" || HASERROR=1
63 diff -b $BASEDIR/reflection.options.vert.out "$TARGETDIR/reflection.options.vert.out" || HASERROR=1
65 diff -b $BASEDIR/reflection.frag.out "$TARGETDIR/reflection.frag.out" || HASERROR=1
67 diff -b $BASEDIR/reflection.options.frag.out "$TARGETDIR/reflection.options.frag.out" || HASERROR=1
69 diff -b $BASEDIR/reflection.options.geom.out "$TARGETDIR/reflection.options.geom.out" || HASERROR=1
71 diff -b $BASEDIR/reflection.linked.out "$TARGETDIR/reflection.linked.out" || HASERROR=1
[all …]
/aosp_15_r20/platform_testing/libraries/screenshot/src/androidTest/java/platform/test/screenshot/matchers/
H A DHumanEyeMatcherTest.kt80 assertHasDiff(result, intArrayOf(diff)) in <lambda>()
116 diff, in <lambda>()
117 diff, in <lambda>()
119 diff, in <lambda>()
120 diff, in <lambda>()
148 diff, in <lambda>()
199 diff, in <lambda>()
200 diff, in <lambda>()
252 diff, in <lambda>()
253 diff, in <lambda>()
[all …]
/aosp_15_r20/packages/apps/Contacts/tests/src/com/android/contacts/model/
DRawContactDeltaTests.java40 * correctly build expected "diff" operations.
167 final ArrayList<CPOWrapper> diff = Lists.newArrayList(); in testEntityDiffNone() local
168 source.buildDiffWrapper(diff); in testEntityDiffNone()
170 assertTrue("Created changes when none needed", (diff.size() == 0)); in testEntityDiffNone()
185 final ArrayList<CPOWrapper> diff = Lists.newArrayList(); in testEntityDiffNoneInsert() local
186 source.buildAssertWrapper(diff); in testEntityDiffNoneInsert()
187 source.buildDiffWrapper(diff); in testEntityDiffNoneInsert()
188 assertEquals("Unexpected operations", 4, diff.size()); in testEntityDiffNoneInsert()
190 final CPOWrapper cpoWrapper = diff.get(0); in testEntityDiffNoneInsert()
194 final CPOWrapper cpoWrapper = diff.get(1); in testEntityDiffNoneInsert()
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/go/testdata/script/
Dmod_tidy_diff.txt1 # Test go mod tidy -diff
2 # If set, -diff should not update go.mod or go.sum and instead return a non-zero exit code if updat…
4 # Missing go.mod and go.sum should fail and not display diff.
7 ! go mod tidy -diff
10 ! stdout 'diff current/go.mod tidy/go.mod'
11 ! stdout 'diff current/go.sum tidy/go.sum'
14 # Missing go.mod and existing go.sum should fail and not display diff.
18 ! go mod tidy -diff
20 ! stdout 'diff current/go.mod tidy/go.mod'
21 ! stdout 'diff current/go.sum tidy/go.sum'
[all …]
/aosp_15_r20/external/skia/tools/skdiff/
H A Dskdiff_html.cpp60 static void print_pixel_count(SkFILEWStream* stream, const DiffRecord& diff) { in print_pixel_count() argument
62 stream->writeDecAsText(static_cast<int>(diff.fFractionDifference * in print_pixel_count()
63 diff.fBase.fBitmap.width() * in print_pixel_count()
64 diff.fBase.fBitmap.height())); in print_pixel_count()
67 stream->writeDecAsText(diff.fWeightedFraction * in print_pixel_count()
68 diff.fBaseWidth * in print_pixel_count()
69 diff.fBaseHeight); in print_pixel_count()
74 static void print_checkbox_cell(SkFILEWStream* stream, const DiffRecord& diff) { in print_checkbox_cell() argument
76 stream->writeText(diff.fBase.fFilename.c_str()); in print_checkbox_cell()
80 static void print_label_cell(SkFILEWStream* stream, const DiffRecord& diff) { in print_label_cell() argument
[all …]
/aosp_15_r20/frameworks/base/core/java/android/service/notification/
H A DZenModeDiff.java33 * ZenModeDiff is a utility class meant to encapsulate the diff between ZenModeConfigs and their
37 * are not identical (as per their {@code equals()} implementation) can still produce an empty diff
46 * diff in fields rather than add/remove).
61 * Diff class representing an individual field diff.
107 * Get the string representation of this field diff, in the form of "from->to".
118 * Returns whether this represents an actual diff.
130 * Base diff class that contains info about whether something was added, and a set of named
135 // Whether the diff was added or removed
146 * Return whether this diff represents any changes.
151 * Return a string representation of the diff.
[all …]

12345678910>>...390