Home
last modified time | relevance | path

Searched refs:MDC (Results 1 – 25 of 47) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/DependencyScanning/
H A DModuleDepCollector.cpp111 if (MDC.ContextHash.empty()) { in FileChanged()
112 MDC.ContextHash = Instance.getInvocation().getModuleHash(); in FileChanged()
113 MDC.Consumer.handleContextHash(MDC.ContextHash); in FileChanged()
123 MDC.FileDeps.push_back( in FileChanged()
135 MDC.FileDeps.push_back(std::string(FileName)); in InclusionDirective()
156 MDC.MainFile = std::string( in EndOfMainFile()
162 for (auto &&I : MDC.ModularDeps) in EndOfMainFile()
163 MDC.Consumer.handleModuleDependency(I.second); in EndOfMainFile()
165 for (auto &&I : MDC.FileDeps) in EndOfMainFile()
166 MDC.Consumer.handleFileDependency(*MDC.Opts, I); in EndOfMainFile()
[all …]
/netbsd-src/sys/dev/mii/
H A Dmii_bitbang.c56 #define MDC ops->mbo_bits[MII_BIT_MDC] macro
75 WRITE(v | MDC); in mii_bitbang_sync()
101 WRITE(v | MDC); in mii_bitbang_sendbits()
129 WRITE(MDIRHOST | MDC); in mii_bitbang_readreg()
136 WRITE(MDIRHOST | MDC); in mii_bitbang_readreg()
145 WRITE(MDIRHOST | MDC); in mii_bitbang_readreg()
/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/
H A DEVP_mdc2.pod6 - MDC-2 For EVP
16 MDC-2 (Modification Detection Code 2 or Meyer-Schilling) is a cryptographic
23 The MDC-2DES algorithm of using MDC-2 with the DES block cipher. It produces a
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/
H A DEVP_mdc2.pod6 - MDC-2 For EVP
16 MDC-2 (Modification Detection Code 2 or Meyer-Schilling) is a cryptographic
24 The MDC-2DES algorithm of using MDC-2 with the DES block cipher. It produces a
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/DependencyScanning/
H A DModuleDepCollector.h119 ModuleDepCollectorPP(CompilerInstance &I, ModuleDepCollector &MDC) in ModuleDepCollectorPP() argument
120 : Instance(I), MDC(MDC) {} in ModuleDepCollectorPP()
140 ModuleDepCollector &MDC; variable
/netbsd-src/crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/
H A Devppkey_rsa.txt136 # DigestInfo-wrapped MDC-2 signature
149 # Legacy OCTET STRING MDC-2 signature
162 # Legacy OCTET STRING MDC-2 signature, digest mismatch
170 # Legacy OCTET STRING MDC-2 signature, wrong input digest length
178 # Legacy OCTET STRING MDC-2 signature, wrong signature digest length
193 # Legacy OCTET STRING MDC-2 signature, wrong input and signature digest length
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/visium/
H A Dvisium.h559 MDC, enumerator
620 (REGNO) == MDC_REGNUM ? MDC : \
H A Dconstraints.md25 (define_register_constraint "c" "MDC"
H A Dpredicates.md70 ;; Return true if OP is the MDC register.
/netbsd-src/external/gpl3/gcc/dist/gcc/config/visium/
H A Dvisium.h559 MDC, enumerator
620 (REGNO) == MDC_REGNUM ? MDC : \
H A Dconstraints.md25 (define_register_constraint "c" "MDC"
H A Dpredicates.md70 ;; Return true if OP is the MDC register.
H A Dvisium.cc1983 else if (from == MDC || to == MDC || (from == FP_REGS) != (to == FP_REGS)) in visium_register_move_cost()
4261 if (regno == -1 && (rclass == MDB || rclass == MDC || rclass == FP_REGS)) in visium_secondary_reload()
4266 || (FP_REGISTER_P (regno) && (rclass == MDB || rclass == MDC))) in visium_secondary_reload()
4270 else if ((regno == R_MDB && rclass == MDC) in visium_secondary_reload()
/netbsd-src/crypto/external/bsd/netpgp/dist/tests/
H A Dcrypt.at25 …/crypto/external/bsd/netpgp-hack/lib/../dist/src/lib/reader.c:1614: Unknown, Bad hash in MDC packet
/netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
H A Dgemini-sl93512r.dts73 /* Uses MDC and MDIO */
74 gpios = <&gpio0 22 GPIO_ACTIVE_HIGH>, /* MDC */
H A Dgemini-dlink-dns-313.dts145 /* Uses MDC and MDIO */
146 gpios = <&gpio0 22 GPIO_ACTIVE_HIGH>, /* MDC */
H A Dgemini-sq201.dts58 /* Uses MDC and MDIO */
59 gpios = <&gpio0 22 GPIO_ACTIVE_HIGH>, /* MDC */
H A Dgemini-rut1xx.dts61 gpios = <&gpio0 22 GPIO_ACTIVE_HIGH>, /* MDC */
H A Dgemini-wbd111.dts73 gpios = <&gpio0 22 GPIO_ACTIVE_HIGH>, /* MDC */
H A Dgemini-wbd222.dts72 gpios = <&gpio0 22 GPIO_ACTIVE_HIGH>, /* MDC */
H A Dgemini-nas4220b.dts67 gpios = <&gpio0 22 GPIO_ACTIVE_HIGH>, /* MDC */
H A Daspeed-bmc-facebook-cloudripper.dts100 * "mdio1" is connected to the MDC/MDIO interface of the on-board
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DCompilerInstance.cpp218 std::shared_ptr<ModuleDependencyCollector> MDC) { in collectHeaderMaps() argument
222 MDC->addFile(Name); in collectHeaderMaps()
226 std::shared_ptr<ModuleDependencyCollector> MDC) { in collectIncludePCH() argument
235 MDC->addFile(PCHInclude); in collectIncludePCH()
253 MDC->addFile(Dir->path()); in collectIncludePCH()
258 std::shared_ptr<ModuleDependencyCollector> MDC) { in collectVFSEntries() argument
274 MDC->addFile(E.VPath, E.RPath); in collectVFSEntries()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDeclBase.cpp360 auto *MDC = new (Ctx) Decl::MultipleDC(); in setDeclContextsImpl() local
361 MDC->SemanticDC = SemaDC; in setDeclContextsImpl()
362 MDC->LexicalDC = LexicalDC; in setDeclContextsImpl()
363 DeclCtx = MDC; in setDeclContextsImpl()
/netbsd-src/crypto/external/bsd/netpgp/dist/ref/
H A Drfc4880.txt233 13.11. Extension of the MDC System .............................80
2808 (MDC) packet, which MUST use the two octet encoding just given to
2809 represent its tag and length field. The body of the MDC packet is
2817 of the Modification Detection Code packet. The body of the MDC
2821 Any failure of the MDC indicates that the message has been modified
2823 difference in the hash values, but also the absence of an MDC packet,
2824 or an MDC packet in any position other than the end of the plaintext.
2833 The MDC system, as packets 18 and 19 are called, were created to
2852 encryption and yet preserve deniability with the MDC system. An
2853 MDC is intentionally not a MAC. Its name was not selected by
[all …]

12