Searched defs:vtable (Results 1 - 20 of 20) sorted by relevance

/external/llvm/test/MC/ARM/
H A Delf-reloc-03.s16 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/
H A Dftab.c35 static struct VADriverVTable vtable = variable in typeref:struct:VADriverVTable
135 return vtable;
/external/compiler-rt/test/cfi/cross-dso/
H A Dtarget_out_of_bounds.cpp28 void *vtable = mmap(nullptr, 4096, PROT_NONE, MAP_PRIVATE | MAP_ANONYMOUS, 0, 0); local
29 // Create an object with a vtable in an unaddressable memory region.
30 *(uintptr_t *)p = (uintptr_t)vtable + 64;
32 // CHECK-UNADDR: note: invalid vtable
35 // CHECK-UNADDR: note: invalid vtable
38 // Create an object with a vtable outside of any known DSO, but still in an
40 void *vtable = calloc(1, 128); local
41 *(uintptr_t *)p = (uintptr_t)vtable + 64;
43 // CHECK-ZERO: note: invalid vtable
46 // CHECK-ZERO: note: invalid vtable
51 void *vtable = calloc(1, 128); local
[all...]
/external/flatbuffers/php/
H A DTable.php36 * returns actual vtable offset
43 $vtable = $this->bb_pos - $this->bb->getInt($this->bb_pos); variable
44 return $vtable_offset < $this->bb->getShort($vtable) ? $this->bb->getShort($vtable + $vtable_offset) : 0;
H A DFlatbufferBuilder.php44 * @var array $vtable
46 protected $vtable; variable
753 if ($this->vtable == null || count($this->vtable) < $numfields) {
754 $this->vtable = array(); variable
759 $this->vtable[$i] = 0;
799 $this->vtable[$voffset] = $this->offset();
808 if ($this->vtable == null || !$this->nested) {
816 $off = ($this->vtable[$i] != 0) ? $vtableloc - $this->vtable[
865 $this->vtable = null; variable
[all...]
/external/flatbuffers/tests/
H A DphpTest.php283 $vtable = $offset - $view->getInt($offset); variable
284 $assert->ok($vtable_offset < $view->getShort($vtable));
285 $field_offset = $offset + $view->getShort($vtable + $vtable_offset);
/external/libchrome/dbus/
H A Dexported_object.cc172 DBusObjectPathVTable vtable = {}; local
173 vtable.message_function = &ExportedObject::HandleMessageThunk;
174 vtable.unregister_function = &ExportedObject::OnUnregisteredThunk;
176 &vtable,
H A Dbus.cc758 const DBusObjectPathVTable* vtable,
773 vtable,
757 TryRegisterObjectPath(const ObjectPath& object_path, const DBusObjectPathVTable* vtable, void* user_data, DBusError* error) argument
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_old.c667 DBusObjectPathVTable vtable = { local
687 if (!dbus_connection_register_fallback(con, wpa_s->dbus_path, &vtable,
H A Ddbus_new_helpers.c535 DBusObjectPathVTable vtable = { local
550 if (!dbus_connection_try_register_object_path(con, path, &vtable,
/external/libcxxabi/src/
H A Dprivate_typeinfo.cpp309 const char* vtable = *static_cast<const char*const*>(adjustedPtr); local
310 offset_to_base = *reinterpret_cast<const ptrdiff_t*>(vtable + offset_to_base);
632 void **vtable = *static_cast<void ** const *>(static_ptr); local
633 ptrdiff_t offset_to_derived = reinterpret_cast<ptrdiff_t>(vtable[-2]);
635 const __class_type_info* dynamic_type = static_cast<const __class_type_info*>(vtable[-1]);
1272 const char* vtable = *static_cast<const char*const*>(current_ptr); local
1273 offset_to_base = *reinterpret_cast<const ptrdiff_t*>(vtable + offset_to_base);
1292 const char* vtable = *static_cast<const char*const*>(current_ptr); local
1293 offset_to_base = *reinterpret_cast<const ptrdiff_t*>(vtable + offset_to_base);
/external/flatbuffers/java/com/google/flatbuffers/
H A DFlatBufferBuilder.java44 int[] vtable = null; // The vtable for the current table. field in class:FlatBufferBuilder
551 if (vtable == null || vtable.length < numfields) vtable = new int[numfields];
553 Arrays.fill(vtable, 0, vtable_in_use, 0);
559 * Add a `boolean` to a table at `o` into its vtable, with value `x` and default `d`.
561 * @param o The index into the vtable.
570 * Add a `byte` to a table at `o` into its vtable, with value `x` and default `d`.
572 * @param o The index into the vtable
[all...]
/external/mesa3d/src/glx/
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;
H A Ddri2_glx.c82 __GLXDRIscreen vtable; member in struct:dri2_screen
194 if (shareList->vtable->destroy != dri2_destroy_context) {
221 pcp->base.vtable = &dri2_context_vtable;
311 pcp->base.vtable = &dri2_context_vtable;
1132 psc->base.vtable = &dri2_screen_vtable;
1133 psp = &psc->vtable;
H A Ddri_glx.c67 __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;
H A Dglxclient.h259 const struct glx_context_vtable *vtable; member in struct:glx_context
482 const struct glx_screen_vtable *vtable; member in struct:glx_screen
/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/flatbuffers/include/flatbuffers/
H A Dflatbuffers.h834 // it is here is that storing objects in-line may cause vtable offsets
835 // to not fit anymore. It also leads to vtable duplication.
847 // This finishes one serialized object by generating the vtable if it's a
849 // resulting vtable offset.
853 // Write the vtable offset, which is the start of any Table.
856 // Write a vtable, which consists entirely of voffset_t elements.
877 // See if we already have generated a vtable with this exact same
889 // If this is a new vtable, remember it.
893 // Fill the vtable offset we created above.
895 // vtable i
1590 auto vtable = GetVTable(); local
1693 auto vtable = table->GetVTable(); local
[all...]
/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp2645 uint64_t vtable; // IMP * (64-bit pointer) member in struct:class64_t
2653 uint32_t vtable; /* IMP * (32-bit pointer) */ member in struct:class32_t
2952 sys::swapByteOrder(c.vtable);
2960 sys::swapByteOrder(c.vtable);
4626 outs() << " vtable " << format("0x%" PRIx64, c.vtable);
4627 name = get_symbol_64(offset + offsetof(struct class64_t, vtable), S, info,
4628 n_value, c.vtable);
4705 outs() << " vtable " << format("0x%" PRIx32, c.vtable);
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 530 milliseconds