HomeSort by relevance Sort by last modified time
    Searched refs:Fence (Results 126 - 150 of 179) sorted by null

1 2 3 4 56 7 8

  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
AliasAnalysis.h 544 case Instruction::Fence: return getModRefInfo((const FenceInst*)I, Loc);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
AliasAnalysis.h 544 case Instruction::Fence: return getModRefInfo((const FenceInst*)I, Loc);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
AliasAnalysis.h 544 case Instruction::Fence: return getModRefInfo((const FenceInst*)I, Loc);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
AliasAnalysis.h 544 case Instruction::Fence: return getModRefInfo((const FenceInst*)I, Loc);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
AliasAnalysis.h 544 case Instruction::Fence: return getModRefInfo((const FenceInst*)I, Loc);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
AliasAnalysis.h 544 case Instruction::Fence: return getModRefInfo((const FenceInst*)I, Loc);
    [all...]
  /system/core/libsync/tests/
sync_test.cpp 77 // Wrapper class for sync fence.
112 SyncFence(SyncFence &&fence) noexcept {
113 if (fence.isValid()) {
114 setFd(fence.getFd());
115 fence.clearFd();
118 SyncFence(const SyncFence &fence) noexcept {
121 if (fence.isValid()) {
122 int fd = dup(fence.getFd());
248 TEST(AllocTest, Fence) {
252 SyncFence fence(timeline, 1)
    [all...]
  /frameworks/native/services/surfaceflinger/
SurfaceFlinger.cpp     [all...]
Layer.cpp 218 void Layer::onLayerDisplayed(const sp<Fence>& releaseFence) {
1022 sp<Fence> fence = mSurfaceFlingerConsumer->getCurrentFence(); local
    [all...]
  /device/generic/goldfish/camera/
EmulatedFakeCamera3.cpp 32 #include <ui/Fence.h>
807 ALOGE("%s: Request %d: Buffer %zu: Has a release fence!",
891 // Wait on fence
892 sp<Fence> bufferAcquireFence = new Fence(srcBuf.acquire_fence);
895 ALOGE("%s: Request %d: Buffer %zu: Fence timed out after %d ms",
    [all...]
  /frameworks/av/media/libstagefright/omx/include/media/stagefright/omx/1.0/
Conversion.h 262 * \param[out] nh The native_handle_t referred to by `t->fence`.
267 * `l.fenceFd`, and `t->fence` will point to \p nh. \p nh will need to be
279 t->fence = *nh;
325 l->fenceFd = native_handle_read_fd(t.fence);
370 * descriptor for the fence if it is not `-1`. If duplication fails, `false`
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 771 INSTKEYWORD(fence, Fence);
  /external/swiftshader/third_party/LLVM/lib/AsmParser/
LLLexer.cpp 653 INSTKEYWORD(fence, Fence);
  /frameworks/av/services/camera/libcameraservice/api1/client2/
ZslProcessor.cpp 442 sp<Fence> fence; local
443 auto rc = mInputProducer->detachNextBuffer(&gb, &fence);
  /frameworks/base/media/jni/
android_media_ImageWriter.cpp 153 sp<Fence> fence; local
156 mProducer->detachNextBuffer(&buffer, &fence);
354 // 2. Fence will be saved to mNativeFenceFd, and will consumed by lock/queue/cancel buffer
356 // 3. need use lockAsync here, as it will handle the dequeued fence for us automatically.
628 // no need to use fence here, as we it will be consumed by either cancel or queue buffer.
  /external/swiftshader/src/OpenGL/libGLESv2/
libGLESv2.cpp 21 #include "Fence.h"
    [all...]
Context.cpp 25 #include "Fence.h"
958 return mFenceNameSpace.allocate(new Fence());
1038 void Context::deleteFence(GLuint fence)
1040 Fence *fenceObject = mFenceNameSpace.remove(fence);
1078 // The spec specifies the underlying Fence object is not deleted until all current
1079 // wait commands finish. However, since the name becomes invalid, we cannot query the fence,
1081 // the fence immediately.
    [all...]
  /frameworks/av/media/libstagefright/omx/
OMXNodeInstance.cpp 1743 sp<Fence> fence = new Fence(fenceFd); local
    [all...]
  /hardware/qcom/display/msm8994/libhwcomposer/
HWC2On1Adapter.cpp 782 if (releaseFence != Fence::NO_FENCE) {
846 ALOGV("[%" PRIu64 "] present returning retire fence %d", mId,
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_interface_atomic.cc 840 SCOPED_ATOMIC(Fence, mo);
  /external/deqp/external/vulkancts/framework/vulkan/
vkNullDriver.cpp 158 VK_NULL_DEFINE_DEVICE_OBJ(Fence);
    [all...]
vkNullDriverImpl.inl 25 VK_NULL_RETURN((*pFence = allocateNonDispHandle<Fence, VkFence>(device, pCreateInfo, pAllocator)));
206 VKAPI_ATTR void VKAPI_CALL destroyFence (VkDevice device, VkFence fence, const VkAllocationCallbacks* pAllocator)
209 freeNonDispHandle<Fence, VkFence>(fence, pAllocator);
359 VKAPI_ATTR VkResult VKAPI_CALL queueSubmit (VkQueue queue, deUint32 submitCount, const VkSubmitInfo* pSubmits, VkFence fence)
364 DE_UNREF(fence);
447 VKAPI_ATTR VkResult VKAPI_CALL queueBindSparse (VkQueue queue, deUint32 bindInfoCount, const VkBindSparseInfo* pBindInfo, VkFence fence)
452 DE_UNREF(fence);
464 VKAPI_ATTR VkResult VKAPI_CALL getFenceStatus (VkDevice device, VkFence fence)
467 DE_UNREF(fence);
    [all...]
  /external/swiftshader/src/OpenGL/libGL/
Context.cpp 25 #include "Fence.h"
811 return mFenceNameSpace.allocate(new Fence());
872 void Context::deleteFence(GLuint fence)
874 Fence *fenceObject = mFenceNameSpace.remove(fence);
1108 Fence *Context::getFence(unsigned int handle)
    [all...]
libGL.cpp 21 #include "Fence.h"
    [all...]
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3Device.cpp     [all...]

Completed in 1203 milliseconds

1 2 3 4 56 7 8