Home
last modified time | relevance | path

Searched refs:dst_idx (Results 1 – 8 of 8) sorted by relevance

/external/opencv3/modules/imgproc/src/opencl/
Dmatch_template.cl174 int dst_idx = mad24(y, dst_step, mad24(x0, (int)sizeof(float), dst_offset));
175 *(__global float4 *)(dst + dst_idx) = convert_float4(sum);
204 int dst_idx = mad24(y, dst_step, mad24(x0, (int)sizeof(float), dst_offset));
205 *(__global float *)(dst + dst_idx) = convertToDT(sum[cx]);
235 int dst_idx = mad24(y, dst_step, mad24(x, (int)sizeof(float), dst_offset));
236 *(__global float *)(dst + dst_idx) = convertToDT(sum);
259 int dst_idx = mad24(y, dst_step, mad24(x, (int)sizeof(float), dst_offset));
260 __global float * dstult = (__global float *)(dst + dst_idx);
291 int dst_idx = mad24(y, dst_step, mad24(x, (int)sizeof(float), dst_offset));
292 *(__global float *)(dst + dst_idx) = convertToDT(sum);
[all …]
/external/opencv3/modules/cudastereo/src/cuda/
Dstereobp.cu320 …void level_up_messages_gpu(int dst_idx, int dst_cols, int dst_rows, int src_rows, PtrStepSzb* mus,… in level_up_messages_gpu() argument
328 int src_idx = (dst_idx + 1) & 1; in level_up_messages_gpu()
330 …0, stream>>>(dst_cols, dst_rows, src_rows, (PtrStepSz<T>)mus[src_idx], (PtrStepSz<T>)mus[dst_idx]); in level_up_messages_gpu()
333 …0, stream>>>(dst_cols, dst_rows, src_rows, (PtrStepSz<T>)mds[src_idx], (PtrStepSz<T>)mds[dst_idx]); in level_up_messages_gpu()
336 …0, stream>>>(dst_cols, dst_rows, src_rows, (PtrStepSz<T>)mls[src_idx], (PtrStepSz<T>)mls[dst_idx]); in level_up_messages_gpu()
339 …0, stream>>>(dst_cols, dst_rows, src_rows, (PtrStepSz<T>)mrs[src_idx], (PtrStepSz<T>)mrs[dst_idx]); in level_up_messages_gpu()
346 …template void level_up_messages_gpu<short>(int dst_idx, int dst_cols, int dst_rows, int src_rows, …
347 …template void level_up_messages_gpu<float>(int dst_idx, int dst_cols, int dst_rows, int src_rows, …
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_compiler_util.h55 unsigned int dst_idx,
Dradeon_compiler_util.c317 unsigned int dst_idx, in rc_src_reads_dst_mask() argument
320 if (src_file != dst_file || src_idx != dst_idx) { in rc_src_reads_dst_mask()
/external/opencv3/modules/cudastereo/src/
Dstereobp.cpp66 …void level_up_messages_gpu(int dst_idx, int dst_cols, int dst_rows, int src_rows, PtrStepSzb* mus,…
292 …typedef void (*level_up_messages_t)(int dst_idx, int dst_cols, int dst_rows, int src_rows, PtrStep… in calcBP()
/external/vulkan-validation-layers/loader/
Dloader.c1696 uint32_t src_idx, dst_idx, cnt = *layer_count; in loader_expand_layer_names() local
1708 for (dst_idx = 0; dst_idx < cnt; dst_idx++) { in loader_expand_layer_names()
1709 if (pp_layer_names[dst_idx] == NULL) { in loader_expand_layer_names()
1710 src_idx = dst_idx + 1; in loader_expand_layer_names()
1714 pp_layer_names[dst_idx] = pp_src_layers[src_idx]; in loader_expand_layer_names()
1720 for (dst_idx = cnt; dst_idx < cnt + expand_count; dst_idx++) { in loader_expand_layer_names()
1721 pp_layer_names[dst_idx] = (char *)&expand_names[src_idx++][0]; in loader_expand_layer_names()
/external/opencv/cxcore/src/
Dcxmatmul.cpp1881 int src_idx = 0, dst_idx = 0; in cvTransform() local
1888 int dst_len = dst_block->count - dst_idx; in cvTransform()
1890 void* dstptr = dst_block->data + dst_idx*dst_elem_size; in cvTransform()
1910 if( (dst_idx += src_len) == dst_block->count ) in cvTransform()
1911 dst_block = dst_block->next, dst_idx = 0; in cvTransform()
/external/opencv3/modules/core/src/
Dconvert.cpp1304 int src_idx, src_cnidx, dst_idx, dst_cnidx; in ocl_mixChannels() local
1307 getUMatIndex(dst, dcn, dst_idx, dst_cnidx); in ocl_mixChannels()
1309 CV_Assert(dst_idx >= 0 && src_idx >= 0); in ocl_mixChannels()
1314 dstargs[i] = dst[dst_idx]; in ocl_mixChannels()
1321 …declcn += format(" -D scn%d=%d -D dcn%d=%d", i, src[src_idx].channels(), i, dst[dst_idx].channels(… in ocl_mixChannels()