Searched refs:MD (Results 1 - 25 of 207) sorted by relevance

123456789

/macosx-10.10/OpenSSL098-52/src/test/
H A DSHAmix.x5 MD = 74d78642f70ca830bec75fc60a585917e388cfa4cd1d23daab1c4d9ff1010cac3e67275df64db5a6a7c7d0fda24f1fc3eb272678a7c8becff6743ee812129078
9 MD = 6f5589ea195e745654885d50de687d7fe682affc8da1fb09e681540525f04ecb93022361a27759b9e272c883564223c5e4ecafeb0daaf1abce6caa4bd4153379
13 MD = 66a16799d606c569d2fcd70d7d8321ec90ef61711481aaf7d747744ebfd08ec2e7aead49429af7b4ceec6d8e147ed018e034efbe07982699e818db5fc4b1d71a
17 MD = 790bc4844e9aeef8938df0ccda17890556a4151817111a526a88919cfb172f0b03c216080c1b60210eb1942097f17b6d0691bf5b018b6d959198d6a694b922c9
21 MD = a86e07bcd19080d4a83e1384bd8189f60a7dd7a6998406ade0bf03f805375bd823c7656dd51cd9d63e542f8ade41f16d73794d60d0906424133778156ee54b95
25 MD = be3cfa6c965b2ee4e6fb0236665b0b95f66c8da8b338375b7393672283b0e50b96112d7cb76fffaa6db8ea4a7687fc6234dc1ee52e764d69ba8ac40c0f51beba
31 MD = 87bea682792f6bb4977fe1b92e0cc7017413dd263732c3604f0ebd63c2817ce5ddc5d78c0137f614a06e72ab1cab2f4c
35 MD = 7311a6356ab38a690c0b3a1581c3e7b6de418996c05e79849891b061c51d53dffc0fff2b8ad1c1eff165aee5ef6e18ff
39 MD = adb1778360ec659e90609e74b6af219a01a024f216b68aa944841429ed5b03b139444b8b848f73fd5f350ef02d46b6ce
43 MD
[all...]
/macosx-10.10/ruby-106/ruby/test/rdoc/
H A Dtest_rdoc_markdown.rb152 doc = parse <<-MD
158 MD
169 doc = parse <<-MD
175 MD
189 doc = parse <<-MD
195 MD
206 doc = parse <<-MD
222 MD
236 doc = parse <<-MD
241 MD
[all...]
/macosx-10.10/OpenSSL098-52/src/shlib/
H A Dwin32dll.bat8 cl /Felibeay32.dll /GD /MD /LD -DWIN32 %OPTIONS% ms\libeay32.def crypto\crypto.c crypto\bf\asm\b-win32.obj crypto\des\asm\c-win32.obj crypto\des\asm\d-win32.obj crypto\bn\asm\x86nt32.obj user32.lib gdi32.lib wsock32.lib
10 cl /Fessleay32.dll /GD /MD /LD -DWIN32 %OPTIONS% ms\ssleay32.def ssl\ssl.c libeay32.lib
12 cl /Fessleay.exe /MD -DWIN32 %OPTIONS% apps\eay.c ssleay32.lib libeay32.lib user32.lib wsock32.lib
/macosx-10.10/llvmCore-3425.0.34/lib/VMCore/
H A DIntrinsicInst.cpp57 if (MDNode* MD = cast_or_null<MDNode>(getArgOperand(0)))
58 return MD->getOperand(0);
/macosx-10.10/OpenSSL098-52/src/crypto/rand/
H A Drand_lcl.h139 #define MD(a,b,c) EVP_Digest(a,b,c,NULL,EVP_md5(), NULL) macro
144 #define MD(a,b,c) EVP_Digest(a,b,c,NULL,EVP_sha1(), NULL) macro
149 #define MD(a,b,c) EVP_Digest(a,b,c,NULL,EVP_mdc2(), NULL) macro
154 #define MD(a,b,c) EVP_Digest(a,b,c,NULL,EVP_md2(), NULL) macro
/macosx-10.10/llvmCore-3425.0.34/lib/Bitcode/Writer/
H A DValueEnumerator.cpp81 if (MDNode *MD = dyn_cast<MDNode>(*OI))
82 if (MD->isFunctionLocal() && MD->getFunction())
222 void ValueEnumerator::EnumerateNamedMDNode(const NamedMDNode *MD) { argument
223 for (unsigned i = 0, e = MD->getNumOperands(); i != e; ++i)
224 EnumerateMetadata(MD->getOperand(i));
241 void ValueEnumerator::EnumerateMetadata(const Value *MD) { argument
242 assert((isa<MDNode>(MD) || isa<MDString>(MD)) && "Invalid metadata kind");
245 EnumerateType(MD
[all...]
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/
H A Dgenzone.sh60 ; md01 MD madname
61 ; MD .
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/Utils/
H A DValueMapper.cpp53 if (const MDNode *MD = dyn_cast<MDNode>(V)) {
56 if (!MD->isFunctionLocal() && (Flags & RF_NoModuleLevelChanges))
64 for (unsigned i = 0, e = MD->getNumOperands(); i != e; ++i) {
65 Value *OP = MD->getOperand(i);
70 Elts.reserve(MD->getNumOperands());
72 Value *Op = MD->getOperand(i);
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp47 MemoryDependenceAnalysis *MD; member in struct:__anon10639::DSE
52 DSE() : FunctionPass(ID), AA(0), MD(0), DT(0) {
58 MD = &getAnalysis<MemoryDependenceAnalysis>();
69 AA = 0; MD = 0; DT = 0;
111 MemoryDependenceAnalysis &MD,
127 MD.removeInstruction(DeadInst);
508 MemDepResult InstDep = MD->getDependency(Inst);
528 DeleteDeadInstruction(SI, *MD, TLI);
575 DeleteDeadInstruction(DepWrite, *MD, TLI);
627 InstDep = MD
110 DeleteDeadInstruction(Instruction *I, MemoryDependenceAnalysis &MD, const TargetLibraryInfo *TLI, SmallSetVector<Value*, 16> *ValueSet = 0) argument
[all...]
H A DMemCpyOptimizer.cpp303 MemoryDependenceAnalysis *MD; member in class:__anon10672::MemCpyOpt
310 MD = 0;
471 MD->removeInstruction(*SI);
492 MemDepResult ldep = MD->getDependency(LI);
525 MD->removeInstruction(SI);
527 MD->removeInstruction(LI);
717 MD->removeInstruction(C);
720 MD->removeInstruction(cpy);
767 MD->getPointerDependencyFrom(AA.getLocationForSource(MDep),
797 MD
[all...]
/macosx-10.10/Chess-310.6/sjeng/
H A Ddepcomp68 ## it if -MD -MP comes after the -MF stuff. Hmm.
69 "$@" -MT "$object" -MD -MP -MF "$tmpdepfile"
82 ## - Don't want to use -MD because we'd like the dependencies to end
90 gccflag=-MD,
210 # The Tru64 compiler uses -MD to generate dependencies as a side
211 # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.
222 "$@" -Wc,-MD
226 "$@" -MD
/macosx-10.10/bootstrap_cmds-91/migcom.tproj/
H A Dmig.sh115 -MD ) sawMD=1; cppflags=( "${cppflags[@]}" "$1"); shift;;
141 -MD ) echo "warning: option \"$1\" after filename(s) ignored"; shift; continue;;
/macosx-10.10/gnudiff-19/diffutils/config/
H A Ddepcomp68 ## it if -MD -MP comes after the -MF stuff. Hmm.
69 "$@" -MT "$object" -MD -MP -MF "$tmpdepfile"
82 ## - Don't want to use -MD because we'd like the dependencies to end
90 gccflag=-MD,
210 # The Tru64 AIX compiler uses -MD to generate dependencies as a side
211 # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.
220 "$@" -Wc,-MD
222 "$@" -MD
/macosx-10.10/llvmCore-3425.0.34/include/llvm/CodeGen/
H A DGCMetadata.h77 GCRoot(int N, const Constant *MD) : Num(N), StackOffset(-1), Metadata(MD) {} argument
/macosx-10.10/passwordserver_sasl-193/cyrus_sasl/config/
H A Ddepcomp68 ## it if -MD -MP comes after the -MF stuff. Hmm.
69 "$@" -MT "$object" -MD -MP -MF "$tmpdepfile"
82 ## - Don't want to use -MD because we'd like the dependencies to end
90 gccflag=-MD,
210 # The Tru64 compiler uses -MD to generate dependencies as a side
211 # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.
222 "$@" -Wc,-MD
226 "$@" -MD
/macosx-10.10/passwordserver_sasl-193/cyrus_sasl/saslauthd/config/
H A Ddepcomp68 ## it if -MD -MP comes after the -MF stuff. Hmm.
69 "$@" -MT "$object" -MD -MP -MF "$tmpdepfile"
82 ## - Don't want to use -MD because we'd like the dependencies to end
90 gccflag=-MD,
210 # The Tru64 compiler uses -MD to generate dependencies as a side
211 # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.
222 "$@" -Wc,-MD
226 "$@" -MD
/macosx-10.10/srm-7/srm/
H A Ddepcomp68 ## it if -MD -MP comes after the -MF stuff. Hmm.
69 "$@" -MT "$object" -MD -MP -MF "$tmpdepfile"
82 ## - Don't want to use -MD because we'd like the dependencies to end
90 gccflag=-MD,
210 # The Tru64 compiler uses -MD to generate dependencies as a side
211 # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.
222 "$@" -Wc,-MD
226 "$@" -MD
/macosx-10.10/uucp-11/uucp/
H A Ddepcomp59 ## it if -MD -MP comes after the -MF stuff. Hmm.
60 "$@" -MT "$object" -MD -MP -MF "$tmpdepfile"
73 ## - Don't want to use -MD because we'd like the dependencies to end
81 gccflag=-MD,
201 # The Tru64 AIX compiler uses -MD to generate dependencies as a side
202 # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.
210 "$@" -Wc,-MD
212 "$@" -MD
/macosx-10.10/Heimdal-398.1.2/
H A Ddepcomp101 ## it if -MD -MP comes after the -MF stuff. Hmm.
109 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
128 ## - Don't want to use -MD because we'd like the dependencies to end
136 gccflag=-MD,
268 # Intel's C compiler understands `-MD -MF file'. However on
269 # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c
285 "$@" -MD -MF "$tmpdepfile"
351 # The Tru64 compiler uses -MD to generate dependencies as a side
352 # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.
378 "$@" -Wc,-MD
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/libedit/
H A Ddepcomp101 ## it if -MD -MP comes after the -MF stuff. Hmm.
109 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
128 ## - Don't want to use -MD because we'd like the dependencies to end
136 gccflag=-MD,
268 # Intel's C compiler understands `-MD -MF file'. However on
269 # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c
285 "$@" -MD -MF "$tmpdepfile"
351 # The Tru64 compiler uses -MD to generate dependencies as a side
352 # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.
378 "$@" -Wc,-MD
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/contrib/ldapc++/
H A Ddepcomp93 ## it if -MD -MP comes after the -MF stuff. Hmm.
94 "$@" -MT "$object" -MD -MP -MF "$tmpdepfile"
107 ## - Don't want to use -MD because we'd like the dependencies to end
115 gccflag=-MD,
242 # Intel's C compiler understands `-MD -MF file'. However on
243 # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c
259 "$@" -MD -MF "$tmpdepfile"
280 # The Tru64 compiler uses -MD to generate dependencies as a side
281 # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.
307 "$@" -Wc,-MD
[all...]
/macosx-10.10/OpenPAM-20/openpam/
H A Ddepcomp93 ## it if -MD -MP comes after the -MF stuff. Hmm.
94 "$@" -MT "$object" -MD -MP -MF "$tmpdepfile"
107 ## - Don't want to use -MD because we'd like the dependencies to end
115 gccflag=-MD,
242 # Intel's C compiler understands `-MD -MF file'. However on
243 # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c
259 "$@" -MD -MF "$tmpdepfile"
280 # The Tru64 compiler uses -MD to generate dependencies as a side
281 # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.
307 "$@" -Wc,-MD
[all...]
/macosx-10.10/SmartcardCCID-55008/libusb/libusb/
H A Ddepcomp101 ## it if -MD -MP comes after the -MF stuff. Hmm.
109 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
128 ## - Don't want to use -MD because we'd like the dependencies to end
136 gccflag=-MD,
268 # Intel's C compiler understands `-MD -MF file'. However on
269 # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c
285 "$@" -MD -MF "$tmpdepfile"
351 # The Tru64 compiler uses -MD to generate dependencies as a side
352 # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.
378 "$@" -Wc,-MD
[all...]
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/admin/
H A Ddepcomp101 ## it if -MD -MP comes after the -MF stuff. Hmm.
109 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
128 ## - Don't want to use -MD because we'd like the dependencies to end
136 gccflag=-MD,
268 # Intel's C compiler understands `-MD -MF file'. However on
269 # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c
285 "$@" -MD -MF "$tmpdepfile"
351 # The Tru64 compiler uses -MD to generate dependencies as a side
352 # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.
378 "$@" -Wc,-MD
[all...]
/macosx-10.10/file-46/file/
H A Ddepcomp94 ## it if -MD -MP comes after the -MF stuff. Hmm.
102 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
121 ## - Don't want to use -MD because we'd like the dependencies to end
129 gccflag=-MD,
256 # Intel's C compiler understands `-MD -MF file'. However on
257 # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c
273 "$@" -MD -MF "$tmpdepfile"
334 # The Tru64 compiler uses -MD to generate dependencies as a side
335 # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.
361 "$@" -Wc,-MD
[all...]

Completed in 498 milliseconds

123456789