Searched defs:diff (Results 276 - 300 of 623) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderListItem.cpp56 void RenderListItem::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) argument
58 RenderBlockFlow::styleDidChange(diff, oldStyle);
H A DRenderReplaced.cpp68 void RenderReplaced::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) argument
70 RenderBox::styleDidChange(diff, oldStyle);
H A DRenderTextControlSingleLine.cpp219 void RenderTextControlSingleLine::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) argument
222 RenderTextControl::styleDidChange(diff, oldStyle);
237 if (innerEditorRenderer && diff.needsFullLayout())
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGRoot.cpp273 void RenderSVGRoot::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) argument
275 if (diff.needsFullLayout())
277 if (diff.needsPaintInvalidation()) {
282 RenderReplaced::styleDidChange(diff, oldStyle);
283 SVGResourcesCache::clientStyleChanged(this, diff, style());
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DPartitionAllocTest.cpp202 ptrdiff_t diff = ptr2 - ptr1; local
203 EXPECT_EQ(static_cast<ptrdiff_t>(kRealAllocSize), diff); local
209 diff = ptr2 - ptr1;
210 EXPECT_EQ(static_cast<ptrdiff_t>(kRealAllocSize), diff); local
214 diff = ptr2 - ptr1;
215 EXPECT_EQ(static_cast<ptrdiff_t>(kRealAllocSize), diff); local
219 diff = ptr3 - ptr1;
220 EXPECT_EQ(static_cast<ptrdiff_t>(kRealAllocSize * 2), diff);
/external/chromium_org/third_party/icu/source/common/
H A Ducnvbocu.cpp212 /* Faster versions of packDiff() for single-byte-encoded diff values. */
214 /** Is a diff value encodable in a single byte? */
215 #define DIFF_IS_SINGLE(diff) (BOCU1_REACH_NEG_1<=(diff) && (diff)<=BOCU1_REACH_POS_1)
217 /** Encode a diff value in a single byte. */
218 #define PACK_SINGLE_DIFF(diff) (BOCU1_MIDDLE+(diff))
220 /** Is a diff value encodable in two bytes? */
221 #define DIFF_IS_DOUBLE(diff) (BOCU1_REACH_NEG_
285 packDiff(int32_t diff) argument
398 int32_t prev, c, diff; local
651 int32_t prev, c, diff; local
867 int32_t diff, count; local
947 int32_t prev, count, diff, c; local
1169 int32_t prev, count, diff, c; local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_block.h27 } diff; typedef in typeref:struct:__anon13152
H A Dvp9_denoiser.c87 int diff, adj, absdiff, delta; local
107 diff = mc_avg[c] - sig[c];
108 absdiff = abs(diff);
112 total_adj += diff;
125 if (diff > 0) {
157 diff = mc_avg[c] - sig[c];
158 adj = abs(diff);
162 if (diff > 0) {
H A Dvp9_encodemv.c205 const MV diff = {mv->row - ref->row, local
207 const MV_JOINT_TYPE j = vp9_get_mv_joint(&diff);
212 encode_mv_component(w, diff.row, &mvctx->comps[0], usehp);
215 encode_mv_component(w, diff.col, &mvctx->comps[1], usehp);
238 const MV diff = {mvs[i].as_mv.row - ref->row, local
240 vp9_inc_mv(&diff, counts);
/external/chromium_org/third_party/libwebp/dsp/
H A Dlossless_neon.c217 const int32x2_t diff = vpaddl_s16(vsub_s16(sum_bc, sum_ac)); local
218 const int32_t pa_minus_pb = vget_lane_s32(diff, 0);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_quad_blend.c313 float diff[4], temp[4]; local
314 VEC4_SUB(diff, one, dest[3]);
315 VEC4_MIN(temp, alpha, diff);
568 float diff[4], temp[4]; local
569 VEC4_SUB(diff, one, blend_dest[3]);
570 VEC4_MIN(temp, alpha, diff);
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/neon/
H A DarmSP_FFTInv_CCSToR_S16_preTwiddleRadix2_unsafe_s.S54 #define diff r9 define
H A DomxSP_FFTFwd_RToCCS_F32_Sfs_s.S78 #define diff r9 define
H A DomxSP_FFTFwd_RToCCS_S32_Sfs_s.S92 #define diff r9 define
211 SUBS diff,scale,order
212 M_STR diff,diffOnStack
251 SUBS diff, scale, order @// scale > order
266 CMP diff,#0
267 M_STR diff, diffOnStack
320 SUB diff,order,scale
321 TST diff,#0x01
322 ADDEQ count, scale,diff,lsr #1 @// count = scale + (order - scale)/2
331 M_STR diff, diffOnStac
[all...]
H A DomxSP_FFTInv_CCSToR_F32_Sfs_s.S78 #define diff r9 define
H A DomxSP_FFTInv_CCSToR_S16_Sfs_s.S69 #define diff r9 define
184 SUB diff,scale,order
185 M_STR diff, diffOnStack
204 SUB diff, scale, order @ scale > order
212 CMP diff,#0
213 M_STR diff, diffOnStack
262 M_LDR diff, diffOnStack
263 CMP diff,#0
266 RSB diff,diff,#
[all...]
H A DomxSP_FFTInv_CCSToR_S32_Sfs_s.S95 #define diff r9 define
226 SUB diff,scale,order
227 M_STR diff, diffOnStack
243 SUBS diff, scale, order @// scale > order
258 CMP diff,#0
259 M_STR diff, diffOnStack
312 SUB diff,order,scale
313 TST diff,#0x01
314 ADDEQ count,scale,diff,LSR #1 @// count = scale + (order - scale)/2
323 M_STR diff, diffOnStac
[all...]
/external/chromium_org/third_party/skia/src/utils/
H A DSkCamera.cpp257 SkPoint3D diff; local
260 diff.fX = quilt.fOrigin.fX - fLocation.fX;
261 diff.fY = quilt.fOrigin.fY - fLocation.fY;
262 diff.fZ = quilt.fOrigin.fZ - fLocation.fZ;
264 dot = SkUnit3D::Dot(*SkTCast<const SkUnit3D*>(&diff),
277 patchPtr = (const SkScalar*)(const void*)&diff;
/external/chromium_org/third_party/skia/tools/
H A Drender_pictures_main.cpp34 DEFINE_int32(maxComponentDiff, 256, "Maximum diff on a component, 0 - 256. Components that differ "
342 int diff = MaxByteDiff(*referenceBitmap->getAddr32(x, y), local
344 SkASSERT(diff >= 0 && diff <= 255);
345 diffs[diff]++;
347 if (diff > FLAGS_maxComponentDiff) {
349 "component diff of %i: 0x%x, actual 0x%x\n",
363 SkDebugf("Number of pixels with max diff of %i is %i\n", i, diffs[i]);
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_timer.c1428 struct timeval diff; local
1430 SCTP_GETTIME_TIMEVAL(&diff);
1431 timevalsub(&diff, &net->last_sent_time);
1433 struct timeval diff, now;
1436 timersub(&now, &net->last_sent_time, &diff);
1438 ms_gone_by = (uint32_t)(diff.tv_sec * 1000) +
1439 (uint32_t)(diff.tv_usec / 1000);
/external/chromium_org/third_party/webrtc/modules/audio_device/test/
H A Daudio_device_test_api.cc308 int diff = abs(static_cast<int>(expected - actual)); local
309 EXPECT_LE(diff, 5);
/external/chromium_org/third_party/webrtc/modules/audio_processing/aecm/
H A Decho_control_mobile.c658 short diff; local
672 diff = aecm->filtDelay - aecm->knownDelay;
673 if (diff > 224)
682 } else if (diff < 96 && aecm->knownDelay > 0)
695 aecm->lastDelayDiff = diff;
/external/chromium_org/ui/gfx/image/
H A Dimage_skia.cc165 float diff = std::abs(it->scale() - scale); local
166 if (diff < smallest_diff && !it->is_null()) {
168 smallest_diff = diff;
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_coverage_libcdep.cc299 uptr diff = *vb - (i ? mb : 0) + off; local
300 CHECK_LE(diff, 0xffffffffU);
301 offsets.push_back(static_cast<u32>(diff));
/external/deqp/framework/common/
H A DtcuImageCompare.cpp110 const UVec4 diff = abs(refPix - cmpPix).cast<deUint32>(); local
111 const bool isOk = boolAll(lessThanEqual(diff, threshold));
144 const UVec4 diff = abs(refPix - deviatedCmpPix).cast<deUint32>(); local
145 const bool isOk = boolAll(lessThanEqual(diff, threshold));
157 const UVec4 diff = abs(cmpPix - deviatedRefPix).cast<deUint32>(); local
158 const bool isOk = boolAll(lessThanEqual(diff, threshold));
297 IVec4 diff = abs(a - b); local
298 int sum = diff.x() + diff.y() + diff
438 UVec4 diff = abs(refBits.cast<int>() - cmpBits.cast<int>()).cast<deUint32>(); local
525 Vec4 diff = abs(refPix - cmpPix); local
609 const Vec4 diff = abs(reference - cmpPix); local
694 UVec4 diff = abs(refPix - cmpPix).cast<deUint32>(); local
[all...]

Completed in 408 milliseconds

<<11121314151617181920>>