Home | History | Annotate | Download | only in truetype

Lines Matching refs:Def

3159              CUR.IP > CUR.callStack[CUR.callTop - 1].Def->end ) )  \
3171 CUR.IP > CUR.callStack[CUR.callTop - 1].Def->end ) ) \
3184 CUR.IP > CUR.callStack[CUR.callTop - 1].Def->end ) ) \
4902 CUR.IP = pRec->Def->start;
4930 TT_DefRecord* def;
4948 def = CUR.FDefs + F;
4949 if ( CUR.maxFunc + 1 != CUR.numFDefs || def->opc != F )
4955 def = CUR.FDefs;
4956 limit = def + CUR.numFDefs;
4958 while ( def < limit && def->opc != F )
4959 def++;
4961 if ( def == limit )
4966 if ( !def->active )
4974 ( def->sph_fdef_flags & SPH_FDEF_VACUFORM_ROUND_1 ) ) )
4977 CUR.sph_in_func_flags = def->sph_fdef_flags;
4992 pCrec->Def = def;
4996 INS_Goto_CodeRange( def->range,
4997 def->start );
5019 TT_DefRecord* def;
5036 def = CUR.FDefs + F;
5037 if ( CUR.maxFunc + 1 != CUR.numFDefs || def->opc != F )
5043 def = CUR.FDefs;
5044 limit = def + CUR.numFDefs;
5046 while ( def < limit && def->opc != F )
5047 def++;
5049 if ( def == limit )
5054 if ( !def->active )
5060 ( def->sph_fdef_flags & SPH_FDEF_VACUFORM_ROUND_1 ) )
5063 CUR.sph_in_func_flags = def->sph_fdef_flags;
5080 pCrec->Def = def;
5084 INS_Goto_CodeRange( def->range, def->start );
5105 TT_DefRecord* def;
5111 def = CUR.IDefs;
5112 limit = def + CUR.numIDefs;
5114 for ( ; def < limit; def++ )
5115 if ( def->opc == (FT_ULong)args[0] )
5118 if ( def == limit )
5136 def->opc = (FT_Byte)args[0];
5137 def->start = CUR.IP + 1;
5138 def->range = CUR.curRange;
5139 def->active = TRUE;
7887 TT_DefRecord* def = CUR.IDefs;
7888 TT_DefRecord* limit = def + CUR.numIDefs;
7893 for ( ; def < limit; def++ )
7895 if ( (FT_Byte)def->opc == CUR.opcode && def->active )
7911 call->Def = def;
7913 INS_Goto_CodeRange( def->range, def->start );
8945 TT_DefRecord* def = CUR.IDefs;
8946 TT_DefRecord* limit = def + CUR.numIDefs;
8949 for ( ; def < limit; def++ )
8951 if ( def->active && CUR.opcode == (FT_Byte)def->opc )
8967 callrec->Def = def;
8969 if ( INS_Goto_CodeRange( def->range, def->start ) == FAILURE )