Home
last modified time | relevance | path

Searched refs:ref_pos (Results 1 – 5 of 5) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-buffer.cc1972 const hb_glyph_position_t *ref_pos = reference->pos; in hb_buffer_diff() local
1975 if ((unsigned int) abs (buf_pos->x_advance - ref_pos->x_advance) > position_fuzz || in hb_buffer_diff()
1976 (unsigned int) abs (buf_pos->y_advance - ref_pos->y_advance) > position_fuzz || in hb_buffer_diff()
1977 (unsigned int) abs (buf_pos->x_offset - ref_pos->x_offset) > position_fuzz || in hb_buffer_diff()
1978 (unsigned int) abs (buf_pos->y_offset - ref_pos->y_offset) > position_fuzz) in hb_buffer_diff()
1984 ref_pos++; in hb_buffer_diff()
/external/libaom/libaom/av1/encoder/
Dtpl_model.c244 static int round_floor(int ref_pos, int bsize_pix) { in round_floor() argument
246 if (ref_pos < 0) in round_floor()
247 round = -(1 + (-ref_pos - 1) / bsize_pix); in round_floor()
249 round = ref_pos / bsize_pix; in round_floor()
/external/libaom/libaom/av1/common/
Donyxc_int.h922 int ref_pos = ((mi_row & 0x01) || !(bh & 0x01) || !subsampling_y) && in is_chroma_reference() local
924 return ref_pos; in is_chroma_reference()
/external/mesa3d/src/gallium/drivers/radeonsi/
Dsi_shader_tgsi_mem.c1272 int ref_pos = tgsi_util_get_shadow_ref_src_index(target); in tex_fetch_args() local
1346 assert(ref_pos >= 0); in tex_fetch_args()
1347 z = coords[ref_pos]; in tex_fetch_args()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encoder.c5672 static int round_floor(int ref_pos, int bsize_pix) { argument
5674 if (ref_pos < 0)
5675 round = -(1 + (-ref_pos - 1) / bsize_pix);
5677 round = ref_pos / bsize_pix;