Lines Matching refs:NextOp2
1171 ACPI_PARSE_OBJECT *NextOp2) in TrCheckForBufferMatch() argument
1180 NextOp2->Asl.ParseOpcode == PARSEOP_INTEGER) && in TrCheckForBufferMatch()
1181 NextOp1->Asl.Value.Integer != NextOp2->Asl.Value.Integer) in TrCheckForBufferMatch()
1199 if (NextOp1->Asl.ParseOpcode != NextOp2->Asl.ParseOpcode && in TrCheckForBufferMatch()
1201 TrBufferIsAllZero (NextOp2->Asl.Next)) in TrCheckForBufferMatch()
1209 NextOp2 = NextOp2->Asl.Next; in TrCheckForBufferMatch()
1215 while (NextOp1 && NextOp2) in TrCheckForBufferMatch()
1218 (NextOp2->Asl.ParseOpcode == PARSEOP_STRING_LITERAL)) in TrCheckForBufferMatch()
1220 if (!strcmp (NextOp1->Asl.Value.String, NextOp2->Asl.Value.String)) in TrCheckForBufferMatch()
1229 if ((UINT8) NextOp1->Asl.Value.Integer != (UINT8) NextOp2->Asl.Value.Integer) in TrCheckForBufferMatch()
1235 NextOp2 = NextOp2->Asl.Next; in TrCheckForBufferMatch()
1240 if (NextOp1 || NextOp2) in TrCheckForBufferMatch()