Home
last modified time | relevance | path

Searched refs:ANGLE_UNLIKELY (Results 1 – 15 of 15) sorted by relevance

/external/angle/src/common/
Dplatform.h115 #if !defined(ANGLE_LIKELY) || !defined(ANGLE_UNLIKELY)
118 # define ANGLE_UNLIKELY(x) __builtin_expect(!!(x), 0) macro
121 # define ANGLE_UNLIKELY(x) (x) macro
/external/angle/src/libANGLE/
DError.h126 if (ANGLE_UNLIKELY(IsError(ANGLE_LOCAL_VAR))) \
140 if (ANGLE_UNLIKELY(IsError(ANGLE_LOCAL_VAR))) \
153 if (ANGLE_UNLIKELY(!(EXPR))) \
DContext.cpp6294 if (ANGLE_UNLIKELY(IsError(result))) in dispatchCompute()
/external/angle/src/libANGLE/renderer/d3d/
DRendererD3D.h99 if (ANGLE_UNLIKELY(FAILED(ANGLE_LOCAL_VAR))) \
109 if (ANGLE_UNLIKELY(!(EXPR))) \
/external/angle/src/libANGLE/renderer/metal/
DSurfaceMtl.h30 if (ANGLE_UNLIKELY((EXPR) != angle::Result::Continue)) \
Dmtl_buffer_pool.mm115 if (ANGLE_UNLIKELY(contextMtl->getDisplay()->getFeatures().forceBufferGPUStorage.enabled))
Dmtl_common.h532 if (ANGLE_UNLIKELY(!(test))) \ in ANGLE_GL_OBJECTS_X()
Dmtl_render_utils.mm2593 ANGLE_UNLIKELY(
2598 if (ANGLE_UNLIKELY(threadGroupSize.width * threadGroupSize.height >
DProgramMtl.mm1536 ANGLE_UNLIKELY(!transformFeedback))
Dmtl_command_buffer.mm1443 if (ANGLE_UNLIKELY(clampedRect.width == 0 || clampedRect.height == 0))
/external/angle/src/libANGLE/renderer/vulkan/
DSurfaceVk.cpp795 if (ANGLE_UNLIKELY((vkResult != VK_SUCCESS) && (vkResult != VK_SUBOPTIMAL_KHR))) in initializeImpl()
1586 if (ANGLE_UNLIKELY((result == VK_ERROR_OUT_OF_DATE_KHR) || (result == VK_SUBOPTIMAL_KHR))) in doDeferredAcquireNextImage()
1607 if (ANGLE_UNLIKELY(result != VK_SUCCESS)) in acquireNextSwapchainImage()
1615 if (ANGLE_UNLIKELY(result != VK_SUCCESS)) in acquireNextSwapchainImage()
DCommandProcessor.cpp460 if (ANGLE_UNLIKELY(result == VK_ERROR_OUT_OF_DATE_KHR || result == VK_SUBOPTIMAL_KHR)) in processTask()
464 else if (ANGLE_UNLIKELY(result != VK_SUCCESS)) in processTask()
Dvk_utils.h1022 if (ANGLE_UNLIKELY(ANGLE_LOCAL_VAR != VK_SUCCESS)) \
DRendererVk.cpp2692 if (ANGLE_UNLIKELY(pipelineCacheSize < kPipelineCacheHeaderSize)) in syncPipelineCacheVk()
2697 else if (ANGLE_UNLIKELY(result == VK_INCOMPLETE)) in syncPipelineCacheVk()
/external/angle/src/libANGLE/renderer/gl/
Drenderergl_utils.cpp2477 if (ANGLE_UNLIKELY(error != GL_NO_ERROR)) in CheckError()