MCPcopy Create free account
hub / github.com/MegEngine/MegEngine / rep

Function rep

dnn/test/naive/cvt_color.cpp:83–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

81 int src_stride_uv, uint8_t* dst_argb, int dst_stride_argb, int width,
82 int height) {
83 rep(y, height) {
84 naive_row(src_y, src_uv, dst_argb, width);
85 dst_argb += dst_stride_argb;
86 src_y += src_stride_y;
87 if (y & 1) {
88 src_uv += src_stride_uv;
89 }
90 }
91}
92
93//! check real yuv

Callers 1

run_checkFunction · 0.70

Calls 1

naive_rowFunction · 0.85

Tested by

no test coverage detected