Searched refs:vtable (Results 1 - 25 of 55) sorted by relevance

123

/external/bison/lib/
H A Dbbitset.h89 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
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/va/
H A Dftab.c35 static struct VADriverVTable vtable = variable in typeref:struct:VADriverVTable
135 return vtable;
H A Dva_context.c62 ctx->vtable = vlVaGetVtable();
/external/mesa3d/src/gallium/state_trackers/va/
H A Dftab.c35 static struct VADriverVTable vtable = variable in typeref:struct:VADriverVTable
135 return vtable;
H A Dva_context.c62 ctx->vtable = vlVaGetVtable();
/external/chromium_org/chrome_frame/
H A Dvtable_patch_manager_unittest.cc33 // Retrieve the vtable for an interface.
54 // Make a backup of the test vtable and it's page protection settings.
55 void* vtable = GetVtable(&factory_); local
57 ASSERT_TRUE(::VirtualQuery(vtable, &info, sizeof(info)));
59 memcpy(vtable_backup_, vtable, sizeof(vtable_backup_));
66 // Restore the test vtable and its page protection settings.
67 void* vtable = GetVtable(&factory_); local
69 EXPECT_TRUE(::VirtualProtect(vtable, sizeof(vtable_backup_),
71 memcpy(vtable, vtable_backup_, sizeof(vtable_backup_));
72 EXPECT_TRUE(::VirtualProtect(vtable, sizeo
192 PROC vtable[kFunctionCount]; local
[all...]
H A Dvtable_patch_manager.cc70 Vtable vtable = GetIFVTable(unknown); local
71 DCHECK(vtable);
90 PROC original_fn = vtable[it->index_];
117 if (!::VirtualProtect(&vtable[it->index_], sizeof(PROC),
126 original_fn = vtable[it->index_];
129 reinterpret_cast<void**>(&vtable[it->index_]), stub->code(),
132 if (!::VirtualProtect(&vtable[it->index_], sizeof(PROC), protect,
207 // See if we've already patched this vtable before.
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dcreate_context.c73 if (direct && psc->vtable->create_context_attribs) {
78 gc = psc->vtable->create_context_attribs(psc, cfg, share, num_attribs,
114 gc->vtable->destroy(gc);
H A Dapplegl_glx.c146 gc->vtable = &applegl_context_vtable;
154 gc->vtable->destroy(gc);
182 psc->vtable = &applegl_screen_vtable;
H A Dglxcurrent.c255 oldGC->vtable->unbind(oldGC, gc);
269 if (gc->vtable->bind(gc, oldGC, draw, read) != Success) {
291 oldGC->vtable->destroy(oldGC);
H A Ddrisw_glx.c48 __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/
H A Dcreate_context.c73 if (direct && psc->vtable->create_context_attribs) {
78 gc = psc->vtable->create_context_attribs(psc, cfg, share, num_attribs,
114 gc->vtable->destroy(gc);
H A Dapplegl_glx.c146 gc->vtable = &applegl_context_vtable;
154 gc->vtable->destroy(gc);
182 psc->vtable = &applegl_screen_vtable;
H A Dglxcurrent.c255 oldGC->vtable->unbind(oldGC, gc);
269 if (gc->vtable->bind(gc, oldGC, draw, read) != Success) {
291 oldGC->vtable->destroy(oldGC);
H A Ddrisw_glx.c48 __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/
H A Dfake_glx_screen.h31 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/tests/
H A Dfake_glx_screen.h31 this->vtable = &fake_glx_screen::vt;
62 this->vtable = &fake_glx_screen_direct::vt;
75 this->vtable = &fake_glx_context::vt;
/external/chromium_org/third_party/libva/va/glx/
H A Dva_glx_private.h81 struct VADriverVTableGLX vtable; member in struct:VADriverContextGLX
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DClassPath.java600 private final VirtualMethod[] vtable; field in class:ClassPath.ClassDef
603 //If the value is non-negative, it is a vtable index
644 vtable = superclass.vtable;
661 vtable = null;
676 vtable = superclass.vtable;
704 vtable = loadVtable(classInfo);
710 methodLookup = new HashMap<String, Integer>((int)Math.ceil(((vtable.length + directMethodCount)/ .7f)), .75f);
711 for (int i=0; i<vtable
974 addToVtable(VirtualMethod[] localMethods, List<VirtualMethod> vtable) argument
[all...]
/external/chromium_org/ppapi/cpp/
H A Dmodule.cc191 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;
190 AddPluginInterface(const std::string& interface_name, const void* vtable) argument
H A Dmodule.h102 /// <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);
/external/chromium_org/dbus/
H A Dexported_object.cc167 DBusObjectPathVTable vtable = {}; local
168 vtable.message_function = &ExportedObject::HandleMessageThunk;
169 vtable.unregister_function = &ExportedObject::OnUnregisteredThunk;
171 &vtable,
H A Dmock_bus.h59 const DBusObjectPathVTable* vtable,
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dcheck-for-weak-vtables-and-externals72 if (/weak external vtable for (.*)$/) {
87 print "ERROR: $shortName has a weak vtable in it ($executablePath)\n";
/external/chromium_org/third_party/libva/va/egl/
H A Dva_egl_private.h93 struct VADriverVTablePrivEGL vtable; member in struct:VADriverContextEGL

Completed in 9482 milliseconds

123