Home
last modified time | relevance | path

Searched refs:Pct_TRUE (Results 1 – 3 of 3) sorted by relevance

/external/valgrind/VEX/priv/
Dhost_ppc_isel.c1660 PPCCondCode cc = mk_PPCCondCode( Pct_TRUE, Pcf_7LT ); in iselWordExpr_R_wrk()
2932 return mk_PPCCondCode( Pct_TRUE, Pcf_7EQ ); in iselCondCode_wrk()
2955 return mk_PPCCondCode( Pct_TRUE, Pcf_7EQ ); in iselCondCode_wrk()
3003 case Iop_CmpEQ32: return mk_PPCCondCode( Pct_TRUE, Pcf_7EQ ); in iselCondCode_wrk()
3006 return mk_PPCCondCode( Pct_TRUE, Pcf_7LT ); in iselCondCode_wrk()
3053 case Iop_CmpEQ64: return mk_PPCCondCode( Pct_TRUE, Pcf_7EQ ); in iselCondCode_wrk()
3055 case Iop_CmpLT64U: return mk_PPCCondCode( Pct_TRUE, Pcf_7LT ); in iselCondCode_wrk()
3088 return mk_PPCCondCode( Pct_TRUE, Pcf_7EQ ); in iselCondCode_wrk()
Dhost_ppc_defs.h146 Pct_TRUE = 0xC, /* associated PPCCondFlag must not be Pcf_NONE */ enumerator
Dhost_ppc_defs.c202 return (cond.test == Pct_TRUE) ? "cr7.so=1" : "cr7.so=0"; in showPPCCondCode()
204 return (cond.test == Pct_TRUE) ? "cr7.eq=1" : "cr7.eq=0"; in showPPCCondCode()
206 return (cond.test == Pct_TRUE) ? "cr7.gt=1" : "cr7.gt=0"; in showPPCCondCode()
208 return (cond.test == Pct_TRUE) ? "cr7.lt=1" : "cr7.lt=0"; in showPPCCondCode()
233 return (ct == Pct_TRUE) ? Pct_FALSE : Pct_TRUE; in invertCondTest()