Lines Matching refs:Result
193 UINT64 Result; in DtResolveIntegerExpression() local
201 Result = DtEvaluateExpression (Field->Value); in DtResolveIntegerExpression()
202 *ReturnValue = Result; in DtResolveIntegerExpression()
227 UINT64 Result; in DtDoOperator() local
236 Result = ~RightValue; in DtDoOperator()
241 Result = !RightValue; in DtDoOperator()
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()
361 ACPI_FORMAT_UINT64 (Result)); in DtDoOperator()
363 return (Result); in DtDoOperator()