Lines Matching defs:Op
347 * PARAMETERS: Op - Current operator/operand
351 * DESCRIPTION: Insert a comma if this Op is a member of an argument list.
357 ACPI_PARSE_OBJECT *Op)
360 if (!Op->Common.Next)
362 ASL_CV_PRINT_ONE_COMMENT (Op, AMLCOMMENT_INLINE, NULL, 0);
366 if (AcpiDmListType (Op->Common.Parent) & BLOCK_COMMA_LIST)
370 if (Op->Common.Next->Common.DisasmFlags & ACPI_PARSEOP_IGNORE)
372 ASL_CV_PRINT_ONE_COMMENT (Op, AMLCOMMENT_INLINE, NULL, 0);
378 if ((Op->Common.Next->Common.AmlOpcode == AML_INT_NAMEPATH_OP) &&
379 (!Op->Common.Next->Common.Value.String))
387 if (!Op->Common.Next->Common.Next)
389 ASL_CV_PRINT_ONE_COMMENT (Op, AMLCOMMENT_INLINE, NULL, 0);
394 if ((Op->Common.DisasmFlags & ACPI_PARSEOP_PARAMETER_LIST) &&
395 (!(Op->Common.Next->Common.DisasmFlags & ACPI_PARSEOP_PARAMETER_LIST)))
397 ASL_CV_PRINT_ONE_COMMENT (Op, AMLCOMMENT_INLINE, NULL, 0);
403 if (!Op->Common.OperatorSymbol)
406 ASL_CV_PRINT_ONE_COMMENT (Op, AMLCOMMENT_INLINE, NULL, 0);
412 else if ((Op->Common.DisasmFlags & ACPI_PARSEOP_PARAMETER_LIST) &&
413 (Op->Common.Next->Common.DisasmFlags & ACPI_PARSEOP_PARAMETER_LIST))
416 ASL_CV_PRINT_ONE_COMMENT (Op, AMLCOMMENT_INLINE, NULL, 0);
429 * PARAMETERS: Op - Current operator/operand
433 * DESCRIPTION: Insert a comma if this Op is a member of a Field argument list.
439 ACPI_PARSE_OBJECT *Op)
442 if (Op->Common.Next)