Lines Matching refs:RightValue
225 UINT64 RightValue) in DtDoOperator() argument
236 Result = ~RightValue; in DtDoOperator()
241 Result = !RightValue; in DtDoOperator()
246 Result = LeftValue * RightValue; in DtDoOperator()
251 if (!RightValue) in DtDoOperator()
258 Result = LeftValue / RightValue; in DtDoOperator()
263 if (!RightValue) in DtDoOperator()
270 Result = LeftValue % RightValue; in DtDoOperator()
274 Result = LeftValue + RightValue; in DtDoOperator()
279 Result = LeftValue - RightValue; in DtDoOperator()
284 Result = LeftValue >> RightValue; in DtDoOperator()
289 Result = LeftValue << RightValue; in DtDoOperator()
294 Result = LeftValue < RightValue; in DtDoOperator()
299 Result = LeftValue > RightValue; in DtDoOperator()
304 Result = LeftValue <= RightValue; in DtDoOperator()
309 Result = LeftValue >= RightValue; in DtDoOperator()
314 Result = LeftValue == RightValue; in DtDoOperator()
319 Result = LeftValue != RightValue; in DtDoOperator()
324 Result = LeftValue & RightValue; in DtDoOperator()
329 Result = LeftValue ^ RightValue; in DtDoOperator()
334 Result = LeftValue | RightValue; in DtDoOperator()
339 Result = LeftValue && RightValue; in DtDoOperator()
344 Result = LeftValue || RightValue; in DtDoOperator()
360 ACPI_FORMAT_UINT64 (RightValue), in DtDoOperator()