HomeSort by relevance Sort by last modified time
    Searched full:barrier (Results 151 - 175 of 1514) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
atomic_word.h 34 // Define these two macros using the appropriate memory barrier for the target.
38 // This one prevents loads from being hoisted across the barrier;
39 // in other words, this is a Load-Load acquire barrier.
43 // This one prevents stores from being sunk across the barrier; in other
44 // words, a Store-Store release barrier.
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/arm64-v8a/include/bits/
atomic_word.h 34 // Define these two macros using the appropriate memory barrier for the target.
38 // This one prevents loads from being hoisted across the barrier;
39 // in other words, this is a Load-Load acquire barrier.
43 // This one prevents stores from being sunk across the barrier; in other
44 // words, a Store-Store release barrier.
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/armeabi/include/bits/
atomic_word.h 34 // Define these two macros using the appropriate memory barrier for the target.
38 // This one prevents loads from being hoisted across the barrier;
39 // in other words, this is a Load-Load acquire barrier.
43 // This one prevents stores from being sunk across the barrier; in other
44 // words, a Store-Store release barrier.
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/armeabi-v7a/include/bits/
atomic_word.h 34 // Define these two macros using the appropriate memory barrier for the target.
38 // This one prevents loads from being hoisted across the barrier;
39 // in other words, this is a Load-Load acquire barrier.
43 // This one prevents stores from being sunk across the barrier; in other
44 // words, a Store-Store release barrier.
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/mips/include/bits/
atomic_word.h 34 // Define these two macros using the appropriate memory barrier for the target.
38 // This one prevents loads from being hoisted across the barrier;
39 // in other words, this is a Load-Load acquire barrier.
43 // This one prevents stores from being sunk across the barrier; in other
44 // words, a Store-Store release barrier.
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/mips32r6/include/bits/
atomic_word.h 34 // Define these two macros using the appropriate memory barrier for the target.
38 // This one prevents loads from being hoisted across the barrier;
39 // in other words, this is a Load-Load acquire barrier.
43 // This one prevents stores from being sunk across the barrier; in other
44 // words, a Store-Store release barrier.
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/mips64/include/bits/
atomic_word.h 34 // Define these two macros using the appropriate memory barrier for the target.
38 // This one prevents loads from being hoisted across the barrier;
39 // in other words, this is a Load-Load acquire barrier.
43 // This one prevents stores from being sunk across the barrier; in other
44 // words, a Store-Store release barrier.
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/x86/include/bits/
atomic_word.h 34 // Define these two macros using the appropriate memory barrier for the target.
38 // This one prevents loads from being hoisted across the barrier;
39 // in other words, this is a Load-Load acquire barrier.
43 // This one prevents stores from being sunk across the barrier; in other
44 // words, a Store-Store release barrier.
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/x86_64/include/bits/
atomic_word.h 34 // Define these two macros using the appropriate memory barrier for the target.
38 // This one prevents loads from being hoisted across the barrier;
39 // in other words, this is a Load-Load acquire barrier.
43 // This one prevents stores from being sunk across the barrier; in other
44 // words, a Store-Store release barrier.
  /external/clang/test/CodeGenCXX/
strict-vtable-pointers.cpp 56 // CHECK-NEW-NOT: @llvm.invariant.group.barrier(
84 // CHECK-CTORS-NOT: @llvm.invariant.group.barrier(
89 // CHECK-CTORS: call i8* @llvm.invariant.group.barrier(
94 // CHECK-NEW-NOT: @llvm.invariant.group.barrier(
97 // CHECK-NEW: %[[THIS3:.*]] = call i8* @llvm.invariant.group.barrier(i8* %[[THIS2:.*]])
112 // CHECK-NEW: call i8* @llvm.invariant.group.barrier(
114 // CHECK-NEW: call i8* @llvm.invariant.group.barrier(
134 // CHECK-CTORS-NOT: call i8* @llvm.invariant.group.barrier(
143 // CHECK-CTORS: %[[THIS2:.*]] = call i8* @llvm.invariant.group.barrier(i8* %[[THIS1:.*]])
157 // CHECK-CTORS: %[[THIS2:.*]] = call i8* @llvm.invariant.group.barrier(i8* %[[THIS1]]
    [all...]
  /external/valgrind/drd/tests/
bar_bad_xml.stderr.exp 32 initialise a barrier with zero count
37 <what>pthread_barrier_init: 'count' argument is zero: barrier 0x........</what>
59 initialise a barrier twice
64 <what>Barrier reinitialization: barrier 0x........</what>
84 <what>barrier</what>
108 initialise a barrier which has threads waiting on it
113 <what>Barrier reinitialization: barrier 0x........</what>
133 <what>barrier</what
    [all...]
  /external/autotest/server/cros/
queue_barrier.py 13 """This class implements a simple barrier to synchronize processes. The
14 barrier relies on the fact that there a single process "master" and |n|
17 through the barrier.
23 barrier, it is totally safe to reuse the barrier several times with the same
29 """Initializes the barrier with |n| slave processes and a master.
  /external/libavc/encoder/mips/
ih264e_platform_macros.h 108 * @brief Data Memory Barrier, Data Synchronization Barrier
113 * Data Memory Barrier acts as a memory barrier. It ensures that all explicit
119 * Data Synchronization Barrier acts as a special kind of memory barrier. No
  /art/runtime/
barrier.h 17 // CAUTION: THIS IS NOT A FULLY GENERAL BARRIER API.
19 // It may either be used as a "latch" or single-use barrier, or it may be reused under
36 class Barrier {
38 explicit Barrier(int count);
39 virtual ~Barrier();
41 // Pass through the barrier, decrement the count but do not block.
44 // Wait on the barrier, decrement the count.
67 // Counter, when this reaches 0 all people blocked on the barrier are signalled.
  /device/linaro/hikey/
fstab.hikey 8 /dev/block/platform/soc/f723d000.dwmmc0/by-name/cache /cache ext4 discard,noauto_da_alloc,data=ordered,user_xattr,discard,barrier=1 wait
9 /dev/block/platform/soc/f723d000.dwmmc0/by-name/userdata /data ext4 discard,noauto_da_alloc,data=ordered,user_xattr,discard,barrier=1 wait
fstab.hikey-4.1 8 /dev/block/platform/f723d000.dwmmc0/by-name/cache /cache ext4 discard,noauto_da_alloc,data=ordered,user_xattr,discard,barrier=1 wait
9 /dev/block/platform/f723d000.dwmmc0/by-name/userdata /data ext4 discard,noauto_da_alloc,data=ordered,user_xattr,discard,barrier=1 wait
  /external/autotest/client/bin/self-test/tests/
105-barrier-5x-master-middle 18 b = job.barrier('127.0.0.1#P%d' % (n), 'here', 60)
27 b = job.barrier('127.0.0.1#P%d' % (n), 'here', 60)
  /external/llvm/test/MC/Disassembler/Hexagon/
system_user.txt 16 # Memory barrier
18 # CHECK: barrier
  /external/llvm/test/MC/Hexagon/instructions/
system_user.s 16 # Memory barrier
18 barrier label
  /external/smali/dexlib2/
OatVersions.txt 8 - return-void-barrier -> return-void-no-barrier
  /external/valgrind/drd/
drd_clientobj.h 123 Word count; // Participant count in a barrier wait.
124 Word pre_iteration; // pre barrier completion count modulo two.
125 Word post_iteration; // post barrier completion count modulo two.
126 Word pre_waiters_left; // number of waiters left for a complete barrier.
127 Word post_waiters_left; // number of waiters left for a complete barrier.
128 OSet* oset[2]; // Per-thread barrier information for the latest
129 // two barrier iterations.
152 struct barrier_info barrier; member in union:drd_clientobj
  /development/ndk/platforms/android-9/arch-x86/include/asm/
atomic_32.h 39 #define smp_mb__before_atomic_dec() barrier()
40 #define smp_mb__after_atomic_dec() barrier()
41 #define smp_mb__before_atomic_inc() barrier()
42 #define smp_mb__after_atomic_inc() barrier()
system_32.h 32 #define smp_mb() barrier()
34 #define smp_rmb() barrier()
35 #define smp_wmb() barrier()
37 #define set_mb(var, value) do { var = value; barrier(); } while (0)
  /device/google/marlin/
charger.fstab.qcom 9 /dev/block/bootdevice/by-name/system /system ext4 ro,barrier=1,discard wait,verify
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawImageObjectUtil.cpp 327 vk::VkImageMemoryBarrier barrier; local
328 barrier.sType = vk::VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER;
329 barrier.pNext = DE_NULL;
330 barrier.srcAccessMask = 0;
331 barrier.dstAccessMask = 0;
332 barrier.oldLayout = vk::VK_IMAGE_LAYOUT_UNDEFINED;
333 barrier.newLayout = vk::VK_IMAGE_LAYOUT_GENERAL;
334 barrier.srcQueueFamilyIndex = vk::VK_QUEUE_FAMILY_IGNORED;
335 barrier.dstQueueFamilyIndex = vk::VK_QUEUE_FAMILY_IGNORED;
336 barrier.image = object()
613 vk::VkImageMemoryBarrier barrier; local
734 vk::VkImageMemoryBarrier barrier; local
885 vk::VkImageMemoryBarrier barrier; local
    [all...]

Completed in 2664 milliseconds

1 2 3 4 5 67 8 91011>>