Searched refs:sync_scope (Results 1 – 10 of 10) sorted by relevance
/external/mesa3d/src/amd/llvm/ |
D | ac_llvm_helper.cpp | 382 LLVMValueRef ptr, LLVMValueRef val, const char *sync_scope) in ac_build_atomic_rmw() argument 426 unsigned SSID = unwrap(ctx->context)->getOrInsertSyncScopeID(sync_scope); in ac_build_atomic_rmw() 434 LLVMValueRef cmp, LLVMValueRef val, const char *sync_scope) in ac_build_atomic_cmp_xchg() argument 436 unsigned SSID = unwrap(ctx->context)->getOrInsertSyncScopeID(sync_scope); in ac_build_atomic_cmp_xchg()
|
D | ac_llvm_build.h | 469 LLVMValueRef ptr, LLVMValueRef val, const char *sync_scope); 472 LLVMValueRef cmp, LLVMValueRef val, const char *sync_scope);
|
D | ac_nir_to_llvm.c | 1921 const char *sync_scope = "singlethread-one-as"; in visit_global_atomic() local 1948 result = ac_build_atomic_cmp_xchg(&ctx->ac, addr, data, data1, sync_scope); in visit_global_atomic() 1968 result = ac_build_atomic_rmw(&ctx->ac, op, addr, ac_to_integer(&ctx->ac, data), sync_scope); in visit_global_atomic() 2546 const char *sync_scope = "workgroup-one-as"; in visit_var_atomic() local 2550 result = ac_build_atomic_cmp_xchg(&ctx->ac, ptr, src, src1, sync_scope); in visit_var_atomic() 2583 result = ac_build_atomic_rmw(&ctx->ac, op, ptr, val, sync_scope); in visit_var_atomic()
|
/external/rust/android-crates-io/crates/tokio/tests/ |
D | task_panic.rs | 80 NUMBER.sync_scope(1, || { in local_key_sync_scope_panic_caller() 82 NUMBER.sync_scope(1, || {}); in local_key_sync_scope_panic_caller()
|
/external/rust/android-crates-io/crates/tokio/src/task/ |
D | task_local.rs | 168 pub fn sync_scope<F, R>(&'static self, value: T, f: F) -> R in sync_scope() method
|
/external/mesa3d/src/amd/compiler/ |
D | aco_insert_waitcnt.cpp | 308 sync_scope subgroup_scope = in perform_barrier() 316 sync_scope bar_scope_lds = MIN2(sync.scope, scope_workgroup); in perform_barrier()
|
D | aco_ir.h | 90 enum sync_scope : uint8_t { enum 100 memory_sync_info(int storage_, int semantics_ = 0, sync_scope scope_ = scope_invocation) 106 sync_scope scope : 8; 1737 sync_scope exec_scope;
|
D | aco_print_ir.cpp | 221 print_scope(sync_scope scope, FILE* output, const char* prefix = "scope") in print_scope()
|
D | aco_instruction_selection.cpp | 7060 sync_scope 7082 sync_scope mem_scope = translate_nir_scope(nir_intrinsic_memory_scope(instr)); in emit_barrier() 7083 sync_scope exec_scope = translate_nir_scope(nir_intrinsic_execution_scope(instr)); in emit_barrier() 11406 const sync_scope scope = ctx.stage == vertex_tess_control_hs && ctx.tcs_in_out_eq && in select_shader()
|
/external/rust/android-crates-io/crates/tokio/ |
D | CHANGELOG.md | 2304 - task: add `sync_scope` for `LocalKey` ([#3612])
|