Searched refs:size_prefix (Results 1 – 4 of 4) sorted by relevance
/external/flatbuffers/java/com/google/flatbuffers/ |
D | FlatBufferBuilder.java | 842 protected void finish(int root_table, boolean size_prefix) { in finish() argument 843 prep(minalign, SIZEOF_INT + (size_prefix ? SIZEOF_INT : 0)); in finish() 845 if (size_prefix) { in finish() 878 protected void finish(int root_table, String file_identifier, boolean size_prefix) { in finish() argument 879 prep(minalign, SIZEOF_INT + FILE_IDENTIFIER_LENGTH + (size_prefix ? SIZEOF_INT : 0)); in finish() 886 finish(root_table, size_prefix); in finish()
|
/external/flatbuffers/lobster/ |
D | flatbuffers.lobster | 171 def __Finish(root_table:int, size_prefix:int): 176 if size_prefix: 180 if size_prefix:
|
/external/flatbuffers/src/ |
D | idl_gen_general.cpp | 1436 std::string size_prefix[] = { "", "SizePrefixed" }; in GenStruct() local 1439 code += FunctionStart('F') + "inish" + size_prefix[i] + in GenStruct() 1444 code += " builder." + FunctionStart('F') + "inish" + size_prefix[i] + in GenStruct()
|
/external/flatbuffers/include/flatbuffers/ |
D | flatbuffers.h | 1846 void Finish(uoffset_t root, const char *file_identifier, bool size_prefix) { 1850 PreAlign((size_prefix ? sizeof(uoffset_t) : 0) + sizeof(uoffset_t) + 1859 if (size_prefix) { PushElement(GetSize()); }
|