Home
last modified time | relevance | path

Searched refs:committed (Results 1 – 25 of 136) sorted by relevance

123456

/external/deqp-deps/glslang/Test/baseResults/
DrayQuery-committed.Error.rgen.out1 rayQuery-committed.Error.rgen
2 ERROR: 0:48: 'committed' : argument must be compile-time constant
3 ERROR: 0:53: 'committed' : argument must be compile-time constant
4 ERROR: 0:54: 'committed' : argument must be compile-time constant
5 ERROR: 0:58: 'committed' : argument must be compile-time constant
6 ERROR: 0:62: 'committed' : argument must be compile-time constant
7 ERROR: 0:66: 'committed' : argument must be compile-time constant
8 ERROR: 0:70: 'committed' : argument must be compile-time constant
9 ERROR: 0:74: 'committed' : argument must be compile-time constant
10 ERROR: 0:78: 'committed' : argument must be compile-time constant
[all …]
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/indic/
DIndicInputMethodImpl.java302 private int committed = 0; field in IndicInputMethodImpl.ACIText
305 ACIText( char [] chArray, int offset, int length, int committed ) { in ACIText() argument
307 this.committed = committed; in ACIText()
372 return index >= committed ? committed : 0; in getRunStart()
376 return (index >= committed && in getRunStart()
377 attribute == TextAttribute.INPUT_METHOD_UNDERLINE) ? committed : 0; in getRunStart()
381 return (index >= committed && in getRunStart()
382 attributes.contains(TextAttribute.INPUT_METHOD_UNDERLINE)) ? committed : 0; in getRunStart()
386 return index < committed ? committed : text.length; in getRunLimit()
390 return (index < committed && in getRunLimit()
[all …]
/external/jemalloc_new/test/include/test/
Dextent_hooks.h10 size_t size, bool committed, unsigned arena_ind);
12 size_t size, bool committed, unsigned arena_ind);
22 size_t size, size_t size_a, size_t size_b, bool committed,
25 size_t size_a, void *addr_b, size_t size_b, bool committed,
105 bool committed, unsigned arena_ind) { in extent_dalloc_hook() argument
109 "arena_ind=%u)\n", __func__, extent_hooks, addr, size, committed ? in extent_dalloc_hook()
119 err = default_hooks->dalloc(default_hooks, addr, size, committed, 0); in extent_dalloc_hook()
126 bool committed, unsigned arena_ind) { in extent_destroy_hook() argument
128 "arena_ind=%u)\n", __func__, extent_hooks, addr, size, committed ? in extent_destroy_hook()
138 default_hooks->destroy(default_hooks, addr, size, committed, 0); in extent_destroy_hook()
[all …]
/external/ltp/testcases/kernel/mem/tunable/
Dovercommit_memory.c229 long committed; in update_mem_commit() local
232 committed = SAFE_READ_MEMINFO("Committed_AS:"); in update_mem_commit()
233 commit_left = commit_limit - committed; in update_mem_commit()
237 commit_limit, committed); in update_mem_commit()
/external/jemalloc_new/include/jemalloc/
Djemalloc_typedefs.h.in14 * bool committed, unsigned arena_ind);
22 * bool committed, unsigned arena_ind);
54 * size_t size_a, size_t size_b, bool committed, unsigned arena_ind);
62 * void *addr_b, size_t size_b, bool committed, unsigned arena_ind);
/external/llvm-project/llvm/docs/
DCodeReview.rst23 are committed to the repository.
28 Code can be reviewed either before it is committed or after. We expect
29 significant patches to be reviewed before being committed. Smaller patches
32 be committed prior to an explicit review. In situations where there is any
33 uncertainty, a patch should be reviewed prior to being committed.
67 something after code has been committed about which you would have commented
72 original change was committed, it may be better to create a new patch to
99 ready to be committed. Specifically, once a patch is sent out for review, it
100 needs an explicit approval before it is committed. Do not assume silent
134 A patch is approved to be committed when a reviewer accepts it, and this is
[all …]
/external/deqp/external/openglcts/docs/specs/
DCTS_ARB_sparse_texture_clamp.txt51 Allocate sparse texture for current <target> with committed and
63 vec4(1, 1, 1, 1) to the output if access committed region and
71 in the shader would be in committed regions, (0, 0, 0, 1) otherwise.
/external/rust/crates/rusqlite/src/
Dtransaction.rs95 committed: bool, field
247 committed: false, in with_depth_and_name()
295 self.committed = true; in commit_()
320 if self.committed { in finish_()
/external/jemalloc_new/include/jemalloc/internal/
Dextent_inlines.h280 extent_committed_set(extent_t *extent, bool committed) { in extent_committed_set() argument
282 ((uint64_t)committed << EXTENT_BITS_COMMITTED_SHIFT); in extent_committed_set()
305 bool committed, bool dumpable) { in extent_init() argument
316 extent_committed_set(extent, committed); in extent_init()
/external/gflags/
D.gitattributes2 # and normalize them to LF line endings when committed
/external/python/apitools/
D.gitignore17 # Make sure a generated file isn't accidentally committed.
/external/google-java-format/core/src/test/resources/com/google/googlejavaformat/java/testdata/
DB18479811.output13 "committed",
DB18479811.input6 "address1", "address2", "assistant", "assistantPhone", "birthDate", "committed",
/external/llvm/test/FileCheck/
Ddos-style-eol.txt2 // This test was deliberately committed with DOS style end of line.
/external/llvm-project/llvm/test/FileCheck/
Ddos-style-eol.txt2 // This test was deliberately committed with DOS style end of line.
/external/llvm-project/polly/docs/
DReleaseNotes.rst10 the new features that have recently been committed to our development
/external/mesa3d/docs/_extra/specs/
DMESA_swap_frame_usage.spec113 between two buffer-swap operations being committed. In unextended GLX the
122 the swap is committed before target_msc, and is greater than or equal to
155 number of swaps that have been committed. This value may not match the
/external/python/cpython2/Demo/pdist/
Drcvs.py264 committed = []
267 committed.append(e.file)
268 self.mailinfo(committed, message)
/external/okio/docs/
Dcode_of_conduct.md4 At Square, we are committed to contributing to the open source community and simplifying the process
10 unacceptable behavior. We are committed to providing a welcoming and inspiring community for all and
45 We encourage everyone to participate and are committed to building a community for all. Although we
/external/skqp/site/
Dschedule.md11 security) fixes will be committed to any previous branch.
/external/jemalloc_new/test/unit/
Darena_reset.c270 bool committed, unsigned arena_ind) { in extent_dalloc_unmap() argument
272 "arena_ind=%u)\n", __func__, extent_hooks, addr, size, committed ? in extent_dalloc_unmap()
/external/curl/docs/
DRELEASE-PROCEDURE.md13 - make sure all relevant changes are committed on the master branch
43 - make sure all relevant changes are committed and pushed on the master branch
/external/jemalloc_new/src/
Dextent.c29 size_t size, bool committed, unsigned arena_ind);
31 size_t size, bool committed, unsigned arena_ind);
55 size_t size, size_t size_a, size_t size_b, bool committed,
64 size_t size_a, void *addr_b, size_t size_b, bool committed,
1276 bool committed = false; in extent_grow_retained() local
1281 alloc_size, PAGE, &zeroed, &committed); in extent_grow_retained()
1285 alloc_size, PAGE, &zeroed, &committed, in extent_grow_retained()
1292 committed, true); in extent_grow_retained()
1680 bool committed, unsigned arena_ind) { in extent_dalloc_default() argument
1781 bool committed, unsigned arena_ind) { in extent_destroy_default() argument
[all …]
/external/grpc-grpc/doc/core/
Dmoving-to-c++.md16 header files are committed to remain in C89.
50 - More updates as team time becomes available and committed to this project
/external/angle/doc/
DUpdate20131120.md14 will be committed there. Updates will be made only to the repository's new

123456