Searched refs:Final (Results 1 - 25 of 27) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A Dilist_base.h43 node_base_type *Final = Last.getPrev(); local
49 Final->setNext(nullptr);
62 node_base_type &Final = *Last.getPrev(); local
68 // Splice [First, Final] into its new list/position.
70 Final.setNext(&Next);
73 Next.setPrev(&Final);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DInMemoryModuleCache.cpp20 return Final;
52 return getPCMState(Filename) == Final;
/freebsd-11-stable/sys/opencrypto/
H A Dxform_auth.h63 void (*Final) (u_int8_t *, void *); member in struct:auth_hash
H A Dcryptosoft.c361 * adding the key to sw_ictx and abusing Final() to get the
372 axf->Final(buf, sw->sw_ictx);
418 axf->Final(aalg, &ctx);
421 axf->Final(aalg, &ctx);
434 * and let Final() do the proper, natural "algofill"
438 axf->Final(aalg, &ctx);
442 axf->Final(aalg, &ctx);
594 axf->Final(aalg, &ctx);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DInMemoryModuleCache.h55 /// 4. Final: indicating that the current PCM was either built in this
57 enum State { Unknown, Tentative, ToBuild, Final }; enumerator in enum:clang::InMemoryModuleCache::State
78 /// Try to remove a buffer from the cache. No effect if state is Final.
80 /// \pre state is Tentative/Final.
81 /// \post Tentative => ToBuild or Final => Final.
87 /// \pre state is Tentative or Final.
88 /// \post state is Final.
96 /// \return true iff state is Final.
/freebsd-11-stable/sys/dev/glxsb/
H A Dglxsb_hash.c96 axf->Final(hash, &ctx);
100 axf->Final(hash, &ctx);
/freebsd-11-stable/contrib/xz/src/liblzma/check/
H A Dcheck.h167 LZMA_SHA256FUNC(Final)(check->buffer.u8, &check->state.sha256);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.h210 bool resolve(const ForeachLoop &Loop, SubstStack &Stack, bool Final,
213 bool Final, std::vector<RecordsEntry> *Dest,
H A DTGParser.cpp372 bool Final, std::vector<RecordsEntry> *Dest,
380 if (!Final) {
383 return resolve(Loop.Entries, Substs, Final, &Dest->back().Loop->Entries,
396 Error = resolve(Loop.Entries, Substs, Final, Dest);
411 SubstStack &Substs, bool Final,
416 Error = resolve(*E.Loop, Substs, Final, Dest);
371 resolve(const ForeachLoop &Loop, SubstStack &Substs, bool Final, std::vector<RecordsEntry> *Dest, SMLoc *Loc) argument
410 resolve(const std::vector<RecordsEntry> &Source, SubstStack &Substs, bool Final, std::vector<RecordsEntry> *Dest, SMLoc *Loc) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopRerollPass.cpp413 const SmallInstructionSet &Final,
417 const SmallInstructionSet &Final,
686 const SmallInstructionSet &Final,
694 if (!Final.count(I))
713 !Final.count(Op))
724 const SmallInstructionSet &Final,
727 collectInLoopUserSet(Root, Exclude, Final, Users);
684 collectInLoopUserSet( Instruction *Root, const SmallInstructionSet &Exclude, const SmallInstructionSet &Final, DenseSet<Instruction *> &Users) argument
721 collectInLoopUserSet( const SmallInstructionVector &Roots, const SmallInstructionSet &Exclude, const SmallInstructionSet &Final, DenseSet<Instruction *> &Users) argument
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DScopeInfo.h481 void setCoroutineSuspends(Stmt *Initial, Stmt *Final) { argument
482 assert(Initial && Final && "suspend points cannot be null");
486 CoroutineSuspends.second = Final;
/freebsd-11-stable/sys/crypto/via/
H A Dpadlock_hash.c299 axf->Final(hash, &ctx);
303 axf->Final(hash, &ctx);
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCoroutine.cpp26 enum class AwaitKind { Init, Normal, Yield, Final };
116 case AwaitKind::Final:
211 const bool IsFinalSuspend = (Kind == AwaitKind::Final);
677 CurCoro.Data->CurrentAwaitKind = AwaitKind::Final;
H A DCGOpenMPRuntime.h105 llvm::PointerIntPair<llvm::Value *, 1, bool> Final; member in struct:clang::CodeGen::final
H A DCGStmtOpenMP.cpp1944 // <Final counter/linear vars updates>;
3123 Data.Final.setInt(CondConstant);
3125 Data.Final.setPointer(EvaluateExprAsBool(Cond));
3128 Data.Final.setInt(/*IntVal=*/false);
3408 Data.Final.setInt(/*IntVal=*/false);
5255 // <Final counter/linear vars updates>;
/freebsd-11-stable/crypto/openssl/util/
H A Dmkdef.pl975 $a .= ",RSA" if($s =~ /EVP_(Open|Seal)(Final|Init)/);
976 $a .= ",RSA" if($s =~ /PEM_Seal(Final|Init|Update)/);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DMetadataLoader.cpp126 SmallDenseMap<MDString *, DICompositeType *, 1> Final; member in struct:__anon1670::BitcodeReaderMetadataList::__anon1671
267 OldTypeRefs.Final.insert(Ref);
280 if (DICompositeType *CT = OldTypeRefs.Final.lookup(Ref.first))
312 OldTypeRefs.Final.insert(std::make_pair(&UUID, &CT));
320 if (auto *CT = OldTypeRefs.Final.lookup(UUID))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DYAMLParser.cpp900 auto Final = skip_while(Func, Current); local
901 Column += Final - Current;
902 Current = Final;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafety.cpp2515 CFGBlockInfo *Final = &BlockInfo[CFGraph->getExit().getBlockID()];
2518 if (!Final->Reachable)
2538 intersectAndWarn(ExpectedExitSet, Final->ExitSet,
2539 Final->ExitLoc,
/freebsd-11-stable/contrib/ntp/
H A Dconfigure19341 /* Final pthreads */
19424 /* Final pthreads */
19527 /* Final pthreads */
19610 /* Final pthreads */
19718 /* Final pthreads */
19801 /* Final pthreads */
19909 /* Final pthreads */
19992 /* Final pthreads */
20100 /* Final pthreads */
20183 /* Final pthread
[all...]
/freebsd-11-stable/contrib/ntp/sntp/
H A Dconfigure10015 /* Final pthreads */
10098 /* Final pthreads */
10201 /* Final pthreads */
10284 /* Final pthreads */
10392 /* Final pthreads */
10475 /* Final pthreads */
10583 /* Final pthreads */
10666 /* Final pthreads */
10774 /* Final pthreads */
10857 /* Final pthread
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h1894 void setFinal(bool Final) { IsFinal = Final; } argument
/freebsd-11-stable/sys/dev/cxgbe/crypto/
H A Dt4_crypto.c1518 axf->Final(digest, auth_ctx);
1756 axf->Final(s->hmac.ipad, &auth_ctx);
/freebsd-11-stable/contrib/gcc/config/arm/
H A Dieee754-sf.S192 @ Final result with sign
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp5654 /// Final condition for the non-rectangular loop nest support. It is used to
7888 ExprResult Final =
7892 if (!Final.isUsable()) {
7897 if (!Update.isUsable() || !Final.isUsable()) {
7906 Built.Finals[Cnt] = Final.get();
14576 ExprResult Final;
14578 Final =
14583 Final = *CurPrivate;
14584 Final = SemaRef.ActOnFinishFullExpr(Final
[all...]

Completed in 754 milliseconds

12