Home
last modified time | relevance | path

Searched refs:dst_line (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/core/profiler/utils/
Dxplane_utils.cc246 XLineBuilder dst_line = dst.GetOrCreateLine(line.Id()); in MergePlanes() local
248 if (dst_line.NumEvents() == 0) { in MergePlanes()
251 dst_line.SetTimestampNs(line.TimestampNs()); in MergePlanes()
252 dst_line.SetName(line.Name()); in MergePlanes()
253 dst_line.SetDisplayNameIfEmpty(line.DisplayName()); in MergePlanes()
255 if (line.TimestampNs() <= dst_line.TimestampNs()) { in MergePlanes()
256 dst_line.SetTimestampNsAndAdjustEventOffsets(line.TimestampNs()); in MergePlanes()
259 NanosToPicos(line.TimestampNs() - dst_line.TimestampNs()); in MergePlanes()
261 dst_line.SetNameIfEmpty(line.Name()); in MergePlanes()
279 XEventBuilder dst_event = dst_line.AddEvent(*dst_event_metadata); in MergePlanes()
/external/libgav1/libgav1/src/post_filter/
Dpost_filter.cc474 uint8_t* dst_line = dst[plane] + rows[plane] * stride; in SetupLoopRestorationBorder() local
475 const uint8_t* const src_line = dst_line - stride; in SetupLoopRestorationBorder()
479 memcpy(dst_line, src_line, upscaled_width); in SetupLoopRestorationBorder()
480 dst_line += stride; in SetupLoopRestorationBorder()
495 uint8_t* dst_line = dst[plane]; in SetupLoopRestorationBorder() local
501 ExtendLine<uint16_t>(dst_line, plane_width, in SetupLoopRestorationBorder()
507 ExtendLine<uint8_t>(dst_line, plane_width, in SetupLoopRestorationBorder()
511 dst_line += loop_restoration_border_.stride(plane); in SetupLoopRestorationBorder()
/external/freetype/src/smooth/
Dftsmooth.c116 unsigned char* dst_line = target->origin - y * target->pitch; in ft_smooth_lcd_spans() local
122 for ( dst = dst_line + spans->x * 3, w = spans->len; w--; dst += 3 ) in ft_smooth_lcd_spans()