Searched refs:s_x (Results 1 – 6 of 6) 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 | 32 static int s_x = 0; variable 40 (void) sync_add_and_fetch(&s_x, 1); in thread_func_1() 46 while (sync_add_and_fetch(&s_x, 0) == 0) in thread_func_2()
|
D | tsan_unittest.cpp | 4099 static int s_x = 0; variable 4107 AtomicIncrement(&s_x, 1); in thread_func_1() 4112 while (AtomicIncrement(&s_x, 0) == 0) in thread_func_2()
|
/external/clang/test/Sema/ |
D | format-strings-scanf.c | 26 unsigned short s_x; in test() local 27 scanf ("%" "hu" "\n", &s_x); // no-warning in test()
|
/external/llvm/test/MC/COFF/ |
D | section.s | 37 .section s_x,"x"; .long 1
|
/external/opencv3/modules/imgproc/src/opencl/ |
D | filterSepRow.cl | 337 int index[READ_TIMES_ROW], s_x, s_y; 342 s_x = mad24(i, LSIZE0, start_x); 346 EXTRAPOLATE(s_x, src_offset_x, src_offset_x + src_cols); 349 EXTRAPOLATE(s_x, 0, src_whole_cols); 352 index[i] = mad24(s_y, src_step, s_x * SRCSIZE);
|