Home | History | Annotate | Download | only in priv

Lines Matching refs:yy

45 static inline UInt mul32 ( Int xx, Int yy )
47 Int t = ((Int)xx) * ((Int)yy);
51 static inline UInt max32S ( Int xx, Int yy )
53 return toUInt((xx > yy) ? xx : yy);
56 static inline UInt min32S ( Int xx, Int yy )
58 return toUInt((xx < yy) ? xx : yy);
61 static inline UInt max32U ( UInt xx, UInt yy )
63 return toUInt((xx > yy) ? xx : yy);
66 static inline UInt min32U ( UInt xx, UInt yy )
68 return toUInt((xx < yy) ? xx : yy);
71 static inline UShort max16U ( UShort xx, UShort yy )
73 return toUShort((xx > yy) ? xx : yy);
76 static inline UShort min16U ( UShort xx, UShort yy )
78 return toUShort((xx < yy) ? xx : yy);
81 static inline UChar max8S ( Char xx, Char yy )
83 return toUChar((xx > yy) ? xx : yy);
86 static inline UChar min8S ( Char xx, Char yy )
88 return toUChar((xx < yy) ? xx : yy);
91 static inline ULong cmpGT64S ( Long xx, Long yy )
93 return (((Long)xx) > ((Long)yy))