Lines Matching refs:LeftValue
116 UINT64 LeftValue, in DtDoOperator() argument
139 Result = LeftValue * RightValue; in DtDoOperator()
151 Result = LeftValue / RightValue; in DtDoOperator()
163 Result = LeftValue % RightValue; in DtDoOperator()
167 Result = LeftValue + RightValue; in DtDoOperator()
172 Result = LeftValue - RightValue; in DtDoOperator()
177 Result = LeftValue >> RightValue; in DtDoOperator()
182 Result = LeftValue << RightValue; in DtDoOperator()
187 Result = LeftValue < RightValue; in DtDoOperator()
192 Result = LeftValue > RightValue; in DtDoOperator()
197 Result = LeftValue <= RightValue; in DtDoOperator()
202 Result = LeftValue >= RightValue; in DtDoOperator()
207 Result = LeftValue == RightValue; in DtDoOperator()
212 Result = LeftValue != RightValue; in DtDoOperator()
217 Result = LeftValue & RightValue; in DtDoOperator()
222 Result = LeftValue ^ RightValue; in DtDoOperator()
227 Result = LeftValue | RightValue; in DtDoOperator()
232 Result = LeftValue && RightValue; in DtDoOperator()
237 Result = LeftValue || RightValue; in DtDoOperator()
251 ACPI_FORMAT_UINT64 (LeftValue), in DtDoOperator()