/external/opencv3/modules/cudaimgproc/src/cuda/ |
D | clahe.cu | 153 int tx1 = __float2int_rd(txf); in tranformKernel() local 154 int tx2 = tx1 + 1; in tranformKernel() 155 const float xa = txf - tx1; in tranformKernel() 156 tx1 = ::max(tx1, 0); in tranformKernel() 163 res += lut(ty1 * tilesX + tx1, srcVal) * ((1.0f - xa) * (1.0f - ya)); in tranformKernel() 165 res += lut(ty2 * tilesX + tx1, srcVal) * ((1.0f - xa) * (ya)); in tranformKernel()
|
/external/opencv3/modules/imgproc/src/opencl/ |
D | clahe.cl | 235 int tx1 = convert_int_rtn(txf); 236 int tx2 = tx1 + 1; 237 const float xa = txf - tx1; 238 tx1 = max(tx1, 0); 245 … res += lut[mad24(ty1 * tilesX + tx1, lutStep, srcVal + lut_offset)] * ((1.0f - xa) * (1.0f - ya)); 247 res += lut[mad24(ty2 * tilesX + tx1, lutStep, srcVal + lut_offset)] * ((1.0f - xa) * (ya));
|
/external/pdfium/third_party/libopenjpeg20/ |
D | pi.c | 341 pi->poc.tx1 = pi->tx1; in opj_pi_next_rpcl() 345 …for (pi->x = pi->poc.tx0; pi->x < pi->poc.tx1; pi->x += (OPJ_INT32)(pi->dx - (OPJ_UINT32)(pi->x % … in opj_pi_next_rpcl() 360 trx1 = opj_int_ceildiv(pi->tx1, (OPJ_INT32)(comp->dx << levelno)); in opj_pi_next_rpcl() 428 pi->poc.tx1 = pi->tx1; in opj_pi_next_pcrl() 431 …for (pi->x = pi->poc.tx0; pi->x < pi->poc.tx1; pi->x += (OPJ_INT32)(pi->dx - (OPJ_UINT32)(pi->x % … in opj_pi_next_pcrl() 444 trx1 = opj_int_ceildiv(pi->tx1, (OPJ_INT32)(comp->dx << levelno)); in opj_pi_next_pcrl() 512 pi->poc.tx1 = pi->tx1; in opj_pi_next_cprl() 515 …for (pi->x = pi->poc.tx0; pi->x < pi->poc.tx1; pi->x += (OPJ_INT32)(pi->dx - (OPJ_UINT32)(pi->x % … in opj_pi_next_cprl() 526 trx1 = opj_int_ceildiv(pi->tx1, (OPJ_INT32)(comp->dx << levelno)); in opj_pi_next_cprl() 1272 l_current_pi->tx1 = l_tx1; in opj_pi_create_decode() [all …]
|
D | pi.h | 103 OPJ_INT32 tx0, ty0, tx1, ty1; member
|
D | openjpeg.h | 339 OPJ_INT32 tx0,tx1,ty0,ty1; member
|
/external/opencv3/modules/imgproc/src/ |
D | clahe.cpp | 250 int tx1 = cvFloor(txf); in CLAHE_Interpolation_Body() local 251 int tx2 = tx1 + 1; in CLAHE_Interpolation_Body() 253 xa_p[x] = txf - tx1; in CLAHE_Interpolation_Body() 256 tx1 = std::max(tx1, 0); in CLAHE_Interpolation_Body() 259 ind1_p[x] = tx1 * lut_step; in CLAHE_Interpolation_Body()
|
D | imgwarp.cpp | 5323 __m128i tx0, tx1, ty0, ty1; in operator ()() local 5326 … tx1 = _mm_add_epi32(_mm_loadu_si128((const __m128i*)(adelta + x + x1 + 4)), XX); in operator ()() 5331 tx1 = _mm_srai_epi32(tx1, AB_BITS - INTER_BITS); in operator ()() 5335 _mm_and_si128(tx1, fxy_mask)); in operator ()() 5339 _mm_srai_epi32(tx1, INTER_BITS)); in operator ()()
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
D | sp_tex_sample.c | 1184 const float *tx0, *tx1; in img_filter_1d_linear() local 1197 tx1 = get_texel_2d(samp, addr, x1, 0); in img_filter_1d_linear() 1201 rgba[TGSI_NUM_CHANNELS*c] = lerp(xw, tx0[c], tx1[c]); in img_filter_1d_linear() 1221 const float *tx0, *tx1; in img_filter_1d_array_linear() local 1235 tx1 = get_texel_1d_array(samp, addr, x1, layer); in img_filter_1d_array_linear() 1239 rgba[TGSI_NUM_CHANNELS*c] = lerp(xw, tx0[c], tx1[c]); in img_filter_1d_array_linear() 1259 const float *tx0, *tx1, *tx2, *tx3; in img_filter_2d_linear() local 1275 tx1 = get_texel_2d(samp, addr, x1, y0); in img_filter_2d_linear() 1282 tx0[c], tx1[c], in img_filter_2d_linear() 1303 const float *tx0, *tx1, *tx2, *tx3; in img_filter_2d_array_linear() local [all …]
|
/external/toybox/tests/ |
D | printf.test | 22 testing "printf hex" "$PRINTF 'A\x1b\x2B\x3Q\xa' | od -An -tx1" \
|
/external/vboot_reference/utility/ |
D | dev_debug_vboot | 369 loghead od -Ax -tx1 "${kfile}"
|
/external/llvm/test/CodeGen/PowerPC/ |
D | pr17168.ll | 467 !410 = !DIGlobalVariable(name: "tx1", line: 31, isLocal: true, isDefinition: true, scope: null, fil…
|