Home
last modified time | relevance | path

Searched refs:final (Results 1 – 25 of 869) sorted by relevance

12345678910>>...35

/freebsd-14.2/sys/contrib/libsodium/test/default/
H A DMakefile.am160 auth.final \
161 auth2.final \
162 auth3.final \
166 box.final \
167 box2.final \
168 box7.final \
169 box8.final \
187 hash.final \
190 kdf.final \
192 kx.final \
[all …]
/freebsd-14.2/lib/libcrypt/
H A Dcrypt-md5.c52 u_char final[MD5_SIZE]; in crypt_md5() local
83 MD5Final(final, &ctx1); in crypt_md5()
89 explicit_bzero(final, sizeof(final)); in crypt_md5()
103 MD5Final(final, &ctx); in crypt_md5()
130 l = (final[ 0]<<16) | (final[ 6]<<8) | final[12]; in crypt_md5()
132 l = (final[ 1]<<16) | (final[ 7]<<8) | final[13]; in crypt_md5()
134 l = (final[ 2]<<16) | (final[ 8]<<8) | final[14]; in crypt_md5()
136 l = (final[ 3]<<16) | (final[ 9]<<8) | final[15]; in crypt_md5()
138 l = (final[ 4]<<16) | (final[10]<<8) | final[ 5]; in crypt_md5()
140 l = final[11]; in crypt_md5()
[all …]
/freebsd-14.2/sys/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/
H A Dsend-c_incremental.ksh38 typeset final dstlist list vol
58 final=$(getds_with_suffix $POOL2 @final)
59 list="$final $(getds_with_suffix $POOL2 @snapA)"
67 dstlist=$(getds_with_suffix $POOL2 @final)
68 [[ $final != $dstlist ]] && log_fail "$final != $dstlist"
74 final=$(getds_with_suffix $vol @final)
79 dstlist=$(getds_with_suffix $POOL2/$FS/vol @final)
80 [[ $final != $dstlist ]] && log_fail "$final != $dstlist"
86 final=$(getds_with_suffix $POOL2/$FS @final)
95 dstlist=$(getds_with_suffix $POOL2/$FS @final)
[all …]
H A Drsend_004_pos.ksh61 srclist=$(getds_with_suffix $POOL2 @final)
72 dstlist=$(getds_with_suffix $POOL2 @final)
86 srclist=$(getds_with_suffix $dstds/$FS @final)
94 zfs receive -F -d $dstds/$FS < $BACKDIR/fs-init-final-iR
97 dstlist=$(getds_with_suffix $dstds/$FS @final)
107 srclist=$(getds_with_suffix $POOL2/$FS/vol @final)
113 dstlist=$(getds_with_suffix $POOL2/$FS/vol @final)
H A Drsend_002_pos.ksh62 log_must destroy_tree $POOL2@final $POOL2@snapC $POOL2@snapA
74 log_must destroy_tree $dstds/$FS@final $dstds/$FS@snapC $dstds/$FS@snapB
86 log_must destroy_tree $dataset@final $dataset@snapC \
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Tooling/Syntax/
H A DNodes.h116 class NestedNameSpecifier final : public List {
127 class UnqualifiedId final : public Tree {
146 class CallArguments final : public List {
231 class EmptyStatement final : public Statement {
247 class CaseStatement final : public Statement {
267 class IfStatement final : public Statement {
278 class ForStatement final : public Statement {
287 class WhileStatement final : public Statement {
393 class DeclaratorList final : public List {
515 class ArraySubscript final : public Tree {
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Basic/Targets/
H A DWebAssembly.h104 bool hasFeature(StringRef Feature) const final;
107 bool Enabled) const final;
110 DiagnosticsEngine &Diags) final;
112 bool isValidCPUName(StringRef Name) const final;
113 void fillValidCPUList(SmallVectorImpl<StringRef> &Values) const final;
117 ArrayRef<Builtin::Info> getTargetBuiltins() const final;
119 BuiltinVaListKind getBuiltinVaListKind() const final { in getBuiltinVaListKind()
125 ArrayRef<TargetInfo::GCCRegAlias> getGCCRegAliases() const final { in getGCCRegAliases()
134 std::string_view getClobbers() const final { return ""; } in getClobbers()
136 bool isCLZForZeroUndef() const final { return false; } in isCLZForZeroUndef()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZRegisterInfo.h84 int getReturnFunctionAddressRegister() final { return SystemZ::R7D; }; in getReturnFunctionAddressRegister()
86 int getStackPointerRegister() final { return SystemZ::R4D; }; in getStackPointerRegister()
88 int getFramePointerRegister() final { return SystemZ::R8D; }; in getFramePointerRegister()
97 CallingConv::ID CC) const final;
99 int getCallFrameSize() final { return 128; } in getCallFrameSize()
101 int getStackPointerBias() final { return 2048; } in getStackPointerBias()
113 int getStackPointerRegister() final { return SystemZ::R15D; }; in getStackPointerRegister()
115 int getFramePointerRegister() final { return SystemZ::R11D; }; in getFramePointerRegister()
120 CallingConv::ID CC) const final;
122 int getCallFrameSize() final { return SystemZMC::ELFCallFrameSize; } in getCallFrameSize()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DBLAKE3.h59 void final(BLAKE3Result<NumBytes> &Result) { in final() function
67 BLAKE3Result<NumBytes> final() { in final() function
81 return final<NumBytes>(); in result()
89 return Hasher.final<NumBytes>(); in hash()
106 void final(BLAKE3Result<NumBytes> &Result) { return BLAKE3::final(Result); } in final() function
111 BLAKE3Result<NumBytes> final() { return BLAKE3::final<NumBytes>(); } in final() function
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDomPrinter.h77 struct DomViewer final : DOTGraphTraitsViewer<DominatorTreeAnalysis, false> {
81 struct DomOnlyViewer final : DOTGraphTraitsViewer<DominatorTreeAnalysis, true> {
86 struct PostDomViewer final
92 struct PostDomOnlyViewer final
98 struct DomPrinter final : DOTGraphTraitsPrinter<DominatorTreeAnalysis, false> {
102 struct DomOnlyPrinter final
108 struct PostDomPrinter final
114 struct PostDomOnlyPrinter final
H A DDDG.h351 DDGNode &createRootNode() final { in createRootNode()
357 DDGNode &createFineGrainedNode(Instruction &I) final { in createFineGrainedNode()
363 DDGNode &createPiBlock(const NodeListType &L) final { in createPiBlock()
369 DDGEdge &createDefUseEdge(DDGNode &Src, DDGNode &Tgt) final { in createDefUseEdge()
375 DDGEdge &createMemoryEdge(DDGNode &Src, DDGNode &Tgt) final { in createMemoryEdge()
381 DDGEdge &createRootedEdge(DDGNode &Src, DDGNode &Tgt) final { in createRootedEdge()
389 const NodeListType &getNodesInPiBlock(const DDGNode &N) final { in getNodesInPiBlock()
397 bool areNodesMergeable(const DDGNode &Src, const DDGNode &Tgt) const final;
398 void mergeNodes(DDGNode &Src, DDGNode &Tgt) final;
399 bool shouldSimplify() const final;
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Interpreter/
H A DIncrementalParser.cpp34 class IncrementalASTConsumer final : public ASTConsumer {
42 bool HandleTopLevelDecl(DeclGroupRef DGR) override final { in HandleTopLevelDecl()
55 void HandleTranslationUnit(ASTContext &Ctx) override final { in HandleTranslationUnit()
61 void HandleInterestingDecl(DeclGroupRef D) override final { in HandleInterestingDecl()
64 void HandleTagDeclDefinition(TagDecl *D) override final { in HandleTagDeclDefinition()
76 void HandleImplicitImportDecl(ImportDecl *D) override final { in HandleImplicitImportDecl()
79 void CompleteTentativeDefinition(VarDecl *D) override final { in CompleteTentativeDefinition()
82 void CompleteExternalDeclaration(VarDecl *D) override final { in CompleteExternalDeclaration()
91 void HandleVTable(CXXRecordDecl *RD) override final { in HandleVTable()
100 void PrintStats() override final { Consumer->PrintStats(); } in PrintStats()
[all …]
/freebsd-14.2/lib/libiconv_modules/ISO2022/
H A Dcitrus_iso2022.c83 unsigned char final; member
273 (ei->recommend[i] + (ei->recommendsize[i] - 1))->final = cs.final; in get_recommend()
296 ei->initg[token[4] - '0'].final = cs.final; in get_initg()
439 if (ei->initg[i].final) { in _citrus_ISO2022_init_state()
441 s->g[i].final = ei->initg[i].final; in _citrus_ISO2022_init_state()
641 psenc->g[i].final = '\0'; in _ISO2022_sgetwchar()
969 if (cs->final != recommend[j].final) in recommendation()
984 if (cs->final && (cs->final != recommend[j].final)) in recommendation()
1052 psenc->g[target].final == cs.final && in _ISO2022_sputwchar()
1068 *p++ = cs.final; in _ISO2022_sputwchar()
[all …]
/freebsd-14.2/tests/sys/cddl/zfs/tests/rsend/
H A Drsend_004_pos.ksh73 srclist=$(getds_with_suffix $POOL2 @final)
84 dstlist=$(getds_with_suffix $POOL2 @final)
98 srclist=$(getds_with_suffix $dstds/$FS @final)
106 $ZFS receive -F -d $dstds/$FS < $BACKDIR/fs-init-final-iR
109 dstlist=$(getds_with_suffix $dstds/$FS @final)
119 srclist=$(getds_with_suffix $POOL2/$FS/vol @final)
125 dstlist=$(getds_with_suffix $POOL2/$FS/vol @final)
H A Drsend_002_pos.ksh74 log_must destroy_tree $POOL2@final $POOL2@snapC $POOL2@snapA
86 log_must destroy_tree $dstds/$FS@final $dstds/$FS@snapC $dstds/$FS@snapB
98 log_must destroy_tree $dataset@final $dataset@snapC \
/freebsd-14.2/contrib/llvm-project/lld/MachO/
H A DSyntheticSections.h71 bool isHidden() const final { return true; } in isHidden()
85 class MachHeaderSection final : public SyntheticSection {
101 class PageZeroSection final : public SyntheticSection {
155 class RebaseSection final : public LinkEditSection {
184 class BindingSection final : public LinkEditSection {
212 class WeakBindingSection final : public LinkEditSection {
279 class StubsSection final : public SyntheticSection {
305 class StubHelperSection final : public SyntheticSection {
324 class ObjCStubsSection final : public SyntheticSection {
376 class ExportSection final : public LinkEditSection {
[all …]
/freebsd-14.2/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.h46 class EhFrameSection final : public SyntheticSection {
100 class GotSection final : public SyntheticSection {
140 class GnuPropertySection final : public SyntheticSection {
167 class BssSection final : public SyntheticSection {
178 class MipsGotSection final : public SyntheticSection {
355 class GotPltSection final : public SyntheticSection {
375 class IgotPltSection final : public SyntheticSection {
750 class IpltSection final : public SyntheticSection {
791 class GdbIndexSection final : public SyntheticSection {
860 class EhFrameHeader final : public SyntheticSection {
[all …]
/freebsd-14.2/sys/crypto/siphash/
H A Dsiphash.c53 static void SipRounds(SIPHASH_CTX *ctx, int final);
92 SipBuf(SIPHASH_CTX *ctx, const uint8_t **src, size_t len, int final) in SipBuf() argument
96 KASSERT((!final && len > 0) || (final && len == 0), in SipBuf()
99 if (!final) { in SipBuf()
107 if (ctx->buflen == 8 || final) { in SipBuf()
211 SipRounds(SIPHASH_CTX *ctx, int final) in SipRounds() argument
215 if (!final) in SipRounds()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowAnalysis.h92 ASTContext &getASTContext() final { return Context; } in getASTContext()
94 TypeErasedLattice typeErasedInitialElement() final { in typeErasedInitialElement()
99 const TypeErasedLattice &E2) final { in joinTypeErased()
108 const TypeErasedLattice &Previous) final { in widenTypeErased()
115 const TypeErasedLattice &E2) final { in isEqualTypeErased()
122 Environment &Env) final { in transferTypeErased()
128 TypeErasedLattice &E, Environment &Env) final { in transferBranchTypeErased()
H A DValue.h118 class TopBoolValue final : public BoolValue {
135 class AtomicBoolValue final : public BoolValue {
149 class FormulaBoolValue final : public BoolValue {
172 class PointerValue final : public Value {
210 class RecordValue final : public Value {
/freebsd-14.2/usr.sbin/ip6addrctl/
H A Dip6addrctl.c331 int masklen, final = 0; in mask2plen() local
337 if (final && *p) { in mask2plen()
347 final++; in mask2plen()
351 final++; in mask2plen()
355 final++; in mask2plen()
359 final++; in mask2plen()
363 final++; in mask2plen()
367 final++; in mask2plen()
371 final++; in mask2plen()
374 final++; in mask2plen()
/freebsd-14.2/contrib/tcsh/nls/spanish/
H A Dset39 7 Convertir en mayúsculas los caracteres desde el cursor hasta el final de la palabra
11 9 Vi: cambia hasta el final de la línea
24 22 Corta del cursor al final de la palabra - se guarda en el buffer
27 25 Ir al final de la línea de historia
30 28 Mover el cursor hasta el final de línea
37 35 Avanza hasta el final de la palabra
45 43 Corta hasta el final de la línea y guarda la información en el buffer
85 83 Vi: entrar en modo de inserción al final de la línea
88 86 Vi: cambiar hasta el final de la línea
93 91 Vi: ir hasta el final de la palabra delimitado por espacios
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Driver/
H A DOffloadBundler.cpp329 ~BinaryFileHandler() final {} in ~BinaryFileHandler()
331 Error ReadHeader(MemoryBuffer &Input) final { in ReadHeader()
398 ReadBundleStart(MemoryBuffer &Input) final { in ReadBundleStart()
405 Error ReadBundleEnd(MemoryBuffer &Input) final { in ReadBundleEnd()
560 ~ObjectFileHandler() final {} in ~ObjectFileHandler()
565 ReadBundleStart(MemoryBuffer &Input) final { in ReadBundleStart()
617 Error finalizeOutputFile() final { in finalizeOutputFile()
706 class TextFileHandler final : public FileHandler {
723 ReadBundleStart(MemoryBuffer &Input) final { in ReadBundleStart()
898 Hash.final(Result); in compress()
[all …]
/freebsd-14.2/lib/libiscsiutil/
H A Dtext.c96 text_new_response(struct pdu *request, uint32_t ttt, bool final) in text_new_response() argument
109 if (final) in text_new_response()
290 bool final; in text_send_response() local
294 final = false; in text_send_response()
297 final = true; in text_send_response()
301 response = text_new_response(request, ttt, final); in text_send_response()
310 if (final) in text_send_response()
/freebsd-14.2/crypto/openssl/doc/man3/
H A DBIO_f_cipher.pod31 to flush and possibly pad the final block through the BIO.
37 When reading from an encryption BIO the final block is automatically
49 When encrypting BIO_flush() B<must> be called to flush the final block
50 through the BIO. If it is not then the final block will fail a subsequent
53 When decrypting an error on the final block is signaled by a zero
55 by EOF will also return zero for the final read. BIO_get_cipher_status()

12345678910>>...35