Home
last modified time | relevance | path

Searched refs:tx0 (Results 1 – 13 of 13) sorted by relevance

/external/pdfium/third_party/libopenjpeg20/
D0026-use_opj_uint_ceildiv.patch9 - l_cp->tw = (OPJ_UINT32)opj_int_ceildiv((OPJ_INT32)(l_image->x1 - l_cp->tx0),
13 + l_cp->tw = opj_uint_ceildiv(l_image->x1 - l_cp->tx0, l_cp->tdx);
19 (p_j2k->m_specific_param.m_decoder.m_start_tile_x - l_cp->tx0) / l_cp->tdx;
23 - OPJ_INT32)(p_j2k->m_specific_param.m_decoder.m_end_tile_x - l_cp->tx0),
29 + p_j2k->m_specific_param.m_decoder.m_end_tile_x - l_cp->tx0, l_cp->tdx);
39 - cp->tw = (OPJ_UINT32)opj_int_ceildiv((OPJ_INT32)(image->x1 - cp->tx0),
43 + cp->tw = opj_uint_ceildiv(image->x1 - cp->tx0, cp->tdx);
46 cp->tdx = image->x1 - cp->tx0;
Dpi.c374 pi->poc.tx0 = pi->tx0; in opj_pi_next_rpcl()
381 for (pi->x = pi->poc.tx0; pi->x < pi->poc.tx1; in opj_pi_next_rpcl()
407 trx0 = opj_int_ceildiv(pi->tx0, (OPJ_INT32)(comp->dx << levelno)); in opj_pi_next_rpcl()
428 if (!((pi->x % (OPJ_INT32)(comp->dx << rpx) == 0) || ((pi->x == pi->tx0) && in opj_pi_next_rpcl()
510 pi->poc.tx0 = pi->tx0; in opj_pi_next_pcrl()
516 for (pi->x = pi->poc.tx0; pi->x < pi->poc.tx1; in opj_pi_next_pcrl()
541 trx0 = opj_int_ceildiv(pi->tx0, (OPJ_INT32)(comp->dx << levelno)); in opj_pi_next_pcrl()
562 if (!((pi->x % (OPJ_INT32)(comp->dx << rpx) == 0) || ((pi->x == pi->tx0) && in opj_pi_next_pcrl()
644 pi->poc.tx0 = pi->tx0; in opj_pi_next_cprl()
650 for (pi->x = pi->poc.tx0; pi->x < pi->poc.tx1; in opj_pi_next_cprl()
[all …]
Dpi.h105 OPJ_INT32 tx0, ty0, tx1, ty1; member
Dimage.c130 l_x0 = opj_uint_max(p_cp->tx0, p_image_header->x0); in opj_image_comp_header_update()
132 l_x1 = p_cp->tx0 + (p_cp->tw - 1U) * in opj_image_comp_header_update()
Dopenjpeg.h339 OPJ_INT32 tx0, tx1, ty0, ty1; member
925 OPJ_UINT32 tx0; member
Dj2k.h353 OPJ_UINT32 tx0; /* MSD see norm */ member
Dj2k.c2007 opj_write_bytes(l_current_ptr, cp->tx0, 4); /* XT0siz */ in opj_j2k_write_siz()
2105 opj_read_bytes(p_header_data, (OPJ_UINT32*) &l_cp->tx0, in opj_j2k_read_siz()
2147 l_tx1 = opj_uint_adds(l_cp->tx0, l_cp->tdx); /* manage overflow */ in opj_j2k_read_siz()
2149 if ((l_cp->tx0 > l_image->x0) || (l_cp->ty0 > l_image->y0) || in opj_j2k_read_siz()
2309 l_cp->tw = opj_uint_ceildiv(l_image->x1 - l_cp->tx0, l_cp->tdx); in opj_j2k_read_siz()
2324 (p_j2k->m_specific_param.m_decoder.m_start_tile_x - l_cp->tx0) / l_cp->tdx; in opj_j2k_read_siz()
2328 p_j2k->m_specific_param.m_decoder.m_end_tile_x - l_cp->tx0, l_cp->tdx); in opj_j2k_read_siz()
5077 l_x0 = opj_int_max((OPJ_INT32)(l_cp->tx0 + j * l_cp->tdx), in opj_j2k_update_rates()
5081 l_x1 = opj_int_min((OPJ_INT32)(l_cp->tx0 + (j + 1) * l_cp->tdx), in opj_j2k_update_rates()
7038 cp->tx0 = (OPJ_UINT32)parameters->cp_tx0; in opj_j2k_setup_encoder()
[all …]
Dtcd.c769 l_tx0 = l_cp->tx0 + p * in opj_tcd_init_tile()
/external/rust/crates/futures/tests/
Deager_drop.rs73 let (tx0, rx0) = oneshot::channel::<()>(); in then_drops_eagerly()
86 tx0.send(()).unwrap(); in then_drops_eagerly()
97 let (tx0, rx0) = oneshot::channel::<Result<(), ()>>(); in and_then_drops_eagerly()
110 tx0.send(Ok(())).unwrap(); in and_then_drops_eagerly()
121 let (tx0, rx0) = oneshot::channel::<Result<(), ()>>(); in or_else_drops_eagerly()
134 tx0.send(Err(())).unwrap(); in or_else_drops_eagerly()
Dshared.rs119 let (tx0, rx0) = oneshot::channel::<i32>(); in peek()
130 tx0.send(42).unwrap(); in peek()
/external/rust/crates/rayon-core/src/spawn/
Dtest.rs58 let (tx0, rx0) = channel(); in termination_while_things_are_executing()
77 tx0.send(22).unwrap(); in termination_while_things_are_executing()
/external/mesa3d/src/amd/addrlib/src/r800/
Dsiaddrlib.cpp1093 UINT_32 tx0, tx1; in TileCoordToMaskElementIndex() local
1096 tx0 = _BIT(tx,0); in TileCoordToMaskElementIndex()
1149 elemIdx0 = tx0; in TileCoordToMaskElementIndex()
1162 elemIdx0 = tx0; in TileCoordToMaskElementIndex()
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_tex_sample.c1529 const float *tx0, *tx1; in img_filter_1d_linear() local
1539 tx0 = get_texel_1d_array(sp_sview, sp_samp, addr, x0, in img_filter_1d_linear()
1546 rgba[TGSI_NUM_CHANNELS*c] = lerp(xw, tx0[c], tx1[c]); in img_filter_1d_linear()
1563 const float *tx0, *tx1; in img_filter_1d_array_linear() local
1573 tx0 = get_texel_1d_array(sp_sview, sp_samp, addr, x0, layer); in img_filter_1d_array_linear()
1578 rgba[TGSI_NUM_CHANNELS*c] = lerp(xw, tx0[c], tx1[c]); in img_filter_1d_array_linear()