Searched refs:s_y (Results 1 – 5 of 5) sorted by relevance
/external/opencv3/modules/cudaimgproc/src/cuda/ |
D | debayer.cu | 63 …__device__ void apply(const PtrStepSzb& src, int s_x, int s_y, bool blue_last, bool start_with_gre… in apply() 66 patch[0][1] = ((const uchar4*) src.ptr(s_y - 1))[s_x]; in apply() 67 patch[0][0] = ((const uchar4*) src.ptr(s_y - 1))[::max(s_x - 1, 0)]; in apply() 68 … patch[0][2] = ((const uchar4*) src.ptr(s_y - 1))[::min(s_x + 1, ((src.cols + 3) >> 2) - 1)]; in apply() 70 patch[1][1] = ((const uchar4*) src.ptr(s_y))[s_x]; in apply() 71 patch[1][0] = ((const uchar4*) src.ptr(s_y))[::max(s_x - 1, 0)]; in apply() 72 patch[1][2] = ((const uchar4*) src.ptr(s_y))[::min(s_x + 1, ((src.cols + 3) >> 2) - 1)]; in apply() 74 patch[2][1] = ((const uchar4*) src.ptr(s_y + 1))[s_x]; in apply() 75 patch[2][0] = ((const uchar4*) src.ptr(s_y + 1))[::max(s_x - 1, 0)]; in apply() 76 … patch[2][2] = ((const uchar4*) src.ptr(s_y + 1))[::min(s_x + 1, ((src.cols + 3) >> 2) - 1)]; in apply() [all …]
|
/external/valgrind/drd/tests/ |
D | atomic_var.c | 35 static int s_y = 0; variable 39 s_y = 1; in thread_func_1() 48 fprintf(stderr, "y = %d\n", s_y); in thread_func_2()
|
D | tsan_unittest.cpp | 4102 static int s_y; variable 4106 s_y = 1; in thread_func_1() 4114 printf("y = %d\n", s_y); in thread_func_2() 4121 FAST_MODE_INIT(&s_y); in Run() 4122 ANNOTATE_EXPECT_RACE_FOR_TSAN(&s_y, "test84: TP. true race."); in Run()
|
/external/opencv3/modules/imgproc/src/opencl/ |
D | filterSepRow.cl | 209 int s_y; 230 s_y = start_y; 232 EXTRAPOLATE(s_y, src_offset_y, src_offset_y + src_rows); 234 EXTRAPOLATE(s_y, 0, src_whole_rows); 240 addr = mad24((int4)s_y, (int4)src_step_in_pixel, index[i]); 337 int index[READ_TIMES_ROW], s_x, s_y; 343 s_y = start_y; 347 EXTRAPOLATE(s_y, src_offset_y, src_offset_y + src_rows); 350 EXTRAPOLATE(s_y, 0, src_whole_rows); 352 index[i] = mad24(s_y, src_step, s_x * SRCSIZE);
|
/external/llvm/test/MC/COFF/ |
D | section.s | 38 .section s_y,"y"; .long 1
|