HomeSort by relevance Sort by last modified time
    Searched refs:_dst (Results 1 - 25 of 28) sorted by null

1 2

  /system/extras/tests/memtest/
bandwidth.h 99 CopyBandwidthBenchmark() : BandwidthBenchmark(), _src(NULL), _dst(NULL) { }
105 if (_dst) {
106 free(_dst);
120 _dst = reinterpret_cast<char*>(memalign(64, _size));
121 if (!_dst) {
133 if (_dst) {
134 free(_dst);
135 _dst = NULL;
141 memset(_dst, 0, _size);
143 if (memcmp(_src, _dst, _size) != 0)
162 char *_dst; member in class:CopyBandwidthBenchmark
    [all...]
  /external/pixman/pixman/
pixman-accessor.h 11 uint8_t *_dst = (uint8_t*)(dst); \
13 WRITE((img), _dst +_i, (val)); \
  /external/libvpx/libvpx/
y4minput.c 153 static void y4m_42xmpeg2_42xjpeg_helper(unsigned char *_dst,
161 _dst[x] = (unsigned char)OC_CLAMPI(0, (4 * _src[0] - 17 * _src[OC_MAXI(x - 1, 0)] +
166 _dst[x] = (unsigned char)OC_CLAMPI(0, (4 * _src[x - 2] - 17 * _src[x - 1] +
170 _dst[x] = (unsigned char)OC_CLAMPI(0, (4 * _src[x - 2] - 17 * _src[x - 1] +
174 _dst += _c_w;
180 static void y4m_convert_42xmpeg2_42xjpeg(y4m_input *_y4m, unsigned char *_dst,
187 _dst += _y4m->pic_w * _y4m->pic_h;
193 y4m_42xmpeg2_42xjpeg_helper(_dst, _aux, c_w, c_h);
194 _dst += c_sz;
242 static void y4m_convert_42xpaldv_42xjpeg(y4m_input *_y4m, unsigned char *_dst,
    [all...]
y4minput.h 26 unsigned char *_dst, unsigned char *_src);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3d1x/
sm4_to_tgsi.cpp 127 struct ureg_dst _dst(unsigned i = 0) function in struct:sm4_to_tgsi_converter
236 #define OP1_(d, g) case SM4_OPCODE_##d: ureg_##g(ureg, _dst(), _src(1)); break
237 #define OP2_(d, g) case SM4_OPCODE_##d: ureg_##g(ureg, _dst(), _src(1), _src(2)); break
238 #define OP3_(d, g) case SM4_OPCODE_##d: ureg_##g(ureg, _dst(), _src(1), _src(2), _src(3)); break
318 ureg_CMP(ureg, _dst(), ureg_negate(ureg_abs(_src(1))), _src(2), _src(3));
322 struct ureg_dst d = _dst();
330 struct ureg_dst s = _dst(0);
331 struct ureg_dst c = _dst(1);
449 ureg_SVIEWINFO(ureg, _dst(), _src(1), resources[_idx(SM4_FILE_RESOURCE, 2)]);
453 ureg_LOAD(ureg, _dst(), _src(1), resources[_idx(SM4_FILE_RESOURCE, 2)])
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d1x/
sm4_to_tgsi.cpp 127 struct ureg_dst _dst(unsigned i = 0) function in struct:sm4_to_tgsi_converter
236 #define OP1_(d, g) case SM4_OPCODE_##d: ureg_##g(ureg, _dst(), _src(1)); break
237 #define OP2_(d, g) case SM4_OPCODE_##d: ureg_##g(ureg, _dst(), _src(1), _src(2)); break
238 #define OP3_(d, g) case SM4_OPCODE_##d: ureg_##g(ureg, _dst(), _src(1), _src(2), _src(3)); break
318 ureg_CMP(ureg, _dst(), ureg_negate(ureg_abs(_src(1))), _src(2), _src(3));
322 struct ureg_dst d = _dst();
330 struct ureg_dst s = _dst(0);
331 struct ureg_dst c = _dst(1);
449 ureg_SVIEWINFO(ureg, _dst(), _src(1), resources[_idx(SM4_FILE_RESOURCE, 2)]);
453 ureg_LOAD(ureg, _dst(), _src(1), resources[_idx(SM4_FILE_RESOURCE, 2)])
    [all...]
  /external/opencv/cv/src/
cvundistort.cpp 109 cvUndistort2( const CvArr* _src, CvArr* _dst, const CvMat* A, const CvMat* dist_coeffs )
120 CvMat dststub, *dst = (CvMat*)_dst;
371 cvUndistortPoints( const CvMat* _src, CvMat* _dst, const CvMat* _cameraMatrix,
390 CV_ASSERT( CV_IS_MAT(_src) && CV_IS_MAT(_dst) &&
392 (_dst->rows == 1 || _dst->cols == 1) &&
393 CV_ARE_SIZES_EQ(_src, _dst) &&
395 (CV_MAT_TYPE(_dst->type) == CV_32FC2 || CV_MAT_TYPE(_dst->type) == CV_64FC2));
426 dstf = (CvPoint2D32f*)_dst->data.ptr
    [all...]
cvcanny.cpp 343 uchar* _dst = dst->data.ptr + dst->step*i; local
346 _dst[j] = (uchar)-(_map[j] >> 1);
cvfundam.cpp 1201 CvMat _src, _dst, _ones; local
    [all...]
cvhistogram.cpp 651 cvCopyHist( const CvHistogram* src, CvHistogram** _dst )
665 if( !_dst )
668 dst = *_dst;
694 cvReleaseHist( _dst );
697 *_dst = dst;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/galahad/
glhd_context.c 680 struct pipe_resource *_dst,
690 struct galahad_resource *glhd_resource_dst = galahad_resource(_dst);
696 if (_dst->format != _src->format) {
700 util_format_description(_dst->format);
707 if ((_src->target == PIPE_BUFFER && _dst->target != PIPE_BUFFER) ||
708 (_src->target != PIPE_BUFFER && _dst->target == PIPE_BUFFER)) {
710 _src->target, _dst->target);
743 struct pipe_surface *_dst,
749 struct galahad_surface *glhd_surface_dst = galahad_surface(_dst);
763 struct pipe_surface *_dst,
    [all...]
  /external/mesa3d/src/gallium/drivers/galahad/
glhd_context.c 680 struct pipe_resource *_dst,
690 struct galahad_resource *glhd_resource_dst = galahad_resource(_dst);
696 if (_dst->format != _src->format) {
700 util_format_description(_dst->format);
707 if ((_src->target == PIPE_BUFFER && _dst->target != PIPE_BUFFER) ||
708 (_src->target != PIPE_BUFFER && _dst->target == PIPE_BUFFER)) {
710 _src->target, _dst->target);
743 struct pipe_surface *_dst,
749 struct galahad_surface *glhd_surface_dst = galahad_surface(_dst);
763 struct pipe_surface *_dst,
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/identity/
id_context.c 608 struct pipe_resource *_dst,
618 struct identity_resource *id_resource_dst = identity_resource(_dst);
654 struct pipe_surface *_dst,
660 struct identity_surface *id_surface_dst = identity_surface(_dst);
674 struct pipe_surface *_dst,
682 struct identity_surface *id_surface_dst = identity_surface(_dst);
  /external/mesa3d/src/gallium/drivers/identity/
id_context.c 608 struct pipe_resource *_dst,
618 struct identity_resource *id_resource_dst = identity_resource(_dst);
654 struct pipe_surface *_dst,
660 struct identity_surface *id_surface_dst = identity_surface(_dst);
674 struct pipe_surface *_dst,
682 struct identity_surface *id_surface_dst = identity_surface(_dst);
  /external/opencv/cxcore/src/
cxdxt.cpp     [all...]
cxutils.cpp 1051 cvSort( const CvArr* _src, CvArr* _dst, CvArr* _idx, int flags )
1061 CvMat dstub, *dst = _dst ? cvGetMat(_dst, &dstub) : 0;
    [all...]
  /external/opencv/ml/src/
ml_inner_functions.cpp 1374 uchar* _dst = dst + dst_step*(idx ? idx[i] : i); local
1385 uchar* _dst = dst + dst_step*(idx ? idx[i] : i); local
1397 uchar* _dst = dst + dst_step*(idx ? idx[i] : i); local
    [all...]
mlann_mlp.cpp 341 void CvANN_MLP::scale_input( const CvMat* _src, CvMat* _dst ) const
344 double* dst = _dst->data.db;
369 void CvANN_MLP::scale_output( const CvMat* _src, CvMat* _dst ) const
374 int step = _dst->step;
376 if( CV_MAT_TYPE( _dst->type ) == CV_32F )
378 float* dst = _dst->data.fl;
387 double* dst = _dst->data.db;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/rbug/
rbug_context.c 844 struct pipe_resource *_dst,
854 struct rbug_resource *rb_resource_dst = rbug_resource(_dst);
894 struct pipe_surface *_dst,
900 struct rbug_surface *rb_surface_dst = rbug_surface(_dst);
917 struct pipe_surface *_dst,
925 struct rbug_surface *rb_surface_dst = rbug_surface(_dst);
    [all...]
  /external/mesa3d/src/gallium/drivers/rbug/
rbug_context.c 844 struct pipe_resource *_dst,
854 struct rbug_resource *rb_resource_dst = rbug_resource(_dst);
894 struct pipe_surface *_dst,
900 struct rbug_surface *rb_surface_dst = rbug_surface(_dst);
917 struct pipe_surface *_dst,
925 struct rbug_surface *rb_surface_dst = rbug_surface(_dst);
    [all...]
  /external/valgrind/main/none/tests/amd64/
sse4-64.c 236 #define DO_imm_r_r(_opname, _imm, _src, _dst) \
244 : /*out*/ : /*in*/ "r"(&(_src)), "r"(&(_dst)), "r"(&(_tmp)) \
249 memcpy(&rra.arg2, &(_dst), sizeof(V128)); \
254 #define DO_imm_m_r(_opname, _imm, _src, _dst) \
263 : /*out*/ : /*in*/ "r"(_srcM), "r"(&(_dst)), "r"(&(_tmp)) \
268 memcpy(&rra.arg2, &(_dst), sizeof(V128)); \
274 #define DO_imm_mandr_r(_opname, _imm, _src, _dst) \
275 DO_imm_r_r( _opname, _imm, _src, _dst ) \
276 DO_imm_m_r( _opname, _imm, _src, _dst )
282 #define DO_r_r(_opname, _src, _dst) \
    [all...]
  /external/valgrind/main/VEX/priv/
guest_x86_helpers.c     [all...]
guest_amd64_helpers.c     [all...]
  /external/opencv/cv/include/
cv.hpp 94 _dst is the output image/matrix.
105 virtual int process( const CvMat* _src, CvMat* _dst,
  /external/opencv/ml/include/
ml.h     [all...]

Completed in 609 milliseconds

1 2