Searched refs:DP (Results 1 - 25 of 40) sorted by relevance

12

/freebsd-current/sbin/hastd/
H A Dtoken.l44 #define DP do { } while (0)
55 control { DP; return CONTROL; }
56 pidfile { DP; return PIDFILE; }
57 listen { DP; return LISTEN; }
58 replication { DP; return REPLICATION; }
59 checksum { DP; return CHECKSUM; }
60 compression { DP; return COMPRESSION; }
61 timeout { DP; return TIMEOUT; }
62 exec { DP; return EXEC; }
63 metaflush { DP; retur
[all...]
/freebsd-current/contrib/openbsm/bin/auditdistd/
H A Dtoken.l52 #define DP do { } while (0)
61 certfile { DP; return CERTFILE; }
62 directory { DP; return DIRECTORY; }
63 fingerprint { DP; return FINGERPRINT; }
64 host { DP; return HOST; }
65 keyfile { DP; return KEYFILE; }
66 listen { DP; return LISTEN; }
67 name { DP; return NAME; }
68 password { DP; return PASSWORD; }
69 pidfile { DP; retur
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Linker/
H A DLinkDiagnosticInfo.h20 void print(DiagnosticPrinter &DP) const override;
/freebsd-current/contrib/llvm-project/llvm/lib/IR/
H A DDiagnosticInfo.cpp63 void DiagnosticInfoInlineAsm::print(DiagnosticPrinter &DP) const {
64 DP << getMsgStr();
66 DP << " at line " << getLocCookie();
76 void DiagnosticInfoResourceLimit::print(DiagnosticPrinter &DP) const {
77 DP << getLocationStr() << ": " << getResourceName() << " ("
82 void DiagnosticInfoDebugMetadataVersion::print(DiagnosticPrinter &DP) const {
83 DP << "ignoring debug info with an invalid version (" << getMetadataVersion()
88 DiagnosticPrinter &DP) const {
89 DP << "ignoring invalid debug info in " << getModule().getModuleIdentifier();
92 void DiagnosticInfoSampleProfile::print(DiagnosticPrinter &DP) cons
[all...]
H A DLLVMContext.cpp271 DiagnosticPrinterRawOStream DP(errs());
273 DI.print(DP);
/freebsd-current/sys/dev/sbni/
H A Dif_sbnivar.h43 #define DP(A) A macro
45 #define DP(A) macro
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DKCFI.cpp44 void print(DiagnosticPrinter &DP) const override { DP << Msg; }
/freebsd-current/contrib/llvm-project/llvm/include/llvm/IR/
H A DDiagnosticInfo.h125 /// Print using the given \p DP a user-friendly message.
131 virtual void print(DiagnosticPrinter &DP) const = 0;
177 void print(DiagnosticPrinter &DP) const override;
205 void print(DiagnosticPrinter &DP) const override;
227 void print(DiagnosticPrinter &DP) const override;
251 void print(DiagnosticPrinter &DP) const override;
281 void print(DiagnosticPrinter &DP) const override;
386 void print(DiagnosticPrinter &DP) const override;
470 void print(DiagnosticPrinter &DP) const override;
946 void print(DiagnosticPrinter &DP) cons
[all...]
/freebsd-current/crypto/openssl/test/
H A Dkeymgmt_internal_test.c75 #define DP 6 macro
126 || !TEST_true(get_ulong_via_BN(p, &keydata[DP]))
168 0x8599, /* DP */
197 || !TEST_true(BN_set_word(bn1, expected[DP]))
H A Drsa_sp800_56b_test.c280 const int DP = 3; local
305 && TEST_BN_eq_word(key->dmp1, DP)
314 && TEST_true(BN_set_word(key->dmp1, DP))
328 && TEST_true(BN_set_word(key->dmp1, DP+1))
330 && TEST_true(BN_set_word(key->dmp1, DP))
/freebsd-current/sys/kern/
H A Duipc_sem.c90 #define DP(x) printf x macro
92 #define DP(x) macro
641 DP((">>> ksem_open start, pid=%d\n", (int)td->td_proc->p_pid));
816 DP((">>> kern_sem_wait entered! pid=%d\n", (int)td->td_proc->p_pid));
824 DP((">>> kern_sem_wait critical section entered! pid=%d\n",
829 DP(("kern_sem_wait mac failed\n"));
833 DP(("kern_sem_wait value = %d, tryflag %d\n", ks->ks_value, tryflag));
862 DP(("kern_sem_wait value post-decrement = %d\n", ks->ks_value));
867 DP(("<<< kern_sem_wait leaving, pid=%d, error = %d\n",
/freebsd-current/contrib/bearssl/conf/
H A DWin.mk20 DP = macro
H A DUnix.mk19 DP = lib macro
/freebsd-current/contrib/bearssl/mk/
H A DDefaults.mk31 BEARSSLDLL = $(BUILD)$P$(DP)bearssl$D
/freebsd-current/contrib/dma/
H A Dconf.c46 #define DP ": \t" macro
128 au->host = strsep(&data, DP);
/freebsd-current/contrib/llvm-project/llvm/tools/llc/
H A DNewPMDriver.cpp82 DiagnosticPrinterRawOStream DP(errs());
84 DI.print(DP);
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-dis/
H A Dllvm-dis.cpp149 DiagnosticPrinterRawOStream DP(OS);
150 DI.print(DP);
/freebsd-current/contrib/llvm-project/llvm/lib/LTO/
H A DLTOCodeGenerator.cpp724 DiagnosticPrinterRawOStream DP(Stream);
725 DI.print(DP);
765 void print(DiagnosticPrinter &DP) const override { DP << Msg; }
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenAction.cpp675 DiagnosticPrinterRawOStream DP(MsgStream);
676 D.print(DP);
712 DiagnosticPrinterRawOStream DP(MsgStream);
713 D.print(DP);
917 DiagnosticPrinterRawOStream DP(Stream);
918 DI.print(DP);
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-link/
H A Dllvm-link.cpp300 DiagnosticPrinterRawOStream DP(errs());
301 DI.print(DP);
/freebsd-current/contrib/llvm-project/clang/lib/Parse/
H A DParser.cpp1354 Decl *DP = Actions.HandleDeclarator(ParentScope, D, local
1356 D.complete(DP);
1359 if (SkipFunctionBodies && (!DP || Actions.canSkipFunctionBody(DP)) &&
1362 return Actions.ActOnSkippedFunctionBody(DP);
1368 if (DP) {
1369 FunctionDecl *FnD = DP->getAsFunction();
1371 Actions.MarkAsLateParsedTemplate(FnD, DP, Toks);
1373 return DP;
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp348 DiagnosticPrinterRawOStream DP(errs());
349 DI.print(DP);
/freebsd-current/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreISelDAGToDAG.cpp131 Reg = CurDAG->getRegister(XCore::DP, MVT::i32);
H A DXCoreRegisterInfo.cpp237 Reserved.set(XCore::DP);
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonSplitDouble.cpp531 UVect DP;
538 DP.push_back(R);
540 if (DP.empty())
558 UVect::iterator End = llvm::remove_if(DP, NoIndOp);
559 Rs.insert(DP.begin(), End);

Completed in 394 milliseconds

12