Home
last modified time | relevance | path

Searched refs:vtables (Results 1 – 25 of 30) sorted by relevance

12

/third_party/flatbuffers/php/
DFlatbufferBuilder.php66 protected $vtables = array(); variable in Google\\FlatBuffers\\FlatbufferBuilder
839 $vt1 = $this->bb->capacity() - $this->vtables[$i];
850 $existing_vtable = $this->vtables[$i];
863 if ($this->num_vtables == count($this->vtables)) {
864 $vtables = $this->vtables;
865 $this->vtables = array();
867 for ($i = 0; $i < count($vtables) * 2; $i++) {
868 $this->vtables[$i] = ($i < count($vtables)) ? $vtables[$i] : 0;
871 $this->vtables[$this->num_vtables++] = $this->offset();
/third_party/flatbuffers/lua/flatbuffers/
Dbuilder.lua58 vtables = {}
76 local vtable = self.vtables
109 local i = #self.vtables
111 if self.vtables[i] == 0 then
112 table.remove(self.vtables,i)
117 i = #self.vtables
120 local vt2Offset = self.vtables[i]
160 table.insert(self.vtables, self:Offset())
/third_party/flatbuffers/ts/
Dbuilder.ts21 private vtables: number[] = [] property in Builder
58 this.vtables = [];
389 for (i = 0; i < this.vtables.length; i++) {
390 const vt2 = this.bb.capacity() - this.vtables[i];
397 existing_vtable = this.vtables[i];
412 this.vtables.push(this.offset());
/third_party/flatbuffers/go/
Dbuilder.go16 vtables []UOffsetT member
38 b.vtables = make([]UOffsetT, 0, 16) // sensible default capacity
49 if b.vtables != nil {
50 b.vtables = b.vtables[:0]
133 for i := len(b.vtables) - 1; i >= 0; i-- {
135 vt2Offset := b.vtables[i]
185 b.vtables = append(b.vtables, b.Offset())
/third_party/flatbuffers/java/com/google/flatbuffers/
DFlatBufferBuilder.java47 int[] vtables = new int[16]; // List of offsets of all vtables. field in FlatBufferBuilder
894 int vt1 = bb.capacity() - vtables[i]; in endTable()
903 existing_vtable = vtables[i]; in endTable()
917 if (num_vtables == vtables.length) vtables = Arrays.copyOf(vtables, num_vtables * 2); in endTable()
918 vtables[num_vtables++] = offset(); in endTable()
/third_party/ffmpeg/libavfilter/
Dvf_transpose.c52 TransVtable vtables[4]; member
221 TransVtable *v = &s->vtables[i]; in config_props_output()
240 TransVtable *v = &s->vtables[i]; in config_props_output()
288 TransVtable *v = &s->vtables[plane]; in filter_slice()
/third_party/flatbuffers/lobster/
Dflatbuffers.lobster43 vtables:[int] = []
94 // Search backwards through existing vtables, because similar vtables
100 reverse(vtables) vt2_offset:
124 vtables.push(head)
/third_party/abseil-cpp/absl/copts/
DGENERATED_copts.bzl37 "-Wno-weak-vtables",
138 "-Wno-weak-vtables",
DGENERATED_AbseilCopts.cmake36 "-Wno-weak-vtables"
137 "-Wno-weak-vtables"
Dconfigure_copts.gni48 "-Wno-weak-vtables",
/third_party/skia/third_party/externals/tint/samples/
DCMakeLists.txt36 -Wno-weak-vtables
/third_party/flatbuffers/python/flatbuffers/
Dbuilder.py132 self.vtables = {}
208 vt2Offset = self.vtables.get(vtKey)
253 self.vtables[vtKey] = self.Offset()
/third_party/skia/third_party/externals/tint/fuzzers/tint_regex_fuzzer/
DCMakeLists.txt69 -Wno-weak-vtables
/third_party/skia/third_party/externals/tint/fuzzers/tint_spirv_tools_fuzzer/
DCMakeLists.txt58 -Wno-weak-vtables
/third_party/skia/third_party/externals/tint/fuzzers/tint_ast_fuzzer/
DCMakeLists.txt105 -Wno-weak-vtables
/third_party/unity/
DCMakeLists.txt112 -Wweak-vtables
/third_party/abseil-cpp/absl/strings/
DBUILD.gn51 "-Wno-weak-vtables",
/third_party/flatbuffers/docs/source/
DLobsterUsage.md71 makes use of native support for writing binary values, and access of vtables.
DWhitePaper.md71 Tables have a low overhead in memory (since vtables are small and
/third_party/boost/libs/optional/doc/
D91_relnotes.qbk19 * Now surpressing warning `-Wweak-vtables`.
/third_party/flutter/skia/gn/
DBUILD.gn356 "-Wno-weak-vtables",
/third_party/skia/third_party/externals/tint/src/
DCMakeLists.txt34 -Wno-weak-vtables
1113 -Wno-weak-vtables
/third_party/skia/gn/skia/
DBUILD.gn487 "-Wno-weak-vtables",
/third_party/boost/libs/type_erasure/doc/
Dtype_erasure.qbk492 to implement given the decoupled vtables that
/third_party/boost/libs/histogram/doc/
Doverview.qbk53 … accept a different value type in this scheme. Classic polymorphism with vtables requires that all…

12