Searched refs:condition (Results 1 - 15 of 15) sorted by relevance

/development/ndk/platforms/android-3/include/asm-generic/
H A Dbug.h22 #define BUG_ON(condition) do { if (condition) ; } while(0)
26 #define WARN_ON(condition) do { if (condition) ; } while(0)
29 #define WARN_ON_ONCE(condition) ({ static int __warn_once = 1; int __ret = 0; if (unlikely((condition) && __warn_once)) { __warn_once = 0; WARN_ON(1); __ret = 1; } __ret; })
/development/ndk/platforms/android-3/include/linux/
H A Dkernel.h33 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
H A Dinput.h689 struct ff_condition_effect condition[2]; member in union:ff_effect::__anon126
/development/ndk/platforms/android-3/include/linux/raid/
H A Dmd_k.h180 #define __wait_event_lock_irq(wq, condition, lock, cmd) do { wait_queue_t __wait; init_waitqueue_entry(&__wait, current); add_wait_queue(&wq, &__wait); for (;;) { set_current_state(TASK_UNINTERRUPTIBLE); if (condition) break; spin_unlock_irq(&lock); cmd; schedule(); spin_lock_irq(&lock); } current->state = TASK_RUNNING; remove_wait_queue(&wq, &__wait); } while (0)
182 #define wait_event_lock_irq(wq, condition, lock, cmd) do { if (condition) break; __wait_event_lock_irq(wq, condition, lock, cmd); } while (0)
/development/ndk/platforms/android-9/include/EGL/
H A Deglext.h203 EGLSyncNV eglCreateFenceSyncNV (EGLDisplay dpy, EGLenum condition, const EGLint *attrib_list);
210 typedef EGLSyncNV (EGLAPIENTRYP PFNEGLCREATEFENCESYNCNVPROC) (EGLDisplay dpy, EGLenum condition, const EGLint *attrib_list);
/development/tools/emulator/opengl/system/GLESv1_enc/
H A DGLEncoder.cpp31 #define SET_ERROR_IF(condition,err) if((condition)) { \
38 #define RET_AND_SET_ERROR_IF(condition,err,ret) if((condition)) { \
H A Dgl_enc.h296 void glSetFenceNV_enc(void *self , GLuint fence, GLenum condition);
H A Dgl_entry.cpp281 void glSetFenceNV(GLuint fence, GLenum condition);
1953 void glSetFenceNV(GLuint fence, GLenum condition) argument
1956 ctx->glSetFenceNV(ctx, fence, condition);
H A Dgl_enc.cpp4555 void glSetFenceNV_enc(void *self , GLuint fence, GLenum condition) argument
4568 memcpy(ptr, &condition, 4); ptr += 4;
/development/tools/emulator/opengl/system/GLESv2_enc/
H A DGL2Encoder.cpp30 #define SET_ERROR_IF(condition,err) if((condition)) { \
37 #define RET_AND_SET_ERROR_IF(condition,err,ret) if((condition)) { \
H A Dgl2_entry.cpp189 void glSetFenceNV(GLuint fence, GLenum condition);
1316 void glSetFenceNV(GLuint fence, GLenum condition) argument
1319 ctx->glSetFenceNV(ctx, fence, condition);
H A Dgl2_enc.h205 void glSetFenceNV_enc(void *self , GLuint fence, GLenum condition);
/development/ndk/platforms/android-5/include/GLES2/
H A Dgl2ext.h707 GL_APICALL void GL_APIENTRY glSetFenceNV (GLuint fence, GLenum condition);
715 typedef void (GL_APIENTRYP PFNGLSETFENCENVPROC) (GLuint fence, GLenum condition);
/development/ndk/platforms/android-4/include/GLES/
H A Dglext.h920 GL_API void GL_APIENTRY glSetFenceNV (GLuint fence, GLenum condition);
928 typedef void (GL_APIENTRYP PFNGLSETFENCENVPROC) (GLuint fence, GLenum condition);
/development/tools/emulator/opengl/tests/gles_android_wrapper/
H A Dgles.cpp1316 void glSetFenceNV(GLuint fence, GLenum condition) argument
1318 getDispatch()->glSetFenceNV(fence, condition);

Completed in 951 milliseconds