Home
last modified time | relevance | path

Searched refs:blocking (Results 1 – 25 of 34) sorted by relevance

12

/llvm-project-15.0.7/compiler-rt/lib/profile/
H A DWindowsMMap.c128 int lock(HANDLE handle, DWORD lockType, BOOL blocking) { in lock() argument
130 if (!blocking) in lock()
141 if (!blocking && dw == ERROR_LOCK_VIOLATION) in lock()
163 BOOL blocking = (operation & LOCK_NB) == 0; in flock() local
168 return lock(handle, LOCKFILE_EXCLUSIVE_LOCK, blocking); in flock()
171 return lock(handle, 0, blocking); in flock()
/llvm-project-15.0.7/libcxx/include/
H A Dshared_mutex31 void lock(); // blocking
36 void lock_shared(); // blocking
54 void lock(); // blocking
63 void lock_shared(); // blocking
82 explicit shared_lock(mutex_type& m); // blocking
100 void lock(); // blocking
166 void lock() _LIBCPP_THREAD_SAFETY_ANNOTATION(acquire_capability()); // blocking
171 void lock_shared() _LIBCPP_THREAD_SAFETY_ANNOTATION(acquire_shared_capability()); // blocking
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Async/IR/
H A DAsyncDialect.td35 /// blocking async.runtime.await ops. Only useful in combination with
36 /// 'eliminate-blocking-await-ops' option, which in absence of this
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_common_test.cpp427 for (bool blocking : { false, true }) { in TEST()
428 EXPECT_FALSE(GetRandom(nullptr, 32, blocking)); in TEST()
429 EXPECT_FALSE(GetRandom(buffer_1, 0, blocking)); in TEST()
430 EXPECT_FALSE(GetRandom(buffer_1, 512, blocking)); in TEST()
434 EXPECT_TRUE(GetRandom(buffer_1, size, blocking)); in TEST()
435 EXPECT_TRUE(GetRandom(buffer_2, size, blocking)); in TEST()
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Async/
H A DPasses.td49 Option<"eliminateBlockingAwaitOps", "eliminate-blocking-await-ops", "bool",
51 "Rewrite functions with blocking async.runtime.await as coroutines "
/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/GlobalISel/
H A Dpostlegalizer-lowering-build-vector-to-dup.mir68 ; Don't combine with 0. We want to avoid blocking immAllZerosV selection
96 ; Don't combine with -1. We want to avoid blocking immAllOnesV selection
/llvm-project-15.0.7/mlir/test/mlir-cpu-runner/
H A Dasync-value.mlir24 // Non-blocking async.await inside the async.execute
/llvm-project-15.0.7/mlir/docs/Dialects/
H A DMemRef.md25 Starts a non-blocking DMA operation that transfers data from a source memref to
H A DAffine.md377 The `affine.dma_start` op starts a non-blocking DMA operation that transfers
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Affine/
H A DPasses.td230 let summary = "Pipeline non-blocking data transfers between explicitly "
233 This pass performs a transformation to overlap non-blocking DMA operations
/llvm-project-15.0.7/llvm/lib/Support/Unix/
H A DProgram.inc375 // The child has already terminated, so a blocking wait on it is okay in the
418 // Non-blocking wait.
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_fuchsia.cpp458 bool GetRandom(void *buffer, uptr length, bool blocking) { in GetRandom() argument
H A Dsanitizer_linux.cpp2340 bool GetRandom(void *buffer, uptr length, bool blocking) { in GetRandom() argument
2357 blocking ? 0 : GRND_NONBLOCK); in GetRandom()
H A Dsanitizer_common.h1065 bool GetRandom(void *buffer, uptr length, bool blocking = true);
H A Dsanitizer_win.cpp1151 bool GetRandom(void *buffer, uptr length, bool blocking) { in GetRandom() argument
H A Dsanitizer_mac.cpp1385 bool GetRandom(void *buffer, uptr length, bool blocking) { in GetRandom() argument
/llvm-project-15.0.7/mlir/include/mlir/Dialect/NVGPU/IR/
H A DNVGPU.td132 `$size` elements from source to the destination without blocking the thread.
/llvm-project-15.0.7/llvm/docs/
H A DHowToReleaseLLVM.rst250 blocking a specific release.
253 "[meta]" bug should be created and all regressions *blocking* that Meta. Once
H A DReleaseProcess.rst144 as blocker, and all the other bugs as important, but not necessarily blocking
H A DCodeReview.rst57 Reverting a patch ensures that design discussions can happen without blocking
/llvm-project-15.0.7/mlir/test/Dialect/Async/
H A Dasync-to-async-runtime-eliminate-blocking.mlir2 // RUN: -async-to-async-runtime="eliminate-blocking-await-ops=true" \
/llvm-project-15.0.7/llvm/lib/Support/Windows/
H A DProgram.inc441 // Non-blocking wait.
/llvm-project-15.0.7/mlir/include/mlir/Dialect/MemRef/IR/
H A DMemRefOps.td499 let summary = "non-blocking DMA operation that starts a transfer";
501 DmaStartOp starts a non-blocking DMA operation that transfers data from a
660 let summary = "blocking DMA operation that waits for transfer completion";
/llvm-project-15.0.7/libcxx/docs/
H A DBuildingLibcxx.rst145 pops up a blocking dialog box, making it hard to run a larger number of tests.
/llvm-project-15.0.7/llvm/test/Transforms/GVN/PRE/
H A Dpre-load.ll641 ; Same as test13, but now the blocking function is not immediately in load's

12