Home | History | Annotate | Download | only in priv

Lines Matching defs:xx

45 static inline UInt mul32 ( Int xx, Int yy )
47 Long t = ((Long)xx) * ((Long)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 cmpEQ64 ( Long xx, Long yy )
93 return (((Long)xx) == ((Long)yy))
97 static inline ULong cmpGT64S ( Long xx, Long yy )
99 return (((Long)xx) > ((Long)yy))
115 Int xx = (Int)xx0;
116 if (xx < 0) xx = 0;
117 if (xx > 65535) xx = 65535;
118 return (UShort)xx;
121 static inline UShort narrow32to16 ( UInt xx )
123 return (UShort)xx;
126 static inline UChar narrow16to8 ( UShort xx )
128 return (UChar)xx;