Lines Matching refs:NextOp1
1170 ACPI_PARSE_OBJECT *NextOp1, in TrCheckForBufferMatch() argument
1179 if ((NextOp1->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()
1200 TrBufferIsAllZero (NextOp1->Asl.Next) && in TrCheckForBufferMatch()
1208 NextOp1 = NextOp1->Asl.Next; in TrCheckForBufferMatch()
1215 while (NextOp1 && NextOp2) in TrCheckForBufferMatch()
1217 if ((NextOp1->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()
1234 NextOp1 = NextOp1->Asl.Next; in TrCheckForBufferMatch()
1240 if (NextOp1 || NextOp2) in TrCheckForBufferMatch()