Lines Matching refs:lookups
36 for (unsigned int i = 0; i < lookups[table_index].len; i++) in collect_lookups()
37 hb_set_add (lookups_out, lookups[table_index][i].index); in collect_lookups()
110 hb_ot_map_t::lookup_map_t *lookup = m.lookups[table_index].push (); in add_lookups()
299 if (last_num_lookups < m.lookups[table_index].len) in compile()
301 m.lookups[table_index].qsort (last_num_lookups, m.lookups[table_index].len); in compile()
304 for (unsigned int i = j + 1; i < m.lookups[table_index].len; i++) in compile()
305 if (m.lookups[table_index][i].index != m.lookups[table_index][j].index) in compile()
306 m.lookups[table_index][++j] = m.lookups[table_index][i]; in compile()
309 m.lookups[table_index][j].mask |= m.lookups[table_index][i].mask; in compile()
310 m.lookups[table_index][j].auto_zwj &= m.lookups[table_index][i].auto_zwj; in compile()
312 m.lookups[table_index].shrink (j + 1); in compile()
315 last_num_lookups = m.lookups[table_index].len; in compile()