Home
last modified time | relevance | path

Searched refs:commit (Results 1 – 15 of 15) sorted by relevance

/redis-3.2.3/deps/jemalloc/src/
H A Dchunk_mmap.c7 chunk_alloc_mmap_slow(size_t size, size_t alignment, bool *zero, bool *commit) in chunk_alloc_mmap_slow() argument
29 if (!*commit) in chunk_alloc_mmap_slow()
30 *commit = pages_decommit(ret, size); in chunk_alloc_mmap_slow()
35 chunk_alloc_mmap(size_t size, size_t alignment, bool *zero, bool *commit) in chunk_alloc_mmap() argument
62 return (chunk_alloc_mmap_slow(size, alignment, zero, commit)); in chunk_alloc_mmap()
67 if (!*commit) in chunk_alloc_mmap()
68 *commit = pages_decommit(ret, size); in chunk_alloc_mmap()
H A Dchunk.c101 ATOMIC_COPY_HOOK(commit); in chunk_hooks_set()
249 *commit = true; in chunk_recycle()
358 commit)) != NULL) in chunk_alloc_core()
374 bool zero, commit; in chunk_alloc_base() local
382 commit = true; in chunk_alloc_base()
397 bool commit; in chunk_alloc_cache() local
404 commit = true; in chunk_alloc_cache()
407 &commit, dalloc_node); in chunk_alloc_cache()
410 assert(commit); in chunk_alloc_cache()
434 bool *commit, unsigned arena_ind) in chunk_alloc_default() argument
[all …]
H A Dchunk_dss.c70 bool *zero, bool *commit) in chunk_alloc_dss() argument
146 if (!*commit) in chunk_alloc_dss()
147 *commit = pages_decommit(ret, size); in chunk_alloc_dss()
H A Dpages.c101 pages_commit_impl(void *addr, size_t size, bool commit) in pages_commit_impl() argument
112 int prot = commit ? (PROT_READ | PROT_WRITE) : PROT_NONE; in pages_commit_impl()
H A Darena.c586 bool *zero, bool *commit) in arena_chunk_alloc_internal_hard() argument
604 if (!*commit) { in arena_chunk_alloc_internal_hard()
610 chunksize, *commit); in arena_chunk_alloc_internal_hard()
632 *commit = true; in arena_chunk_alloc_internal()
636 zero, commit); in arena_chunk_alloc_internal()
651 bool zero, commit; in arena_chunk_init_hard() local
657 commit = false; in arena_chunk_init_hard()
880 bool commit = true; in arena_chunk_alloc_huge_hard() local
883 zero, &commit); in arena_chunk_alloc_huge_hard()
1005 bool commit = true; in arena_chunk_ralloc_huge_expand_hard() local
[all …]
/redis-3.2.3/
H A D00-RELEASENOTES33 Qu Chen in commit e67ad1d:
37 antirez in commit 7153668:
119 antirez in commit 0a45fbc:
123 antirez in commit c3982c0:
127 antirez in commit fdafe23:
131 antirez in commit a1bfe22:
135 antirez in commit 7ca69af:
139 antirez in commit 5b5e652:
143 antirez in commit 21cffc2:
147 antirez in commit 017378e:
[all …]
/redis-3.2.3/deps/jemalloc/test/integration/
H A Dchunk.c29 bool *commit, unsigned arena_ind) in chunk_alloc() argument
34 *zero ? "true" : "false", *commit ? "true" : "false", arena_ind); in chunk_alloc()
36 return (old_hooks.alloc(new_addr, size, alignment, zero, commit, in chunk_alloc()
61 err = old_hooks.commit(chunk, size, offset, length, arena_ind); in chunk_commit()
144 assert_ptr_ne(old_hooks.commit, chunk_commit, in TEST_BEGIN()
258 assert_ptr_eq(old_hooks.commit, orig_hooks.commit, in TEST_BEGIN()
/redis-3.2.3/deps/jemalloc/include/jemalloc/
H A Djemalloc_typedefs.h.in4 * bool *commit, unsigned arena_ind);
52 chunk_commit_t *commit; member
/redis-3.2.3/deps/jemalloc/include/jemalloc/internal/
H A Dchunk_mmap.h13 bool *commit);
H A Dchunk_dss.h27 size_t alignment, bool *zero, bool *commit);
H A Dchunk.h62 void *new_addr, size_t size, size_t alignment, bool *zero, bool *commit);
H A Dprof.h332 bool prof_sample_accum_update(tsd_t *tsd, size_t usize, bool commit,
/redis-3.2.3/utils/releasetools/
H A D04_release_hash.sh8 (cd ~/hack/redis-hashes; git commit -a -m "${1} hash."; git push)
/redis-3.2.3/deps/hiredis/
H A DCHANGELOG.md23 * See commit log.
/redis-3.2.3/deps/jemalloc/
H A DChangeLog767 application to disable over-commit if swap files are in use.