Home
last modified time | relevance | path

Searched refs:function_name (Results 1 – 8 of 8) sorted by relevance

/device/generic/opengl-transport/host/libs/virglrenderer/OpenGLESDispatch/
DEGLDispatch.cpp26 #define EGL_LOAD_FIELD(return_type, function_name, signature, callargs) \ argument
27 s_egl.function_name = (function_name##_t)dlsym(handle, #function_name);
29 #define EGL_LOAD_FIELD_WITH_EGL(return_type, function_name, signature, callargs) \ argument
30 if ((!s_egl.function_name) && s_egl.eglGetProcAddress) \
31 s_egl.function_name = (function_name##_t)s_egl.eglGetProcAddress(#function_name);
33 #define EGL_LOAD_OPTIONAL_FIELD(return_type, function_name, signature, callargs) \ argument
35 s_egl.function_name = (function_name##_t)s_egl.eglGetProcAddress(#function_name); \
36 if (!s_egl.function_name || !s_egl.eglGetProcAddress) \
37 EGL_LOAD_FIELD(return_type, function_name, signature, callargs)
DGLESv1Dispatch.cpp27 #define LOOKUP_SYMBOL(return_type, function_name, signature, callargs) \ argument
28 s_gles1.function_name = (function_name##_t)dlsym(handle, #function_name); \
29 if ((!s_gles1.function_name) && s_egl.eglGetProcAddress) \
30 s_gles1.function_name = (function_name##_t)s_egl.eglGetProcAddress(#function_name);
DGLESv3Dispatch.cpp27 #define LOOKUP_SYMBOL(return_type, function_name, signature, callargs) \ argument
28 s_gles3.function_name = (function_name##_t)dlsym(handle, #function_name); \
29 if ((!s_gles3.function_name) && s_egl.eglGetProcAddress) \
30 s_gles3.function_name = (function_name##_t)s_egl.eglGetProcAddress(#function_name);
DEGLDispatch.h25 #define EGL_DEFINE_TYPE(return_type, function_name, signature, callargs) \ argument
26 typedef return_type(EGLAPIENTRY* function_name##_t) signature;
28 #define EGL_DECLARE_MEMBER(return_type, function_name, signature, callargs) \ argument
29 function_name##_t function_name;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
Dfind.h108 stringlib_parse_args_finds(const char * function_name, PyObject *args, in stringlib_parse_args_finds() argument
119 strncpy(format + len, function_name, FORMAT_BUFFER_SIZE - len - 1); in stringlib_parse_args_finds()
156 stringlib_parse_args_finds_unicode(const char * function_name, PyObject *args, in stringlib_parse_args_finds_unicode() argument
162 if(stringlib_parse_args_finds(function_name, args, &tmp_substring, in stringlib_parse_args_finds_unicode()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
Dfind.h108 stringlib_parse_args_finds(const char * function_name, PyObject *args, in stringlib_parse_args_finds() argument
119 strncpy(format + len, function_name, FORMAT_BUFFER_SIZE - len - 1); in stringlib_parse_args_finds()
156 stringlib_parse_args_finds_unicode(const char * function_name, PyObject *args, in stringlib_parse_args_finds_unicode() argument
162 if(stringlib_parse_args_finds(function_name, args, &tmp_substring, in stringlib_parse_args_finds_unicode()
/device/generic/opengl-transport/host/libs/virglrenderer/
DGLESv1.cpp318 #define KNIT(return_type, function_name, signature, callargs) function_name = s_gles1.function_name; argument
DGLESv3.cpp539 #define KNIT(return_type, function_name, signature, callargs) function_name = s_gles3.function_name; argument