Lines Matching refs:Value
139 #define RT_BOOL(Value) ( !!(Value) )
141 #define RT_CLAMP(Value, Min, Max) ( (Value) > (Max) ? (Max) : (Value) < (Min) ? (Min) : (Value) )
153 # define INT16_C(Value) (Value)
156 # define UINT16_C(Value) (Value)
159 # define INT32_C(Value) (Value ## U)
162 # define UINT32_C(Value) (Value ## U)
230 #define VBVO_PORT_WRITE_U8(Port, Value) \
231 outb(Port, Value)
233 #define VBVO_PORT_WRITE_U16(Port, Value) \
234 outw(Port, Value)
236 #define VBVO_PORT_WRITE_U32(Port, Value) \
237 outl(Port, Value)