HomeSort by relevance Sort by last modified time
    Searched refs:root_table (Results 1 - 14 of 14) sorted by null

  /external/webp/src/utils/
huffman_utils.c 80 static int BuildHuffmanTable(HuffmanCode* const root_table, int root_bits,
83 HuffmanCode* table = root_table; // next available space in table
94 assert(root_table != NULL);
180 root_table[low].bits = (uint8_t)(table_bits + root_bits);
181 root_table[low].value = (uint16_t)((table - root_table) - low);
205 int VP8LBuildHuffmanTable(HuffmanCode* const root_table, int root_bits,
212 total_size = BuildHuffmanTable(root_table, root_bits,
218 total_size = BuildHuffmanTable(root_table, root_bits,
huffman_utils.h 81 int VP8LBuildHuffmanTable(HuffmanCode* const root_table, int root_bits,
  /external/flatbuffers/java/com/google/flatbuffers/
FlatBufferBuilder.java 837 * Finalize a buffer, pointing to the given `root_table`.
839 * @param root_table An offset to be added to the buffer.
842 protected void finish(int root_table, boolean size_prefix) {
844 addOffset(root_table);
    [all...]
  /external/brotli/c/dec/
huffman.h 97 BROTLI_INTERNAL void BrotliBuildCodeLengthsHuffmanTable(HuffmanCode* root_table,
102 BROTLI_INTERNAL uint32_t BrotliBuildHuffmanTable(HuffmanCode* root_table,
huffman.c 169 uint32_t BrotliBuildHuffmanTable(HuffmanCode* root_table,
196 table = root_table;
244 root_table[sub_key] = ConstructHuffmanCode(
246 (uint16_t)(((size_t)(table - root_table)) - sub_key));
  /external/flatbuffers/src/
reflection.cpp 166 // pass in your root_table type as well.
171 const reflection::Object *root_table = nullptr)
183 ResizeTable(root_table ? *root_table : *schema.root_table(), root);
301 const reflection::Object *root_table) {
310 ResizeContext(schema, start, delta, flatbuf, root_table);
322 const reflection::Object *root_table) {
336 ResizeContext(schema, start, delta_bytes, flatbuf, root_table);
idl_parser.cpp     [all...]
  /external/flatbuffers/php/
FlatbufferBuilder.php 898 * Finalize a buffer, pointing to the given `$root_table`.
899 * @param $root_table An offest to be added to the buffer.
901 * buffer before `$root_table`. This defaults to `null`.
906 public function finish($root_table, $identifier = null)
910 $this->addOffset($root_table);
924 $this->finish($root_table);
  /external/flatbuffers/include/flatbuffers/
reflection.h 398 // pass in your root_table type as well.
401 const reflection::Object *root_table = nullptr);
407 // pass in your root_table type as well.
411 const reflection::Object *root_table = nullptr);
416 const reflection::Object *root_table = nullptr) {
420 static_cast<uoffset_t>(sizeof(T)), flatbuf, root_table);
reflection_generated.h 1034 const Object *root_table() const { function in struct:reflection::FLATBUFFERS_FINAL_CLASS
    [all...]
  /external/libtextclassifier/utils/
lua-utils.cc 256 PushFlatbuffer(schema->root_table()->name()->c_str(), schema,
257 schema->root_table(), table, state_);
flatbuffers.cc 70 if (!schema_->root_table()) {
75 new ReflectiveFlatbuffer(schema_, schema_->root_table()));
  /external/flatbuffers/tests/
test.cpp 701 auto root_table = schema.root_table(); local
702 TEST_EQ_STR(root_table->name()->c_str(), "MyGame.Example.Monster");
703 auto fields = root_table->fields();
727 TEST_EQ(flatbuffers::Verify(schema, *schema.root_table(), flatbuf, length),
775 TEST_EQ(flatbuffers::Verify(schema, *schema.root_table(), flatbuf, length),
    [all...]
  /external/flatbuffers/js/
flatbuffers.js 675 * Finalize a buffer, poiting to the given `root_table`.
677 * @param {flatbuffers.Offset} root_table
680 flatbuffers.Builder.prototype.finish = function(root_table, opt_file_identifier) {
694 this.addOffset(root_table);

Completed in 213 milliseconds