HomeSort by: relevance | last modified time | path
    Searched defs:Expected (Results 1 - 16 of 16) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
allocator_test.cc 52 auto Expected =
57 ASSERT_EQ(C, Expected);
71 auto Expected =
76 ASSERT_EQ(C, Expected);
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Signals.cpp 71 auto Expected = CallbackAndCookie::Status::Initialized;
73 if (!RunMe.Flag.compare_exchange_strong(Expected, Desired))
87 auto Expected = CallbackAndCookie::Status::Empty;
89 if (!SetMe.Flag.compare_exchange_strong(Expected, Desired))
  /src/external/bsd/ntp/dist/ntpd/
check_y2k.c 410 time_t Expected;
433 Expected = t * 24 * 60 * 60;
434 if ( Observed != Expected || Flag )
439 (unsigned long)Observed, (unsigned long)Expected,
440 ((long)Observed - (long)Expected) );
454 if ( Observed != Expected || Flag )
459 (unsigned long)Observed, (unsigned long)Expected,
460 ((long)Observed - (long)Expected) );
472 if ( Observed != Expected || Flag )
477 (unsigned long)Observed, (unsigned long)Expected,
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Error.h 167 // Expected<T> needs to be able to steal the payload when constructed from an
169 template <typename T> friend class Expected;
328 /// the type system. This allows to catch invalid conversion to Expected<T> at
439 template <class T> class LLVM_NODISCARD Expected {
441 template <class OtherT> friend class Expected;
460 /// Create an Expected<T> error value from the given Error.
461 Expected(Error Err)
464 // Expected is unchecked upon construction in Debug builds.
468 assert(Err && "Cannot create Expected<T> from Error success value.");
473 /// Expected<T> foo() { return Error::success(); } which compiles otherwis
    [all...]
raw_ostream.h 35 template <class T> class LLVM_NODISCARD Expected;
553 LLVM_NODISCARD Expected<sys::fs::FileLocker> lock();
563 Expected<sys::fs::FileLocker> tryLockFor(std::chrono::milliseconds Timeout);
574 /// expected place.
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_basic_logging.cc 376 uint8_t Expected = 0;
377 if (!atomic_compare_exchange_strong(&BasicInitialized, &Expected, 1,
444 uint8_t Expected = 0;
445 if (!atomic_compare_exchange_strong(&BasicInitialized, &Expected, 0,
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
Store.cpp 242 const CXXRecordDecl *Expected = Ty->getPointeeCXXRecordDecl();
243 if (!Expected)
244 Expected = Ty->getAsCXXRecordDecl();
246 return Expected->getCanonicalDecl() == RD->getCanonicalDecl();
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/GlobalISel/
GIMatchTree.cpp 434 const CodeGenInstruction *Expected = OpcodeP->getInstr();
435 OpcodesForThisPredicate.push_back(Expected);
460 for (const CodeGenInstruction *Expected : OpcodesForThisPredicate) {
467 auto Partition = InstrToPartition.find(Expected);
471 .insert(std::make_pair(Expected, Partitions.size()))
473 PartitionToInstr.push_back(Expected);
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
InstructionSelectorImpl.h 133 "Expected to store MIs in order");
255 int64_t Expected = MatchTable[CurrentIdx++];
258 << InsnID << "], Expected=" << Expected << ")\n");
260 if (State.MIs[InsnID]->getNumOperands() != Expected) {
280 "Expected immediate operand");
281 assert(Predicate > GIPFP_I64_Invalid && "Expected a valid predicate");
288 llvm_unreachable("Expected Imm or CImm operand");
304 "Expected G_CONSTANT");
305 assert(Predicate > GIPFP_APInt_Invalid && "Expected a valid predicate")
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/tests/
FuzzerUnittest.cpp 53 Unit Expected[] = {
98 for (const Unit &U : Expected)
779 Vec Res, Expected;
784 Expected = {{108, 1}, {109, 2}, {118, 3}, {120, 4},
786 EXPECT_EQ(Res, Expected);
790 Expected = { {109, 2}, {118, 3}, {120, 4},
792 EXPECT_EQ(Res, Expected);
796 Expected = { {109, 2}, {118, 3}, {120, 4},
798 EXPECT_EQ(Res, Expected);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/AsmParser/
AVRAsmParser.cpp 716 MatchClassKind Expected = static_cast<MatchClassKind>(ExpectedKind);
728 if (validateOperandClass(Op, Expected) == Match_Success) {
739 if (isSubclass(Expected, MCK_DREGS)) {
744 return validateOperandClass(Op, Expected);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGAtomic.cpp 217 /// \param Expected Expected value.
225 EmitAtomicCompareExchange(RValue Expected, RValue Desired,
322 /// Does a store of the given IR type modify the full expected width?
373 llvm::Value *Expected = CGF.Builder.CreateLoad(Val1);
377 Ptr.getPointer(), Expected, Desired, SuccessOrder, FailureOrder,
397 // Update Expected if Expected isn't equal to Old, otherwise branch to the
402 // Update the memory at Expected with Old's value.
1072 // bool __atomic_compare_exchange(size_t size, void *mem, void *expected,
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
ASTUnit.cpp 2073 CanQualType Expected
2076 SimplifiedTypeClass ExpectedSTC = getSimplifiedTypeClass(Expected);
2082 = CachedCompletionTypes.find(QualType(Expected).getAsString());
  /src/external/bsd/ntp/dist/parseutil/
dcfd.c 1306 time_t Expected;
1330 Expected = t * 24 * 60 * 60;
1331 if ( Observed != Expected || Flag )
1336 (unsigned long)Observed, (unsigned long)Expected,
1337 ((long)Observed - (long)Expected) );
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Clang.cpp 1073 assert(A && "Expected non-nullptr argument.");
4195 // include as part of the module. All other jobs are expected to have exactly
4227 types::ID Expected = HeaderModuleInput.getType();
4228 if (I.getType() != Expected) {
4231 << types::getTypeName(Expected);
4298 assert(CTC && "Expected valid CUDA Toolchain.");
7567 // The version with only one output is expected to refer to a bundling job.
7600 assert(CurTC == nullptr && "Expected one dependence!");
7631 assert(CurTC == nullptr && "Expected one dependence!");
7650 // The version with multiple outputs is expected to refer to a unbundling job
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDecl.cpp 449 // will produce the ambiguity, or will complain that it expected
1367 "expected to be initializing a template parameter scope");
4844 assert(PrevDecl && "Expected a non-null Decl");
5212 assert(DS.getAttributes().empty() && "No attribute expected");
5279 assert(Record && "expected a record!");
11180 QualType Expected[] = { Context.IntTy, CharPP, CharPP, CharPP };
11187 if (Context.hasSameUnqualifiedType(AT, Expected[i]))
11189 else if (Expected[i] == CharPP) {
11207 Diag(FD->getLocation(), diag::err_main_arg_wrong) << i << Expected[i];
11208 // TODO: suggest replacing given type with expected typ
    [all...]

Completed in 48 milliseconds