Lines Matching refs:ll
578 _HB_OPEN_Load_LookupList( HB_LookupList* ll,
595 count = ll->LookupCount = GET_UShort();
599 ll->Lookup = NULL;
601 if ( ALLOC_ARRAY( ll->Lookup, count, HB_Lookup ) )
603 if ( ALLOC_ARRAY( ll->Properties, count, HB_UInt ) )
606 l = ll->Lookup;
627 FREE( ll->Properties );
633 FREE( ll->Lookup );
639 _HB_OPEN_Free_LookupList( HB_LookupList* ll,
647 FREE( ll->Properties );
649 if ( ll->Lookup )
651 count = ll->LookupCount;
652 l = ll->Lookup;