HomeSort by relevance Sort by last modified time
    Searched full:dst_row (Results 26 - 31 of 31) sorted by null

12

  /external/mesa3d/src/gallium/auxiliary/util/
u_format_pack.py 592 print 'util_format_%s_unpack_%s(%s *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height)' % (name, dst_suffix, dst_native_type)
598 print ' %s *dst = dst_row;' % (dst_native_type)
608 print ' dst_row += dst_stride/sizeof(*dst_row);'
621 print 'util_format_%s_pack_%s(uint8_t *dst_row, unsigned dst_stride, const %s *src_row, unsigned src_stride, unsigned width, unsigned height)' % (name, src_suffix, src_native_type)
628 print ' uint8_t *dst = dst_row;'
636 print ' dst_row += dst_stride;'
  /external/skia/src/ports/
SkFontHost_FreeType_common.cpp 215 uint8_t* dst_row = dst; local
221 *dst_row++ = byte & 0x80 ? 0xff : 0x00;
232 SkPMColor* dst_row = reinterpret_cast<SkPMColor*>(dst); local
238 *dst_row++ = SkPackARGB32(a, r, g, b);
240 *(dst_row-1) = SkFourByteInterp256(*(dst_row-1), SK_ColorWHITE, 0x40);
  /external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
integral.hpp 70 D* dst_row = dst.row(blockIdx.x); local
87 dst_row[curElemOffs] = carryElem + curScanElem;
113 D* dst_row = dst.row(blockIdx.x); local
130 dst_row[curElemOffs] = carryElem + curScanElem;
  /external/opencv3/modules/cudaarithm/test/
test_element_operations.cpp 783 const cv::Vec4b* dst_row = h_dst.ptr<cv::Vec4b>(y); local
789 cv::Vec4b actual = dst_row[x];
820 const cv::Vec4s* dst_row = h_dst.ptr<cv::Vec4s>(y); local
826 cv::Vec4s actual = dst_row[x];
1150 const cv::Vec4b* dst_row = h_dst.ptr<cv::Vec4b>(y); local
1187 const cv::Vec4s* dst_row = h_dst.ptr<cv::Vec4s>(y); local
    [all...]
  /external/opencv3/modules/imgproc/test/
test_filter.cpp     [all...]
  /external/opencv3/modules/video/
opencl_kernels_video.cpp 194 "__global uchar* dst, int dst_step, int dst_offset, int dst_row, int dst_col,\n"
199 "if(x < dst_col && y < dst_row)\n"
208 "int idx_step = dst_row * dst_col;\n"
    [all...]

Completed in 115 milliseconds

12