HomeSort by relevance Sort by last modified time
    Searched full:mfence (Results 1 - 25 of 127) sorted by null

1 2 3 4 5 6

  /external/chromium_org/third_party/angle/src/libGLESv2/
Fence.cpp 32 mFence = renderer->createFence();
37 delete mFence;
44 return (mFence->isSet() ? GL_TRUE : GL_FALSE);
49 mFence->set();
58 bool result = mFence->test(true);
66 ASSERT(mFence->isSet());
68 while (!mFence->test(true))
76 ASSERT(mFence->isSet());
90 mStatus = (mFence->test(false) ? GL_TRUE : GL_FALSE);
104 mFence = renderer->createFence()
    [all...]
Fence.h 42 rx::FenceImpl *mFence;
64 rx::FenceImpl *mFence;
  /frameworks/base/libs/hwui/
Fence.h 46 mFence = eglCreateSyncKHR(mDisplay, EGL_SYNC_FENCE_KHR, NULL);
48 mFence = EGL_NO_SYNC_KHR;
57 if (mFence != EGL_NO_SYNC_KHR) {
58 eglDestroySyncKHR(mDisplay, mFence);
70 EGLint waitStatus = eglClientWaitSyncKHR(mDisplay, mFence,
80 EGLSyncKHR mFence;
101 mFence.wait(mTimeout);
106 Fence mFence;
  /external/llvm/test/CodeGen/X86/
mfence.ll 3 ; RUN: llc < %s -march=x86 -mattr=+sse2 | grep mfence
  /frameworks/native/libs/gui/
BufferItem.cpp 44 bufferItem.mFence = mFence;
78 if (mFence != 0) {
79 c += mFence->getFlattenedSize();
90 if (mFence != 0) {
91 c += mFence->getFdCount();
117 if (mFence != 0) {
118 status_t err = mFence->flatten(buffer, size, fds, count);
160 mFence = new Fence();
161 status_t err = mFence->unflatten(buffer, size, fds, count)
    [all...]
ConsumerBase.cpp 97 mSlots[slotIndex].mFence = Fence::NO_FENCE;
194 mSlots[item->mBuf].mFence = item->mFence;
218 if (!mSlots[slot].mFence.get()) {
219 mSlots[slot].mFence = fence;
223 mSlots[slot].mFence, fence);
228 mSlots[slot].mFence = fence;
231 mSlots[slot].mFence = mergedFence;
250 display, eglFence, mSlots[slot].mFence);
255 mSlots[slot].mFence = Fence::NO_FENCE
    [all...]
IGraphicBufferConsumer.cpp 70 if (mFence != 0) {
71 c += mFence->getFlattenedSize();
82 if (mFence != 0) {
83 c += mFence->getFdCount();
119 if (mFence != 0) {
120 status_t err = mFence->flatten(buffer, size, fds, count);
162 mFence = new Fence();
163 status_t err = mFence->unflatten(buffer, size, fds, count);
CpuConsumer.cpp 130 if (b.mFence.get()) {
135 b.mFence->dup());
156 if (b.mFence.get()) {
161 b.mFence->dup());
  /frameworks/base/services/core/java/com/android/server/location/
GeofenceState.java 35 public final Geofence mFence;
51 mFence = fence;
72 boolean inside = mDistanceToCenter <= Math.max(mFence.getRadius(), location.getAccuracy());
95 return Math.abs(mFence.getRadius() - mDistanceToCenter);
112 return String.format("%s d=%.0f %s", mFence.toString(), mDistanceToCenter, state);
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/
system_32.h 21 #define mb() alternative("lock; addl $0,0(%%esp)", "mfence", X86_FEATURE_XMM2)
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/
system_32.h 21 #define mb() alternative("lock; addl $0,0(%%esp)", "mfence", X86_FEATURE_XMM2)
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/
system_32.h 21 #define mb() alternative("lock; addl $0,0(%%esp)", "mfence", X86_FEATURE_XMM2)
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/
system_32.h 21 #define mb() alternative("lock; addl $0,0(%%esp)", "mfence", X86_FEATURE_XMM2)
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/asm/
system_32.h 21 #define mb() alternative("lock; addl $0,0(%%esp)", "mfence", X86_FEATURE_XMM2)
  /frameworks/native/include/gui/
BufferSlot.h 112 // mFence, below.)
115 // mFence is a fence which will signal when work initiated by the
123 // buffer, and mFence is set to NO_FENCE.
124 sp<Fence> mFence;
BufferItem.h 57 // mFence is a fence that will signal when the buffer is idle.
58 sp<Fence> mFence;
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
atomicops_internals_x86_gcc.h 121 // "mfence" is guaranteed to exist.
123 __asm__ __volatile__("mfence" : : : "memory");
135 __asm__ __volatile__("mfence" : : : "memory");
136 } else { // mfence is faster but not present on PIII
145 __asm__ __volatile__("mfence" : : : "memory");
  /external/chromium_org/v8/src/base/
atomicops_internals_x86_gcc.h 100 // "mfence" is guaranteed to exist.
102 __asm__ __volatile__("mfence" : : : "memory");
114 __asm__ __volatile__("mfence" : : : "memory");
115 } else { // mfence is faster but not present on PIII
124 __asm__ __volatile__("mfence" : : : "memory");
  /external/chromium_org/third_party/webrtc/modules/audio_device/android/
single_rw_fifo.cc 39 // mfence exists on x64 and x86 platforms containing SSE2.
44 __asm__ __volatile__("mfence" : : : "memory");
  /bionic/libc/private/
bionic_atomic_x86.h 24 __asm__ __volatile__ ( "mfence" : : : "memory" );
  /development/ndk/platforms/android-9/arch-x86/include/asm/
system_32.h 27 #define mb() alternative("lock; addl $0,0(%%esp)", "mfence", X86_FEATURE_XMM2)
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/asm/
system_32.h 27 #define mb() alternative("lock; addl $0,0(%%esp)", "mfence", X86_FEATURE_XMM2)
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/asm/
system_32.h 27 #define mb() alternative("lock; addl $0,0(%%esp)", "mfence", X86_FEATURE_XMM2)
  /prebuilts/ndk/9/platforms/android-12/arch-x86/usr/include/asm/
system_32.h 27 #define mb() alternative("lock; addl $0,0(%%esp)", "mfence", X86_FEATURE_XMM2)
  /prebuilts/ndk/9/platforms/android-13/arch-x86/usr/include/asm/
system_32.h 27 #define mb() alternative("lock; addl $0,0(%%esp)", "mfence", X86_FEATURE_XMM2)

Completed in 744 milliseconds

1 2 3 4 5 6