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

1 2

  /external/llvm/test/MC/ARM/
elf-reloc-03.s 16 movw r1, :lower16:vtable
20 vtable: label
25 // OBJ: 0x{{[0-9,A-F]+}} R_ARM_MOVW_ABS_NC vtable
  /external/mesa3d/src/gallium/state_trackers/va/
ftab.c 35 static struct VADriverVTable vtable = variable in typeref:struct:VADriverVTable
135 return vtable;
  /ndk/sources/cxx-stl/gabi++/src/
vmi_class_type_info.cc 57 void* vtable = *reinterpret_cast<void**>(cur_base_ptr); local
59 static_cast<uint8_t*>(vtable) + cur_base_offset);
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...]
  /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;
  /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...]
  /external/avahi/avahi-daemon/
dbus-protocol.c 416 static const DBusObjectPathVTable vtable = { local
457 dbus_connection_register_object_path(c, i->path, &vtable, i);
550 static const DBusObjectPathVTable vtable = { local
600 dbus_connection_register_object_path(c, i->path, &vtable, i);
606 static const DBusObjectPathVTable vtable = { local
655 dbus_connection_register_object_path(c, i->path, &vtable, i);
661 static const DBusObjectPathVTable vtable = { local
711 dbus_connection_register_object_path(c, i->path, &vtable, i);
770 static const DBusObjectPathVTable vtable = { local
824 dbus_connection_register_object_path(c, i->path, &vtable, i)
833 static const DBusObjectPathVTable vtable = { local
887 static const DBusObjectPathVTable vtable = { local
939 static const DBusObjectPathVTable vtable = { local
    [all...]
  /external/dbus/dbus/
dbus-server-protected.h 59 const DBusServerVTable *vtable; /**< Virtual methods for this instance. */ member in struct:DBusServer
95 const DBusServerVTable *vtable,
dbus-transport-protected.h 84 const DBusTransportVTable *vtable; /**< Virtual methods for this instance. */ member in struct:DBusTransport
123 const DBusTransportVTable *vtable,
dbus-object-tree.c 49 const DBusObjectPathVTable *vtable,
384 * @param vtable the vtable used to traverse this subtree
385 * @param user_data user data to pass to methods in the vtable
394 const DBusObjectPathVTable *vtable,
401 _dbus_assert (vtable->message_function != NULL);
428 subtree->message_function = vtable->message_function;
429 subtree->unregister_function = vtable->unregister_function;
969 const DBusObjectPathVTable *vtable,
982 if (vtable)
1345 DBusObjectPathVTable vtable = { test_unregister_function, local
    [all...]
  /external/libchrome/dbus/
exported_object.cc 172 DBusObjectPathVTable vtable; local
173 memset(&vtable, 0, sizeof(vtable));
174 vtable.message_function = &ExportedObject::HandleMessageThunk;
175 vtable.unregister_function = &ExportedObject::OnUnregisteredThunk;
177 &vtable,
  /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...]
  /hardware/intel/common/libva/va/glx/
va_glx_private.h 81 struct VADriverVTableGLX vtable; member in struct:VADriverContextGLX
va_glx_impl.c 132 // Returns the OpenGL VTable
806 VADriverVTableGLXP vtable = (ctx)->vtable_glx; \
807 if (!vtable->va##func##GLX) \
810 VAStatus status = vtable->va##func##GLX args; \
946 status = ctx->vtable->vaPutSurface(
971 return ctx->vtable->vaSyncSurface(ctx, pSurfaceGLX->surface);
1054 /* === Private VA/GLX vtable initialization === */
1061 VADriverVTableGLXP vtable = &glx_ctx->vtable; local
1068 vtable->vaCreateSurfaceGLX = vaCreateSurfaceGLX_impl_driver
    [all...]
  /external/libcxxabi/src/
private_typeinfo.cpp 314 const char* vtable = *static_cast<const char*const*>(adjustedPtr); local
315 offset_to_base = *reinterpret_cast<const ptrdiff_t*>(vtable + offset_to_base);
606 void **vtable = *static_cast<void ** const *>(static_ptr); local
607 ptrdiff_t offset_to_derived = reinterpret_cast<ptrdiff_t>(vtable[-2]);
609 const __class_type_info* dynamic_type = static_cast<const __class_type_info*>(vtable[-1]);
1246 const char* vtable = *static_cast<const char*const*>(current_ptr); local
1266 const char* vtable = *static_cast<const char*const*>(current_ptr); local
    [all...]
  /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
353 List<Method> vtable = getVtable(); local
354 if (vtableIndex < 0 || vtableIndex >= vtable.size()) {
358 return vtable.get(vtableIndex);
362 List<Method> vtable = getVtable(); local
363 for (int i=0; i<vtable.size(); i++) {
364 Method candidate = vtable.get(i);
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_helpers.c 535 DBusObjectPathVTable vtable = { local
550 if (!dbus_connection_try_register_object_path(con, path, &vtable,
dbus_old.c 667 DBusObjectPathVTable vtable = { local
687 if (!dbus_connection_register_fallback(con, wpa_s->dbus_path, &vtable,
  /hardware/intel/img/psb_video/src/
tng_vld_dec.c 488 struct format_vtable_s *vtable = &tng_yuv_processor_vtable; local
504 vtable->createContext(obj_context, NULL);
505 vtable->beginPicture(obj_context);
506 vtable->renderPicture(obj_context, &buffer_p, 1);
507 vtable->endPicture(obj_context);
508 vtable->destroyContext(obj_context);
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
private_typeinfo.cpp 310 const char* vtable = *static_cast<const char*const*>(adjustedPtr); local
311 offset_to_base = *reinterpret_cast<const ptrdiff_t*>(vtable + offset_to_base);
499 void** vtable = *(void***)static_ptr; local
500 ptrdiff_t offset_to_derived = reinterpret_cast<ptrdiff_t>(vtable[-2]);
502 const __class_type_info* dynamic_type = static_cast<const __class_type_info*>(vtable[-1]);
1137 const char* vtable = *static_cast<const char*const*>(current_ptr); local
1157 const char* vtable = *static_cast<const char*const*>(current_ptr); local
    [all...]
  /external/mesa3d/src/glx/
drisw_glx.c 48 __GLXDRIscreen vtable; member in struct:drisw_screen
388 if (shareList->vtable->destroy != drisw_destroy_context) {
414 pcp->base.vtable = &drisw_context_vtable;
499 pcp->base.vtable = &drisw_context_vtable;
695 psc->base.vtable = &drisw_screen_vtable;
696 psp = &psc->vtable;
dri_glx.c 67 __GLXDRIscreen vtable; member in struct:dri_screen
590 if (shareList->vtable->destroy != dri_destroy_context) {
625 pcp->base.vtable = &dri_context_vtable;
896 psc->base.vtable = &dri_screen_vtable;
897 psp = &psc->vtable;
  /hardware/intel/common/libva/va/
va_backend.h 433 struct VADriverVTable *vtable; member in struct:VADriverContext
  /art/patchoat/
patchoat.cc 713 auto* vtable = klass->GetVTable(); local
714 if (vtable != nullptr) {
715 vtable->Fixup(RelocatedCopyOfFollowImages(vtable), pointer_size, native_visitor);
    [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...]

Completed in 543 milliseconds

1 2