Searched defs:Expected (Results 26 - 37 of 37) sorted by relevance

12

/external/clang/lib/CodeGen/
H A DCGAtomic.cpp217 /// \param Expected Expected value.
225 EmitAtomicCompareExchange(RValue Expected, RValue Desired,
364 llvm::Value *Expected = CGF.Builder.CreateLoad(Val1); local
368 Ptr.getPointer(), Expected, Desired, SuccessOrder, FailureOrder);
387 // Update Expected if Expected isn't equal to Old, otherwise branch to the
392 // Update the memory at Expected with Old's value.
1200 assert(IntVal->getType()->isIntegerTy() && "Expected integer value");
1458 RValue Expected, RValu
1457 EmitAtomicCompareExchange( RValue Expected, RValue Desired, llvm::AtomicOrdering Success, llvm::AtomicOrdering Failure, bool IsWeak) argument
1791 EmitAtomicCompareExchange( LValue Obj, RValue Expected, RValue Desired, SourceLocation Loc, llvm::AtomicOrdering Success, llvm::AtomicOrdering Failure, bool IsWeak, AggValueSlot Slot) argument
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dtzrulets.cpp2099 int32_t Expected[][8] = { local
2145 if (offset != Expected[i][j]) {
2146 errln((UnicodeString)"FAIL: Invalid offset at time(" + times[j] + "):" + offset + " Expected:" + Expected[i][j]);
2172 + tzt.getTime() + " Expected: " + expectedNext);
2180 + tzt.getTime() + " Expected: " + expectedPrev);
2657 errln(UnicodeString("Fail: Wrong offsets: ") + raw + "/" + dst + " Expected: 21600000/0");
/external/llvm/lib/Support/
H A DYAMLParser.cpp403 /// \a Expected. This updates \a Column.
404 bool consume(uint32_t Expected);
941 bool Scanner::consume(uint32_t Expected) { argument
942 if (Expected >= 0x80)
948 if (uint8_t(*Current) == Expected) {
1317 setError("Expected quote at end of scalar", Current);
1501 setError("Expected a line break after block scalar header", Current);
2146 setError("Unexpected token. Expected Key or Block End", T);
2165 setError( "Unexpected token. Expected Key, Flow Entry, or Flow "
2199 setError( "Unexpected token. Expected Bloc
[all...]
/external/llvm/unittests/IR/
H A DMetadataTest.cpp271 std::string Expected; local
273 raw_string_ostream OS(Expected);
291 EXPECT_EQ(Expected, Actual);
333 std::string Expected; local
335 raw_string_ostream OS(Expected);
343 EXPECT_PRINTER_EQ(Expected, N->print(OS, &M));
/external/clang/lib/Frontend/
H A DASTUnit.cpp2272 CanQualType Expected local
2275 SimplifiedTypeClass ExpectedSTC = getSimplifiedTypeClass(Expected);
2281 = CachedCompletionTypes.find(QualType(Expected).getAsString());
/external/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp1683 unsigned Expected,
1686 " operands but expected only " + Twine(Expected) + "!");
1681 emitTooManyOperandsError(TreePattern &TP, StringRef InstName, unsigned Expected, unsigned Actual) argument
/external/clang/include/clang/Parse/
H A DParser.h299 bool TryConsumeToken(tok::TokenKind Expected) { argument
300 if (Tok.isNot(Expected))
309 bool TryConsumeToken(tok::TokenKind Expected, SourceLocation &Loc) { argument
310 if (!TryConsumeToken(Expected))
/external/vixl/test/aarch64/
H A Dtest-assembler-aarch64.cc8161 struct Expected { struct
8168 static const Expected expected_adcs_x[input_count][input_count] =
8234 static const Expected expected_sbcs_x[input_count][input_count] =
8302 const Expected& expected = expected_adcs_x[left][right];
8320 const Expected& expected = expected_sbcs_x[left][right];
8351 struct Expected { struct
8358 static const Expected expected_adcs_w[input_count][input_count] =
8424 static const Expected expected_sbcs_w[input_count][input_count] =
8492 const Expected& expected = expected_adcs_w[left][right];
8510 const Expected
[all...]
/external/swiftshader/third_party/subzero/src/
H A DIceTargetLoweringMIPS32.cpp4726 auto *Expected = Instr->getArg(1); local
4735 auto *ExpectedR = legalizeToReg(Expected);
4789 auto *ExpectedR = legalizeToReg(Expected);
/external/clang/lib/AST/
H A DExprConstant.cpp1195 const CXXRecordDecl *Expected; local
1197 Expected = Path[Path.size() - 2];
1199 Expected = getContainingRecord();
1200 if (Expected->getCanonicalDecl() != Class->getCanonicalDecl()) {
5453 assert(!RD->isUnion() && "Expected non-union class type");
/external/clang/lib/Sema/
H A DSemaDecl.cpp4100 assert(PrevDecl && "Expected a non-null Decl");
9008 QualType Expected[] = { Context.IntTy, CharPP, CharPP, CharPP }; local
9015 if (Context.hasSameUnqualifiedType(AT, Expected[i]))
9017 else if (Expected[i] == CharPP) {
9035 Diag(FD->getLocation(), diag::err_main_arg_wrong) << i << Expected[i]; local
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp2033 assert(SrcAS != DestAS && "Expected different address spaces!");
4682 "Expected a 128/256/512-bit vector type");
4699 assert(VT.is128BitVector() && "Expected a 128-bit vector type");
4712 assert(VT.is128BitVector() && "Expected a 128-bit vector type");
5452 assert(V1.getNode() && "Expected at least two non-zero elements!");
6182 SDValue Expected = (i * 2 < NumElts) ? V0 : V1; local
6184 CanFold = I1 == I0 + 1 && Op0.getOperand(0) == Expected;
6188 CanFold = I0 == I1 + 1 && Op1.getOperand(0) == Expected;
6643 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
6671 "Expected a
[all...]

Completed in 743 milliseconds

12