Lines Matching defs:Result
193 UINT64 Result;
201 Result = DtEvaluateExpression (Field->Value);
202 *ReturnValue = Result;
215 * RETURN: 64-bit result of the requested operation
227 UINT64 Result;
236 Result = ~RightValue;
241 Result = !RightValue;
246 Result = LeftValue * RightValue;
258 Result = LeftValue / RightValue;
270 Result = LeftValue % RightValue;
274 Result = LeftValue + RightValue;
279 Result = LeftValue - RightValue;
284 Result = LeftValue >> RightValue;
289 Result = LeftValue << RightValue;
294 Result = LeftValue < RightValue;
299 Result = LeftValue > RightValue;
304 Result = LeftValue <= RightValue;
309 Result = LeftValue >= RightValue;
314 Result = LeftValue == RightValue;
319 Result = LeftValue != RightValue;
324 Result = LeftValue & RightValue;
329 Result = LeftValue ^ RightValue;
334 Result = LeftValue | RightValue;
339 Result = LeftValue && RightValue;
344 Result = LeftValue || RightValue;
361 ACPI_FORMAT_UINT64 (Result));
363 return (Result);