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

1 2 3

  /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...]
  /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;
va_context.c 62 ctx->vtable = vlVaGetVtable();
  /external/mesa3d/src/gallium/state_trackers/va/
ftab.c 35 static struct VADriverVTable vtable = variable in typeref:struct:VADriverVTable
135 return vtable;
va_context.c 62 ctx->vtable = vlVaGetVtable();
  /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);
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;
  /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);
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;
  /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/chromium_org/dbus/
exported_object.cc 160 DBusObjectPathVTable vtable = {}; local
161 vtable.message_function = &ExportedObject::HandleMessageThunk;
162 vtable.unregister_function = &ExportedObject::OnUnregisteredThunk;
164 &vtable,
mock_bus.h 59 const DBusObjectPathVTable* 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";
  /external/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);
495 void** vtable = *(void***)static_ptr; local
496 ptrdiff_t offset_to_derived = reinterpret_cast<ptrdiff_t>(vtable[-2]);
498 const __class_type_info* dynamic_type = static_cast<const __class_type_info*>(vtable[-1]);
1134 const char* vtable = *static_cast<const char*const*>(current_ptr); local
1154 const char* vtable = *static_cast<const char*const*>(current_ptr); local
    [all...]
  /external/chromium_org/content/renderer/
render_font_warmup_win.cc 174 PROC* vtable = *reinterpret_cast<PROC**>(factory); local
175 PROC* function_ptr = &vtable[kGetSystemFontCollectionVTableIndex];
  /external/chromium_org/third_party/cython/src/Cython/Utility/
ImportExport.c 513 static int __Pyx_SetVtable(PyObject *dict, void *vtable); /*proto*/
517 static int __Pyx_SetVtable(PyObject *dict, void *vtable) {
519 PyObject *ob = PyCapsule_New(vtable, 0, 0);
521 PyObject *ob = PyCObject_FromVoidPtr(vtable, 0);
552 PyErr_SetString(PyExc_RuntimeError, "invalid vtable found for imported type");

Completed in 673 milliseconds

1 2 3