Searched refs:tx0 (Results 1 - 9 of 9) sorted by relevance

/external/pdfium/third_party/libopenjpeg20/
H A Dpi.h103 OPJ_INT32 tx0, ty0, tx1, ty1; member in struct:opj_pi_iterator
H A Dpi.c339 pi->poc.tx0 = pi->tx0;
345 for (pi->x = pi->poc.tx0; pi->x < pi->poc.tx1; pi->x += (OPJ_INT32)(pi->dx - (OPJ_UINT32)(pi->x % (OPJ_INT32)pi->dx))) {
358 trx0 = opj_int_ceildiv(pi->tx0, (OPJ_INT32)(comp->dx << levelno));
367 if (!((pi->x % (OPJ_INT32)(comp->dx << rpx) == 0) || ((pi->x == pi->tx0) && ((trx0 << levelno) % (1 << rpx))))){
426 pi->poc.tx0 = pi->tx0;
431 for (pi->x = pi->poc.tx0; pi->x < pi->poc.tx1; pi->x += (OPJ_INT32)(pi->dx - (OPJ_UINT32)(pi->x % (OPJ_INT32)pi->dx))) {
442 trx0 = opj_int_ceildiv(pi->tx0, (OPJ_INT32)(comp->dx << levelno));
451 if (!((pi->x % (OPJ_INT32)(comp->dx << rpx) == 0) || ((pi->x == pi->tx0)
[all...]
H A Dimage.c116 l_x0 = opj_uint_max(p_cp->tx0 , p_image_header->x0);
118 l_x1 = p_cp->tx0 + (p_cp->tw - 1U) * p_cp->tdx; /* validity of p_cp members used here checked in opj_j2k_read_siz. Can't overflow. */
H A Dopenjpeg.h339 OPJ_INT32 tx0,tx1,ty0,ty1; member in struct:opj_poc
921 OPJ_UINT32 tx0; member in struct:opj_codestream_info_v2
H A Dj2k.h360 OPJ_UINT32 tx0; /* MSD see norm */ member in struct:opj_cp
H A Dj2k.c1917 opj_write_bytes(l_current_ptr, cp->tx0, 4); /* XT0siz */
2008 opj_read_bytes(p_header_data, (OPJ_UINT32*) &l_cp->tx0, 4); /* XT0siz */
2045 l_tx1 = opj_uint_adds(l_cp->tx0, l_cp->tdx); /* manage overflow */
2047 if ((l_cp->tx0 > l_image->x0) || (l_cp->ty0 > l_image->y0) || (l_tx1 <= l_image->x0) || (l_ty1 <= l_image->y0) ) {
2158 l_cp->tw = (OPJ_UINT32)opj_int_ceildiv((OPJ_INT32)(l_image->x1 - l_cp->tx0), (OPJ_INT32)l_cp->tdx);
2172 p_j2k->m_specific_param.m_decoder.m_start_tile_x = (p_j2k->m_specific_param.m_decoder.m_start_tile_x - l_cp->tx0) / l_cp->tdx;
2174 p_j2k->m_specific_param.m_decoder.m_end_tile_x = (OPJ_UINT32)opj_int_ceildiv((OPJ_INT32)(p_j2k->m_specific_param.m_decoder.m_end_tile_x - l_cp->tx0), (OPJ_INT32)l_cp->tdx);
4648 l_x0 = opj_int_max((OPJ_INT32)(l_cp->tx0 + j * l_cp->tdx), (OPJ_INT32)l_image->x0);
4650 l_x1 = opj_int_min((OPJ_INT32)(l_cp->tx0 + (j + 1) * l_cp->tdx), (OPJ_INT32)l_image->x1);
6312 cp->tx0
[all...]
H A Dtcd.c706 l_tx0 = l_cp->tx0 + p * l_cp->tdx; /* can't be greater than l_image->x1 so won't overflow */
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_tex_sample.c1184 const float *tx0, *tx1; local
1196 tx0 = get_texel_2d(samp, addr, x0, 0);
1201 rgba[TGSI_NUM_CHANNELS*c] = lerp(xw, tx0[c], tx1[c]);
1221 const float *tx0, *tx1; local
1234 tx0 = get_texel_1d_array(samp, addr, x0, layer);
1239 rgba[TGSI_NUM_CHANNELS*c] = lerp(xw, tx0[c], tx1[c]);
1259 const float *tx0, *tx1, *tx2, *tx3; local
1274 tx0 = get_texel_2d(samp, addr, x0, y0);
1282 tx0[c], tx1[c],
1303 const float *tx0, *tx local
1348 const float *tx0, *tx1, *tx2, *tx3; local
[all...]
/external/opencv3/modules/imgproc/src/
H A Dimgwarp.cpp5323 __m128i tx0, tx1, ty0, ty1;
5324 tx0 = _mm_add_epi32(_mm_loadu_si128((const __m128i*)(adelta + x + x1)), XX);
5329 tx0 = _mm_srai_epi32(tx0, AB_BITS - INTER_BITS);
5334 __m128i fx_ = _mm_packs_epi32(_mm_and_si128(tx0, fxy_mask),
5338 tx0 = _mm_packs_epi32(_mm_srai_epi32(tx0, INTER_BITS),
5344 _mm_storeu_si128((__m128i*)(xy + x1*2), _mm_unpacklo_epi16(tx0, ty0));
5345 _mm_storeu_si128((__m128i*)(xy + x1*2 + 8), _mm_unpackhi_epi16(tx0, ty0));

Completed in 5690 milliseconds