Home
last modified time | relevance | path

Searched refs:RightValue (Results 1 – 2 of 2) sorted by relevance

/acpica-3.7.0/source/compiler/
Ddtexpress.c225 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()
[all …]
Ddtcompiler.h401 UINT64 RightValue);