Home
last modified time | relevance | path

Searched refs:committed (Results 1 - 15 of 15) sorted by relevance

/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/indic/
H A DIndicInputMethodImpl.java104 // If the last character was not committed it is stored in text[0].
106 // character was committed or not. If at any time ( but not within a
108 // only be 1 otherwise ) the last character was not committed.
113 private int committedChars = 0;// number of committed characters
116 private int totalChars = 0;//number of total characters ( committed + composed )
220 // the last character was committed, commit just Nukta. in handleKeyTyped()
221 // Note : the lastChar must have been committed if it is not one of in handleKeyTyped()
281 // totalChars = ( last character committed )? 0 : 1; in handleKeyTyped()
288 if( totalChars != 0 ) {// if some character is not committed. in endComposition()
302 private int committed field in IndicInputMethodImpl.ACIText
[all...]
/third_party/ltp/testcases/kernel/mem/tunable/
H A Dovercommit_memory.c208 long committed; in update_mem_commit() local
211 committed = SAFE_READ_MEMINFO("Committed_AS:"); in update_mem_commit()
212 commit_left = commit_limit - committed; in update_mem_commit()
216 commit_limit, committed); in update_mem_commit()
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_nir_rt_builder.h233 bool committed) in brw_nir_rt_mem_hit_addr_from_addr()
235 return nir_iadd_imm(b, stack_addr, committed ? 0 : BRW_RT_SIZEOF_HIT_INFO); in brw_nir_rt_mem_hit_addr_from_addr()
239 brw_nir_rt_mem_hit_addr(nir_builder *b, bool committed) in brw_nir_rt_mem_hit_addr() argument
242 committed ? 0 : BRW_RT_SIZEOF_HIT_INFO); in brw_nir_rt_mem_hit_addr()
411 bool committed) in brw_nir_rt_load_mem_hit_from_addr()
414 brw_nir_rt_mem_hit_addr_from_addr(b, stack_addr, committed); in brw_nir_rt_load_mem_hit_from_addr()
441 bool committed, in brw_nir_rt_init_mem_hit_at_addr()
445 brw_nir_rt_mem_hit_addr_from_addr(b, stack_addr, committed); in brw_nir_rt_init_mem_hit_at_addr()
459 bool committed) in brw_nir_rt_load_mem_hit()
462 committed); in brw_nir_rt_load_mem_hit()
231 brw_nir_rt_mem_hit_addr_from_addr(nir_builder *b, nir_ssa_def *stack_addr, bool committed) brw_nir_rt_mem_hit_addr_from_addr() argument
408 brw_nir_rt_load_mem_hit_from_addr(nir_builder *b, struct brw_nir_rt_mem_hit_defs *defs, nir_ssa_def *stack_addr, bool committed) brw_nir_rt_load_mem_hit_from_addr() argument
439 brw_nir_rt_init_mem_hit_at_addr(nir_builder *b, nir_ssa_def *stack_addr, bool committed, nir_ssa_def *t_max) brw_nir_rt_init_mem_hit_at_addr() argument
457 brw_nir_rt_load_mem_hit(nir_builder *b, struct brw_nir_rt_mem_hit_defs *defs, bool committed) brw_nir_rt_load_mem_hit() argument
[all...]
H A Dbrw_nir_lower_ray_queries.c353 const bool committed = nir_src_as_bool(intrin->src[1]); in lower_ray_query_intrinsic() local
362 brw_nir_rt_load_mem_hit_from_addr(b, &hit_in, stack_addr, committed); in lower_ray_query_intrinsic()
367 if (committed) { in lower_ray_query_intrinsic()
/third_party/mesa3d/src/amd/vulkan/
H A Dradv_nir_lower_ray_queries.c389 nir_ssa_def *committed, nir_ray_query_value value, unsigned column) in lower_rq_load()
395 return nir_bcsel(b, committed, rq_load_var(b, index, vars->closest.barycentrics), in lower_rq_load()
402 return nir_bcsel(b, committed, rq_load_var(b, index, vars->closest.frontface), in lower_rq_load()
407 nir_bcsel(b, committed, rq_load_var(b, index, vars->closest.geometry_id_and_flags), in lower_rq_load()
413 nir_bcsel(b, committed, rq_load_var(b, index, vars->closest.custom_instance_and_mask), in lower_rq_load()
417 return nir_bcsel(b, committed, rq_load_var(b, index, vars->closest.instance_id), in lower_rq_load()
422 nir_bcsel(b, committed, rq_load_var(b, index, vars->closest.sbt_offset_and_flags), in lower_rq_load()
427 nir_bcsel(b, committed, rq_load_var(b, index, vars->closest.instance_addr), in lower_rq_load()
435 nir_bcsel(b, committed, rq_load_var(b, index, vars->closest.instance_addr), in lower_rq_load()
448 nir_bcsel(b, committed, rq_load_va in lower_rq_load()
388 lower_rq_load(nir_builder *b, nir_ssa_def *index, struct ray_query_vars *vars, nir_ssa_def *committed, nir_ray_query_value value, unsigned column) lower_rq_load() argument
[all...]
/third_party/NuttX/fs/nfs/
H A Dnfs_proto.h538 uint32_t committed; member
H A Dnfs_adapter.c1565 int committed = NFSV3WRITE_UNSTABLE; in vfs_nfs_write() local
1685 *ptr++ = txdr_unsigned((uint32_t)committed); in vfs_nfs_write()
1784 int committed = NFSV3WRITE_UNSTABLE; in vfs_nfs_writepage() local
1896 *ptr++ = txdr_unsigned((uint32_t)committed); in vfs_nfs_writepage()
/third_party/node/deps/v8/src/wasm/
H A Dwasm-code-manager.cc766 // We just need to commit what's not committed. The page in which we in AllocateForCodeInRegion()
767 // start is already committed (or we start at the beginning of a page). in AllocateForCodeInRegion()
768 // The end needs to be committed all through the end of the page. in AllocateForCodeInRegion()
1896 // No more committed code space. in ~WasmCodeManager()
2192 size_t committed = total_committed_code_space_.load(); in NewNativeModule() local
2193 DCHECK_GE(max_committed_code_space_, committed); in NewNativeModule()
2195 committed + (max_committed_code_space_ - committed) / 2); in NewNativeModule()
/third_party/ntfs-3g/ntfsprogs/
H A Dntfsrecover.c7 * and plays the committed transactions in order to restore the
25 * - applied committed actions from logfile
516 commit = "committed"; in commitment()
2236 BOOL committed; in mark_transactions() local
2254 committed = ((s64)(sle64_to_cpu(logr->this_lsn) in mark_transactions()
2257 && committed) in mark_transactions()
2261 && committed) { in mark_transactions()
2806 printf(" committed %016llx\n", in showrest()
3994 "committed lsn\n"); in walk()
4107 printf("\n%s v%s (libntfs-3g) - Recover updates committed b in version()
[all...]
/third_party/node/deps/openssl/openssl/crypto/sha/asm/
H A Dsha512-c64xplus.pl382 NOP 2 ; wait till FP is committed
H A Dkeccak1600-c64x.pl545 NOP 4 ; wait till FP is committed
842 NOP 4 ; wait till FP is committed
/third_party/openssl/crypto/sha/asm/
H A Dsha512-c64xplus.pl382 NOP 2 ; wait till FP is committed
H A Dkeccak1600-c64x.pl545 NOP 4 ; wait till FP is committed
842 NOP 4 ; wait till FP is committed
/third_party/node/deps/v8/src/heap/
H A Dheap.cc516 ", committed: %6zu KB\n", in PrintShortHeapStatistics()
522 ", committed: %6zu KB\n", in PrintShortHeapStatistics()
528 ", committed: %6zu KB\n", in PrintShortHeapStatistics()
535 ", committed: %6zu KB\n", in PrintShortHeapStatistics()
541 ", committed: %6zu KB\n", in PrintShortHeapStatistics()
548 ", committed: %6zu KB\n", in PrintShortHeapStatistics()
555 ", committed: %6zu KB\n", in PrintShortHeapStatistics()
561 ", committed: %6zu KB\n", in PrintShortHeapStatistics()
569 ", committed: %6zu KB\n", in PrintShortHeapStatistics()
574 "Unmapper buffering %zu chunks of committed in PrintShortHeapStatistics()
3830 size_t committed = CommittedOldGenerationMemory(); HasHighFragmentation() local
3834 HasHighFragmentation(size_t used, size_t committed) HasHighFragmentation() argument
[all...]
H A Dheap.h766 bool HasHighFragmentation(size_t used, size_t committed);
1319 // Returns the amount of memory currently committed for the heap.
1322 // Returns the amount of memory currently committed for the old space.
1325 // Returns the amount of executable memory currently committed for the heap.
1328 // Returns the amount of phyical memory currently committed for the heap.
1331 // Returns the maximum amount of memory ever committed for the heap.
1334 // Updates the maximum committed memory for the heap. Should be called

Completed in 33 milliseconds