Home | History | Annotate | Download | only in pshinter

Lines Matching refs:index1

375                                 FT_Int         index1,
378 PS_Mask mask1 = table->masks + index1;
407 FT_Int index1,
415 /* swap index1 and index2 so that index1 < index2 */
416 if ( index1 > index2 )
418 temp = index1;
419 index1 = index2;
423 if ( index1 < index2 && index1 >= 0 && index2 < (FT_Int)table->num_masks )
425 /* we need to merge the bitsets of index1 and index2 with a */
427 PS_Mask mask1 = table->masks + index1;
487 index1, index2 ));
501 FT_Int index1, index2;
505 for ( index1 = table->num_masks - 1; index1 > 0; index1-- )
507 for ( index2 = index1 - 1; index2 >= 0; index2-- )
509 if ( ps_mask_table_test_intersect( table, index1, index2 ) )
511 error = ps_mask_table_merge( table, index2, index1, memory );