Searched refs:commit (Results 1 - 25 of 179) sorted by relevance

12345678

/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/speculation/
H A Derr.D_AGG_COMM.AggAftCommit.d31 * A clause cannot contain a commit() followed by an aggregating action.
38 commit(1);
H A Dtst.negcommit.d31 commit(-1);
H A Dtst.CommitAfterDiscard.d31 * Call to commit() on a buffer after it has been discarded is silently
44 self->commit = 0;
64 commit(var1);
65 self->commit++;
69 /self->commit/
77 /!self->commit/
79 printf("Couldnt commit a discarded buffer\n");
H A Dtst.SpeculationCommit.d30 * ASSERTION: Test the normal behavior of speculate() and commit().
45 self->commit = 0;
59 commit(self->var);
60 self->commit++;
64 /(1 == self->commit)/
66 printf("Succesfully tested buffer commit\n");
71 /(0 == self->commit)/
73 printf("Failed to commit buffer\n");
H A Derr.D_COMM_COMM.DisjointCommit.d31 * A clause cannot contain multiple commit() calls to disjoint buffers.
43 self->commit = 0;
80 commit(var1);
81 commit(var2);
82 self->commit++;
86 /self->commit/
93 /!self->commit/
95 printf("Couldnt commit both buffers");
H A Derr.D_COMM_DREC.CommitAftDataRec.d49 commit(self->spec);
H A Dtst.DiscardAftCommit.d43 self->commit = 0;
61 commit(var1);
62 self->commit++;
H A Derr.D_COMM_COMM.CommitAftCommit.d31 * A clause cannot contain multiple commit() calls to same buffer.
68 commit(var1);
69 commit(var1);
H A Derr.D_DREC_COMM.DataRecAftCommit.d31 * Data recording actions may not follow commit.
61 commit(self->spec);
62 printf("Data recording after commit\n");
H A Derr.D_DREC_COMM.ExitAfterCommit.d30 * ASSERTION: Exit after commit should throw a D_DREC_COMM.
54 commit(self->spec);
/freebsd-11-stable/contrib/jemalloc/include/jemalloc/internal/
H A Dchunk_mmap.h13 bool *zero, bool *commit);
H A Dpages.h12 void *pages_map(void *addr, size_t size, bool *commit);
15 size_t size, bool *commit);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Edit/
H A DRewriters.h26 const NSAPI &NS, Commit &commit);
29 const NSAPI &NS, Commit &commit,
33 const NSAPI &NS, Commit &commit);
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/
H A Dtst.resize3.d67 commit(spec);
H A Derr.resize3.d56 commit(spec);
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/drops/
H A Ddrp.DTRACEDROP_SPEC.d42 commit(spec);
/freebsd-11-stable/contrib/jemalloc/src/
H A Dchunk_mmap.c7 chunk_alloc_mmap_slow(size_t size, size_t alignment, bool *zero, bool *commit) argument
19 pages = pages_map(NULL, alloc_size, commit);
24 ret = pages_trim(pages, alloc_size, leadsize, size, commit);
34 bool *commit)
55 ret = pages_map(new_addr, size, commit);
62 return (chunk_alloc_mmap_slow(size, alignment, zero, commit));
33 chunk_alloc_mmap(void *new_addr, size_t size, size_t alignment, bool *zero, bool *commit) argument
H A Dpages.c21 pages_map(void *addr, size_t size, bool *commit) argument
28 *commit = true;
35 ret = VirtualAlloc(addr, size, MEM_RESERVE | (*commit ? MEM_COMMIT : 0),
43 int prot = *commit ? PAGES_PROT_COMMIT : PAGES_PROT_DECOMMIT;
91 bool *commit)
101 new_addr = pages_map(ret, size, commit);
122 pages_commit_impl(void *addr, size_t size, bool commit) argument
129 return (commit ? (addr != VirtualAlloc(addr, size, MEM_COMMIT,
133 int prot = commit ? PAGES_PROT_COMMIT : PAGES_PROT_DECOMMIT;
90 pages_trim(void *addr, size_t alloc_size, size_t leadsize, size_t size, bool *commit) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp59 const NSAPI &NS, Commit &commit) {
85 commit.replaceWithInner(Msg->getSourceRange(),
173 static void maybePutParensOnReceiver(const Expr *Receiver, Commit &commit) { argument
176 commit.insertWrap("(", RecRange, ")");
181 Commit &commit) {
192 commit.replaceWithInner(CharSourceRange::getCharRange(MsgRange.getBegin(),
195 commit.replaceWithInner(SourceRange(ArgRange.getBegin(), MsgRange.getEnd()),
197 commit.insertWrap("[", ArgRange, "]");
198 maybePutParensOnReceiver(Rec, commit);
205 Commit &commit) {
58 rewriteObjCRedundantCallWithLiteral(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit) argument
180 rewriteToSubscriptGetCommon(const ObjCMessageExpr *Msg, Commit &commit) argument
202 rewriteToArraySubscriptGet(const ObjCInterfaceDecl *IFace, const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit) argument
212 rewriteToDictionarySubscriptGet(const ObjCInterfaceDecl *IFace, const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit) argument
222 rewriteToArraySubscriptSet(const ObjCInterfaceDecl *IFace, const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit) argument
256 rewriteToDictionarySubscriptSet(const ObjCInterfaceDecl *IFace, const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit) argument
289 rewriteToObjCSubscriptSyntax(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit) argument
338 rewriteToObjCLiteralSyntax(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit, const ParentMap *PMap) argument
377 rewriteToArrayLiteral(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit, const ParentMap *PMap) argument
489 rewriteToDictionaryLiteral(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit) argument
642 rewriteToCharLiteral(const ObjCMessageExpr *Msg, const CharacterLiteral *Arg, const NSAPI &NS, Commit &commit) argument
658 rewriteToBoolLiteral(const ObjCMessageExpr *Msg, const Expr *Arg, const NSAPI &NS, Commit &commit) argument
752 rewriteToNumberLiteral(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit) argument
942 objectifyExpr(const Expr *E, Commit &commit) argument
975 rewriteToNumericBoxedExpression(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit) argument
1121 doRewriteToUTF8StringBoxedExpressionHelper( const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit) argument
1160 rewriteToStringBoxedExpression(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit) argument
[all...]
/freebsd-11-stable/contrib/xz/src/liblzma/api/lzma/
H A Dversion.h76 #define LZMA_VERSION_STRING_C_(major, minor, patch, stability, commit) \
77 #major "." #minor "." #patch stability commit
79 #define LZMA_VERSION_STRING_C(major, minor, patch, stability, commit) \
80 LZMA_VERSION_STRING_C_(major, minor, patch, stability, commit)
89 * "4.999.8beta-21-g1d92". The commit ID won't be available in numeric form
/freebsd-11-stable/contrib/jemalloc/include/jemalloc/
H A Djemalloc_typedefs.h4 * bool *commit, unsigned arena_ind);
52 chunk_commit_t *commit; member in struct:__anon1802
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugSymbolRVASubsection.cpp29 Error DebugSymbolRVASubsection::commit(BinaryStreamWriter &Writer) const { function in class:DebugSymbolRVASubsection
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DBuffer.cpp31 // creation/truncation until commit() to avoid side effects if something
32 // happens between allocate() and commit().
48 Error FileBuffer::commit() { function in class:llvm::objcopy::FileBuffer
52 assert(Buf && "allocate() not called before commit()!");
53 Error Err = Buf->commit();
54 // FileOutputBuffer::commit() returns an Error that is just a wrapper around
68 Error MemBuffer::commit() { return Error::success(); } function in class:llvm::objcopy::MemBuffer
H A DBuffer.h32 virtual Error commit() = 0;
40 // Indicates that allocate(0) was called, and commit() should create or
47 Error commit() override;
58 Error commit() override;
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp244 const NSAPI &NS, edit::Commit &commit,
283 commit.insertBefore(receiver->getBeginLoc(), "(");
289 commit.replace(SpaceRange, PropertyDotString);
292 commit.replace(SourceRange(MsgRange.getBegin(), MsgRange.getBegin()), "");
293 commit.replace(SourceRange(MsgRange.getEnd(), MsgRange.getEnd()), "");
296 commit.insertWrap("(", receiver->getSourceRange(), ")");
314 commit.replace(Range, PropertyDotString);
316 commit.replace(SourceRange(MsgRange.getBegin(), MsgRange.getBegin()), "");
317 commit.replace(SourceRange(MsgRange.getEnd(), MsgRange.getEnd()), "");
335 edit::Commit commit(*Consume
242 rewriteToPropertyDotSyntax(const ObjCMessageExpr *Msg, Preprocessor &PP, const NSAPI &NS, edit::Commit &commit, const ParentMap *PMap) argument
463 rewriteToObjCProperty(const ObjCMethodDecl *Getter, const ObjCMethodDecl *Setter, const NSAPI &NS, edit::Commit &commit, unsigned LengthOfPrefix, bool Atomic, bool UseNsIosOnlyMacro, bool AvailabilityArgsMatch) argument
673 rewriteToObjCInterfaceDecl(const ObjCInterfaceDecl *IDecl, llvm::SmallVectorImpl<ObjCProtocolDecl*> &ConformingProtocols, const NSAPI &NS, edit::Commit &commit) argument
716 rewriteToNSEnumDecl(const EnumDecl *EnumDcl, const TypedefDecl *TypedefDcl, const NSAPI &NS, edit::Commit &commit, StringRef NSIntegerName, bool NSOptions) argument
770 rewriteToNSMacroDecl(ASTContext &Ctx, const EnumDecl *EnumDcl, const TypedefDecl *TypedefDcl, const NSAPI &NS, edit::Commit &commit, bool IsNSIntegerType) argument
[all...]

Completed in 225 milliseconds

12345678