HomeSort by relevance Sort by last modified time
    Searched defs:fence (Results 1 - 4 of 4) sorted by null

  /libcore/luni/src/main/java/java/util/
ArrayDeque.java 585 private int fence = tail; field in class:ArrayDeque.DeqIterator
594 return cursor != fence;
598 if (cursor == fence)
603 if (tail != fence || result == null)
615 fence = tail;
625 * tail for fence.
628 private int fence = head; field in class:ArrayDeque.DescendingIterator
632 return cursor != fence;
636 if (cursor == fence)
640 if (head != fence || result == null
    [all...]
  /frameworks/base/libs/gui/
SurfaceTexture.cpp 287 EGLSyncKHR fence = EGL_NO_SYNC_KHR; local
484 fence = mSlots[buf].mFence;
488 if (fence != EGL_NO_SYNC_KHR) {
489 EGLint result = eglClientWaitSyncKHR(dpy, fence, 0, 1000000000);
494 LOGE("dequeueBuffer: error waiting for fence: %#x", eglGetError());
496 LOGE("dequeueBuffer: timeout waiting for fence");
498 eglDestroySyncKHR(dpy, fence);
802 EGLSyncKHR fence = eglCreateSyncKHR(dpy, EGL_SYNC_FENCE_KHR, local
804 if (fence == EGL_NO_SYNC_KHR) {
805 LOGE("updateTexImage: error creating fence: %#x"
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Context.cpp 22 #include "libGLESv2/Fence.h"
838 mFenceMap[handle] = new Fence;
896 void Context::deleteFence(GLuint fence)
898 FenceMap::iterator fenceObject = mFenceMap.find(fence);
1045 Fence *Context::getFence(unsigned int handle)
1047 FenceMap::iterator fence = mFenceMap.find(handle); local
1049 if (fence == mFenceMap.end())
1055 return fence->second;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 7144 SDValue fence = atomic.getOperand(0); local
    [all...]

Completed in 440 milliseconds