HomeSort by relevance Sort by last modified time
    Searched refs:vtable (Results 1 - 25 of 74) sorted by null

1 2 3

  /hardware/intel/common/libva/va/drm/
va_drm_auth_x11.c 56 DRMAuthX11VTable vtable; member in struct:drm_auth_x11
84 struct drm_auth_x11_vtable *vtable; local
101 vtable = &auth->vtable;
102 if (!get_symbol(RTLD_DEFAULT, &vtable->x11_open_display, "XOpenDisplay"))
104 if (!get_symbol(RTLD_DEFAULT, &vtable->x11_close_display, "XCloseDisplay"))
106 if (!get_symbol(auth->handle, &vtable->va_dri2_query_extension,
109 if (!get_symbol(auth->handle, &vtable->va_dri2_query_version,
112 if (!get_symbol(auth->handle, &vtable->va_dri2_authenticate,
116 auth->display = vtable->x11_open_display(NULL)
145 DRMAuthX11VTable * const vtable = &auth->vtable; local
    [all...]
  /external/bison/lib/
bbitset.h 89 const struct bitset_vtable *vtable; member in struct:bbitset_struct
106 #define BITSET_VTABLE_(SRC) (SRC)->b.vtable
159 ((BSET1)->b.vtable == (BSET2)->b.vtable)
174 #define BITSET_RESIZE_(DST, SIZE) (DST)->b.vtable->resize (DST, SIZE)
177 #define BITSET_SIZE_(SRC) (SRC)->b.vtable->size (SRC)
180 #define BITSET_COUNT_(SRC) (SRC)->b.vtable->count (SRC)
183 #define BITSET_TYPE_(DST) (DST)->b.vtable->type
186 #define BITSET_SET_(DST, BITNO) (DST)->b.vtable->set (DST, BITNO)
189 #define BITSET_RESET_(DST, BITNO) (DST)->b.vtable->reset (DST, BITNO
    [all...]
  /abi/cpp/src/
dynamic_cast.cc 52 // Return the vtable pointer of a polymorphic object pointed by p.
60 // Return a pointer to a __class_type_info in a vtable.
63 get_class_type_info(const void* vtable)
65 const void* type_info_ptr = adjust_pointer(vtable, -sizeof(void*));
69 // Return offset to object in a vtable.
72 get_offset_to_top(const void* vtable)
74 const void* type_info_ptr_address = adjust_pointer(vtable, -sizeof(void*));
86 const void* vtable = get_vtable(p); local
87 std::ptrdiff_t offset_to_top = get_offset_to_top(vtable);
99 const void* vtable,
140 const void* vtable = get_vtable(object); local
238 const void* vtable = get_vtable(object); local
295 const void* vtable = get_vtable(most_derived_object); local
    [all...]
  /ndk/sources/cxx-stl/gabi++/src/
dynamic_cast.cc 52 // Return the vtable pointer of a polymorphic object pointed by p.
60 // Return a pointer to a __class_type_info in a vtable.
63 get_class_type_info(const void* vtable)
65 const void* type_info_ptr = adjust_pointer(vtable, -sizeof(void*));
69 // Return offset to object in a vtable.
72 get_offset_to_top(const void* vtable)
74 const void* type_info_ptr_address = adjust_pointer(vtable, -sizeof(void*));
86 const void* vtable = get_vtable(p); local
87 std::ptrdiff_t offset_to_top = get_offset_to_top(vtable);
99 const void* vtable,
140 const void* vtable = get_vtable(object); local
238 const void* vtable = get_vtable(object); local
295 const void* vtable = get_vtable(most_derived_object); local
    [all...]
vmi_class_type_info.cc 57 void* vtable = *reinterpret_cast<void**>(cur_base_ptr); local
59 static_cast<uint8_t*>(vtable) + cur_base_offset);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/va/
ftab.c 35 static struct VADriverVTable vtable = variable in typeref:struct:VADriverVTable
135 return vtable;
  /external/mesa3d/src/gallium/state_trackers/va/
ftab.c 35 static struct VADriverVTable vtable = variable in typeref:struct:VADriverVTable
135 return vtable;
  /hardware/intel/common/libva/va/
va.c 47 #define CHECK_VTABLE(s, ctx, func) if (!va_checkVtable(ctx->vtable->va##func, #func)) s = VA_STATUS_ERROR_UNKNOWN;
159 va_errorMessage("No valid vtable entry for va%s\n", function);
272 struct VADriverVTable *vtable = ctx->vtable; local
276 if (!vtable) {
277 vtable = calloc(1, sizeof(*vtable));
278 if (!vtable)
281 ctx->vtable = vtable;
    [all...]
  /hardware/intel/common/libva/va/glx/
va_glx.c 43 VADriverVTableGLXP vtable; \
44 vtable = &VA_DRIVER_CONTEXT_GLX(ctx)->vtable; \
45 if (!vtable->va##func##GLX) \
47 status = vtable->va##func##GLX args; \
va_glx_private.h 81 struct VADriverVTableGLX vtable; member in struct:VADriverContextGLX
  /hardware/intel/common/libva/va/wayland/
va_wayland.c 120 struct VADriverVTableWayland *vtable; local
140 vtable = calloc(1, sizeof(*vtable));
141 if (!vtable)
143 pDriverContext->vtable_wayland = vtable;
145 vtable->version = VA_WAYLAND_API_VERSION;
  /external/chromium_org/third_party/mesa/src/src/glx/
create_context.c 73 if (direct && psc->vtable->create_context_attribs) {
78 gc = psc->vtable->create_context_attribs(psc, cfg, share, num_attribs,
114 gc->vtable->destroy(gc);
applegl_glx.c 146 gc->vtable = &applegl_context_vtable;
154 gc->vtable->destroy(gc);
182 psc->vtable = &applegl_screen_vtable;
glxcurrent.c 255 oldGC->vtable->unbind(oldGC, gc);
269 if (gc->vtable->bind(gc, oldGC, draw, read) != Success) {
291 oldGC->vtable->destroy(oldGC);
  /external/chromium_org/third_party/mesa/src/src/glx/tests/
fake_glx_screen.h 31 this->vtable = &fake_glx_screen::vt;
62 this->vtable = &fake_glx_screen_direct::vt;
75 this->vtable = &fake_glx_context::vt;
  /external/mesa3d/src/glx/
create_context.c 73 if (direct && psc->vtable->create_context_attribs) {
78 gc = psc->vtable->create_context_attribs(psc, cfg, share, num_attribs,
114 gc->vtable->destroy(gc);
applegl_glx.c 146 gc->vtable = &applegl_context_vtable;
154 gc->vtable->destroy(gc);
182 psc->vtable = &applegl_screen_vtable;
glxcurrent.c 255 oldGC->vtable->unbind(oldGC, gc);
269 if (gc->vtable->bind(gc, oldGC, draw, read) != Success) {
291 oldGC->vtable->destroy(oldGC);
  /external/mesa3d/src/glx/tests/
fake_glx_screen.h 31 this->vtable = &fake_glx_screen::vt;
62 this->vtable = &fake_glx_screen_direct::vt;
75 this->vtable = &fake_glx_context::vt;
  /external/chromium_org/ppapi/cpp/
module.h 102 /// <code>vtable</code> will be returned.
109 /// and vtable with no effect. However, it may not be used to register a
110 /// different vtable for an already-registered interface. It will assert for
115 /// @param[in,out] vtable The vtable to return for
118 const void* vtable);
module.cc 191 const void* vtable) {
193 // handled, and if it is, that we're re-registering with the same vtable.
198 PP_DCHECK(vtable == existing_interface);
201 additional_interfaces_[interface_name] = vtable;
  /external/chromium_org/third_party/libva/va/glx/
va_glx_private.h 81 struct VADriverVTableGLX vtable; member in struct:VADriverContextGLX
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
ClassProto.java 59 * A class "prototype". This contains things like the interfaces, the superclass, the vtable and the instance fields
349 List<Method> vtable = getVtable(); local
350 if (vtableIndex < 0 || vtableIndex >= vtable.size()) {
354 return vtable.get(vtableIndex);
571 List<Method> vtable = Lists.newArrayList();
578 vtable.addAll(((ClassProto)classPath.getClass("Ljava/lang/Object;")).getVtable());
580 return vtable;
585 vtable.addAll(superclass.getVtable());
587 // if the superclass's vtable wasn't fully resolved, then we can't know where the new methods added by this
591 return vtable;
    [all...]
  /external/chromium_org/dbus/
exported_object.cc 160 DBusObjectPathVTable vtable = {}; local
161 vtable.message_function = &ExportedObject::HandleMessageThunk;
162 vtable.unregister_function = &ExportedObject::OnUnregisteredThunk;
164 &vtable,
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
check-for-weak-vtables-and-externals 72 if (/weak external vtable for (.*)$/) {
87 print "ERROR: $shortName has a weak vtable in it ($executablePath)\n";

Completed in 940 milliseconds

1 2 3