Deleted Added
full compact
exoparg6.c (91116) exoparg6.c (99679)
1
2/******************************************************************************
3 *
4 * Module Name: exoparg6 - AML execution - opcodes with 6 arguments
1
2/******************************************************************************
3 *
4 * Module Name: exoparg6 - AML execution - opcodes with 6 arguments
5 * $Revision: 10 $
5 * $Revision: 11 $
6 *
7 *****************************************************************************/
8
9/******************************************************************************
10 *
11 * 1. Copyright Notice
12 *
13 * Some or all of this work - Copyright (c) 1999 - 2002, Intel Corp.

--- 297 unchanged lines hidden (view full) ---

311 for ( ; Index < Operand[0]->Package.Count; Index++)
312 {
313 ThisElement = Operand[0]->Package.Elements[Index];
314
315 /*
316 * Treat any NULL or non-numeric elements as non-matching.
317 */
318 if (!ThisElement ||
6 *
7 *****************************************************************************/
8
9/******************************************************************************
10 *
11 * 1. Copyright Notice
12 *
13 * Some or all of this work - Copyright (c) 1999 - 2002, Intel Corp.

--- 297 unchanged lines hidden (view full) ---

311 for ( ; Index < Operand[0]->Package.Count; Index++)
312 {
313 ThisElement = Operand[0]->Package.Elements[Index];
314
315 /*
316 * Treat any NULL or non-numeric elements as non-matching.
317 */
318 if (!ThisElement ||
319 ThisElement->Common.Type != ACPI_TYPE_INTEGER)
319 ACPI_GET_OBJECT_TYPE (ThisElement) != ACPI_TYPE_INTEGER)
320 {
321 continue;
322 }
323
324 /*
325 * "continue" (proceed to next iteration of enclosing
326 * "for" loop) signifies a non-match.
327 */

--- 50 unchanged lines hidden ---
320 {
321 continue;
322 }
323
324 /*
325 * "continue" (proceed to next iteration of enclosing
326 * "for" loop) signifies a non-match.
327 */

--- 50 unchanged lines hidden ---