Lines Matching refs:LeftValue
223 UINT64 LeftValue, in DtDoOperator() argument
246 Result = LeftValue * RightValue; in DtDoOperator()
258 Result = LeftValue / 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()
358 ACPI_FORMAT_UINT64 (LeftValue), in DtDoOperator()