Lines Matching refs:Result
88 UINT64 Result; in DtResolveIntegerExpression() local
96 Result = DtEvaluateExpression (Field->Value); in DtResolveIntegerExpression()
97 *ReturnValue = Result; in DtResolveIntegerExpression()
122 UINT64 Result; in DtDoOperator() local
130 Result = ~RightValue; in DtDoOperator()
134 Result = !RightValue; in DtDoOperator()
138 Result = LeftValue * RightValue; in DtDoOperator()
148 Result = LeftValue / RightValue; in DtDoOperator()
158 Result = LeftValue % RightValue; in DtDoOperator()
162 Result = LeftValue + RightValue; in DtDoOperator()
166 Result = LeftValue - RightValue; in DtDoOperator()
170 Result = LeftValue >> RightValue; in DtDoOperator()
174 Result = LeftValue << RightValue; in DtDoOperator()
178 Result = LeftValue < RightValue; in DtDoOperator()
182 Result = LeftValue > RightValue; in DtDoOperator()
186 Result = LeftValue <= RightValue; in DtDoOperator()
190 Result = LeftValue >= RightValue; in DtDoOperator()
194 Result = LeftValue = RightValue; in DtDoOperator()
198 Result = LeftValue != RightValue; in DtDoOperator()
202 Result = LeftValue & RightValue; in DtDoOperator()
206 Result = LeftValue ^ RightValue; in DtDoOperator()
210 Result = LeftValue | RightValue; in DtDoOperator()
214 Result = LeftValue && RightValue; in DtDoOperator()
218 Result = LeftValue || RightValue; in DtDoOperator()
236 ACPI_FORMAT_UINT64 (Result)); in DtDoOperator()
238 return (Result); in DtDoOperator()