ONE - On-device Neural Engine
|
Namespaces | |
namespace | grpc |
namespace | internal |
Data Structures | |
class | Allocator |
class | Array |
class | Array< Offset< T >, length > |
class | BaseGenerator |
struct | bool_constant |
class | CheckedError |
class | CodeWriter |
struct | CommentConfig |
struct | conditional |
class | DefaultAllocator |
struct | Definition |
class | DetachedBuffer |
struct | EnumDef |
struct | EnumVal |
struct | FieldDef |
class | FlatBufferBuilder |
Helper class to hold data needed in creation of a FlatBuffer. To serialize data, you typically call one of the Create*() functions in the generated code, which in turn call a sequence of StartTable / PushElement /AddElement /EndTable , or the builtin CreateString / CreateVector functions. Do this is depth-first order to build up a tree to the root. Finish() wraps up the buffer ready for transport. More... | |
class | FLATBUFFERS_FINAL_CLASS |
class | FlatCompiler |
class | FloatConstantGenerator |
struct | FnvTraits |
struct | FnvTraits< uint32_t > |
struct | FnvTraits< uint64_t > |
struct | IDLOptions |
struct | IndirectHelper |
struct | IndirectHelper< const T * > |
struct | IndirectHelper< Offset< T > > |
struct | integral_constant |
struct | is_enum |
struct | is_floating_point |
struct | is_same |
struct | is_scalar |
struct | is_unsigned |
struct | IterationVisitor |
struct | make_unsigned |
struct | NamedHashFunction |
struct | Namespace |
struct | nullopt_t |
class | numeric_limits |
struct | Offset |
class | Parser |
struct | ParserState |
class | pointer_inside_vector |
class | Registry |
struct | RPCCall |
struct | ServiceDef |
class | SimpleFloatConstantGenerator |
struct | String |
struct | StructDef |
class | SymbolTable |
struct | ToStringVisitor |
struct | Type |
class | TypedFloatConstantGenerator |
class | unique_ptr |
struct | Value |
class | Vector |
class | vector_downward |
struct | VectorIterator |
class | VectorOfAny |
struct | VectorReverseIterator |
Typedefs | |
typedef bool(* | LoadFileFunction) (const char *filename, bool binary, std::string *dest) |
typedef bool(* | FileExistsFunction) (const char *filename) |
Enumerations | |
enum | BaseType |
Functions | |
void | GenComment (const std::vector< std::string > &dc, std::string *code_ptr, const CommentConfig *config, const char *prefix="") |
template<typename T > | |
bool | IsTheSameAs (T e, T def) |
template<typename T > | |
bool | IsOutRange (const T &v, const T &low, const T &high) |
template<typename T > | |
bool | IsInRange (const T &v, const T &low, const T &high) |
void | EndianCheck () |
template<typename T > | |
FLATBUFFERS_CONSTEXPR size_t | AlignOf () |
template<typename T , typename U > | |
Vector< Offset< T > > * | VectorCast (Vector< Offset< U > > *ptr) |
template<typename T , typename U > | |
const Vector< Offset< T > > * | VectorCast (const Vector< Offset< U > > *ptr) |
template<typename T , uint16_t length> | |
Array< T, length > & | CastToArray (T(&arr)[length]) |
template<typename T , uint16_t length> | |
const Array< T, length > & | CastToArray (const T(&arr)[length]) |
template<typename E , typename T , uint16_t length> | |
Array< E, length > & | CastToArrayOfEnum (T(&arr)[length]) |
template<typename E , typename T , uint16_t length> | |
const Array< E, length > & | CastToArrayOfEnum (const T(&arr)[length]) |
uint8_t * | Allocate (Allocator *allocator, size_t size) |
void | Deallocate (Allocator *allocator, uint8_t *p, size_t size) |
uint8_t * | ReallocateDownward (Allocator *allocator, uint8_t *old_p, size_t old_size, size_t new_size, size_t in_use_back, size_t in_use_front) |
voffset_t | FieldIndexToOffset (voffset_t field_id) |
template<typename T , typename Alloc > | |
const T * | data (const std::vector< T, Alloc > &v) |
template<typename T , typename Alloc > | |
T * | data (std::vector< T, Alloc > &v) |
void | LogCompilerWarn (const std::string &warn) |
void | LogCompilerError (const std::string &err) |
template<typename T > | |
T | HashFnv1 (const char *input) |
template<typename T > | |
T | HashFnv1a (const char *input) |
template<> | |
uint16_t | HashFnv1< uint16_t > (const char *input) |
template<> | |
uint16_t | HashFnv1a< uint16_t > (const char *input) |
NamedHashFunction< uint16_t >::HashFunction | FindHashFunction16 (const char *name) |
NamedHashFunction< uint32_t >::HashFunction | FindHashFunction32 (const char *name) |
NamedHashFunction< uint64_t >::HashFunction | FindHashFunction64 (const char *name) |
bool | IsScalar (BaseType t) |
bool | IsInteger (BaseType t) |
bool | IsFloat (BaseType t) |
bool | IsLong (BaseType t) |
bool | IsBool (BaseType t) |
bool | IsOneByte (BaseType t) |
bool | IsUnsigned (BaseType t) |
size_t | SizeOf (BaseType t) |
bool | operator< (const Namespace &a, const Namespace &b) |
bool | IsString (const Type &type) |
bool | IsStruct (const Type &type) |
bool | IsUnion (const Type &type) |
bool | IsVector (const Type &type) |
bool | IsArray (const Type &type) |
bool | IsSeries (const Type &type) |
bool | IsEnum (const Type &type) |
size_t | InlineSize (const Type &type) |
size_t | InlineAlignment (const Type &type) |
bool | operator== (const EnumVal &lhs, const EnumVal &rhs) |
bool | operator!= (const EnumVal &lhs, const EnumVal &rhs) |
bool | EqualByName (const Type &a, const Type &b) |
std::string | MakeCamel (const std::string &in, bool first=true) |
std::string | MakeScreamingCamel (const std::string &in) |
bool | GenerateTextFromTable (const Parser &parser, const void *table, const std::string &tablename, std::string *text) |
bool | GenerateText (const Parser &parser, const void *flatbuffer, std::string *text) |
bool | GenerateTextFile (const Parser &parser, const std::string &path, const std::string &file_name) |
bool | GenerateJsonSchema (const Parser &parser, std::string *json) |
bool | GenerateBinary (const Parser &parser, const std::string &path, const std::string &file_name) |
bool | GenerateCPP (const Parser &parser, const std::string &path, const std::string &file_name) |
bool | GenerateCSharp (const Parser &parser, const std::string &path, const std::string &file_name) |
bool | GenerateDart (const Parser &parser, const std::string &path, const std::string &file_name) |
bool | GenerateJava (const Parser &parser, const std::string &path, const std::string &file_name) |
bool | GenerateTS (const Parser &parser, const std::string &path, const std::string &file_name) |
bool | GenerateGo (const Parser &parser, const std::string &path, const std::string &file_name) |
bool | GeneratePhp (const Parser &parser, const std::string &path, const std::string &file_name) |
bool | GeneratePython (const Parser &parser, const std::string &path, const std::string &file_name) |
bool | GenerateLobster (const Parser &parser, const std::string &path, const std::string &file_name) |
bool | GenerateLua (const Parser &parser, const std::string &path, const std::string &file_name) |
bool | GenerateRust (const Parser &parser, const std::string &path, const std::string &file_name) |
bool | GenerateJsonSchema (const Parser &parser, const std::string &path, const std::string &file_name) |
bool | GenerateKotlin (const Parser &parser, const std::string &path, const std::string &file_name) |
bool | GenerateSwift (const Parser &parser, const std::string &path, const std::string &file_name) |
std::string | GenerateFBS (const Parser &parser, const std::string &file_name) |
bool | GenerateFBS (const Parser &parser, const std::string &path, const std::string &file_name) |
std::string | TSMakeRule (const Parser &parser, const std::string &path, const std::string &file_name) |
std::string | CPPMakeRule (const Parser &parser, const std::string &path, const std::string &file_name) |
std::string | DartMakeRule (const Parser &parser, const std::string &path, const std::string &file_name) |
std::string | RustMakeRule (const Parser &parser, const std::string &path, const std::string &file_name) |
std::string | JavaCSharpMakeRule (const Parser &parser, const std::string &path, const std::string &file_name) |
std::string | TextMakeRule (const Parser &parser, const std::string &path, const std::string &file_names) |
std::string | BinaryMakeRule (const Parser &parser, const std::string &path, const std::string &file_name) |
bool | GenerateCppGRPC (const Parser &parser, const std::string &path, const std::string &file_name) |
bool | GenerateGoGRPC (const Parser &parser, const std::string &path, const std::string &file_name) |
bool | GenerateJavaGRPC (const Parser &parser, const std::string &path, const std::string &file_name) |
bool | GeneratePythonGRPC (const Parser &parser, const std::string &path, const std::string &file_name) |
bool | GenerateSwiftGRPC (const Parser &parser, const std::string &path, const std::string &file_name) |
bool | GenerateTSGRPC (const Parser &parser, const std::string &path, const std::string &file_name) |
size_t | InlineSize (ElementaryType type, const TypeTable *type_table) |
int64_t | LookupEnum (int64_t enum_val, const int64_t *values, size_t num_values) |
template<typename T > | |
const char * | EnumName (T tval, const TypeTable *type_table) |
void | IterateObject (const uint8_t *obj, const TypeTable *type_table, IterationVisitor *visitor) |
void | IterateValue (ElementaryType type, const uint8_t *val, const TypeTable *type_table, const uint8_t *prev_val, soffset_t vector_index, IterationVisitor *visitor) |
void | IterateFlatBuffer (const uint8_t *buffer, const TypeTable *type_table, IterationVisitor *callback) |
std::string | FlatBufferToString (const uint8_t *buffer, const TypeTable *type_table, bool multi_line=false, bool vector_delimited=true) |
bool | IsScalar (reflection::BaseType t) |
bool | IsInteger (reflection::BaseType t) |
bool | IsFloat (reflection::BaseType t) |
bool | IsLong (reflection::BaseType t) |
size_t | GetTypeSize (reflection::BaseType base_type) |
size_t | GetTypeSizeInline (reflection::BaseType base_type, int type_index, const reflection::Schema &schema) |
Table * | GetAnyRoot (uint8_t *flatbuf) |
const Table * | GetAnyRoot (const uint8_t *flatbuf) |
template<typename T > | |
T | GetFieldDefaultI (const reflection::Field &field) |
template<typename T > | |
T | GetFieldDefaultF (const reflection::Field &field) |
template<typename T > | |
T | GetFieldI (const Table &table, const reflection::Field &field) |
template<typename T > | |
T | GetFieldF (const Table &table, const reflection::Field &field) |
const String * | GetFieldS (const Table &table, const reflection::Field &field) |
template<typename T > | |
Vector< T > * | GetFieldV (const Table &table, const reflection::Field &field) |
VectorOfAny * | GetFieldAnyV (const Table &table, const reflection::Field &field) |
Table * | GetFieldT (const Table &table, const reflection::Field &field) |
const Struct * | GetFieldStruct (const Table &table, const reflection::Field &field) |
const Struct * | GetFieldStruct (const Struct &structure, const reflection::Field &field) |
int64_t | GetAnyValueI (reflection::BaseType type, const uint8_t *data) |
double | GetAnyValueF (reflection::BaseType type, const uint8_t *data) |
std::string | GetAnyValueS (reflection::BaseType type, const uint8_t *data, const reflection::Schema *schema, int type_index) |
int64_t | GetAnyFieldI (const Table &table, const reflection::Field &field) |
double | GetAnyFieldF (const Table &table, const reflection::Field &field) |
std::string | GetAnyFieldS (const Table &table, const reflection::Field &field, const reflection::Schema *schema) |
int64_t | GetAnyFieldI (const Struct &st, const reflection::Field &field) |
double | GetAnyFieldF (const Struct &st, const reflection::Field &field) |
std::string | GetAnyFieldS (const Struct &st, const reflection::Field &field) |
int64_t | GetAnyVectorElemI (const VectorOfAny *vec, reflection::BaseType elem_type, size_t i) |
double | GetAnyVectorElemF (const VectorOfAny *vec, reflection::BaseType elem_type, size_t i) |
std::string | GetAnyVectorElemS (const VectorOfAny *vec, reflection::BaseType elem_type, size_t i) |
template<typename T > | |
T * | GetAnyVectorElemPointer (const VectorOfAny *vec, size_t i) |
template<typename T > | |
T * | GetAnyVectorElemAddressOf (const VectorOfAny *vec, size_t i, size_t elem_size) |
template<typename T > | |
T * | GetAnyFieldAddressOf (const Table &table, const reflection::Field &field) |
template<typename T > | |
T * | GetAnyFieldAddressOf (const Struct &st, const reflection::Field &field) |
template<typename T > | |
bool | SetField (Table *table, const reflection::Field &field, T val) |
void | SetAnyValueI (reflection::BaseType type, uint8_t *data, int64_t val) |
void | SetAnyValueF (reflection::BaseType type, uint8_t *data, double val) |
void | SetAnyValueS (reflection::BaseType type, uint8_t *data, const char *val) |
bool | SetAnyFieldI (Table *table, const reflection::Field &field, int64_t val) |
bool | SetAnyFieldF (Table *table, const reflection::Field &field, double val) |
bool | SetAnyFieldS (Table *table, const reflection::Field &field, const char *val) |
void | SetAnyFieldI (Struct *st, const reflection::Field &field, int64_t val) |
void | SetAnyFieldF (Struct *st, const reflection::Field &field, double val) |
void | SetAnyFieldS (Struct *st, const reflection::Field &field, const char *val) |
void | SetAnyVectorElemI (VectorOfAny *vec, reflection::BaseType elem_type, size_t i, int64_t val) |
void | SetAnyVectorElemF (VectorOfAny *vec, reflection::BaseType elem_type, size_t i, double val) |
void | SetAnyVectorElemS (VectorOfAny *vec, reflection::BaseType elem_type, size_t i, const char *val) |
template<typename T , typename U > | |
pointer_inside_vector< T, U > | piv (T *ptr, std::vector< U > &vec) |
const char * | UnionTypeFieldSuffix () |
const reflection::Object & | GetUnionType (const reflection::Schema &schema, const reflection::Object &parent, const reflection::Field &unionfield, const Table &table) |
void | SetString (const reflection::Schema &schema, const std::string &val, const String *str, std::vector< uint8_t > *flatbuf, const reflection::Object *root_table=nullptr) |
uint8_t * | ResizeAnyVector (const reflection::Schema &schema, uoffset_t newsize, const VectorOfAny *vec, uoffset_t num_elems, uoffset_t elem_size, std::vector< uint8_t > *flatbuf, const reflection::Object *root_table=nullptr) |
template<typename T > | |
void | ResizeVector (const reflection::Schema &schema, uoffset_t newsize, T val, const Vector< T > *vec, std::vector< uint8_t > *flatbuf, const reflection::Object *root_table=nullptr) |
const uint8_t * | AddFlatBuffer (std::vector< uint8_t > &flatbuf, const uint8_t *newbuf, size_t newlen) |
bool | SetFieldT (Table *table, const reflection::Field &field, const uint8_t *val) |
Offset< const Table * > | CopyTable (FlatBufferBuilder &fbb, const reflection::Schema &schema, const reflection::Object &objectdef, const Table &table, bool use_string_pooling=false) |
bool | Verify (const reflection::Schema &schema, const reflection::Object &root, const uint8_t *buf, size_t length, uoffset_t max_depth=64, uoffset_t max_tables=1000000) |
char & | string_back (std::string &value) |
char | string_back (const std::string &value) |
template<typename T > | |
T * | vector_data (std::vector< T > &vector) |
template<typename T > | |
const T * | vector_data (const std::vector< T > &vector) |
template<typename T , typename V > | |
void | vector_emplace_back (std::vector< T > *vector, V &&data) |
template<class T > | |
FLATBUFFERS_CONSTEXPR_CPP11 bool | operator== (const Optional< T > &opt, nullopt_t) FLATBUFFERS_NOEXCEPT |
template<class T > | |
FLATBUFFERS_CONSTEXPR_CPP11 bool | operator== (nullopt_t, const Optional< T > &opt) FLATBUFFERS_NOEXCEPT |
template<class T , class U > | |
FLATBUFFERS_CONSTEXPR_CPP11 bool | operator== (const Optional< T > &lhs, const U &rhs) FLATBUFFERS_NOEXCEPT |
template<class T , class U > | |
FLATBUFFERS_CONSTEXPR_CPP11 bool | operator== (const T &lhs, const Optional< U > &rhs) FLATBUFFERS_NOEXCEPT |
template<class T , class U > | |
FLATBUFFERS_CONSTEXPR_CPP11 bool | operator== (const Optional< T > &lhs, const Optional< U > &rhs) FLATBUFFERS_NOEXCEPT |
bool | check_ascii_range (char x, char a, char b) |
bool | is_alpha (char c) |
bool | is_alpha_upper (char c) |
bool | is_alpha_char (char c, char alpha) |
bool | is_digit (char c) |
bool | is_xdigit (char c) |
bool | is_alnum (char c) |
char | CharToUpper (char c) |
char | CharToLower (char c) |
template<typename T > | |
std::string | NumToString (T t) |
template<> | |
std::string | NumToString< signed char > (signed char t) |
template<> | |
std::string | NumToString< unsigned char > (unsigned char t) |
template<> | |
std::string | NumToString< char > (char t) |
template<typename T > | |
std::string | FloatToString (T t, int precision) |
template<> | |
std::string | NumToString< double > (double t) |
template<> | |
std::string | NumToString< float > (float t) |
std::string | IntToStringHex (int i, int xdigits) |
void | strtoval_impl (int64_t *val, const char *str, char **endptr, int base) |
void | strtoval_impl (uint64_t *val, const char *str, char **endptr, int base) |
void | strtoval_impl (double *val, const char *str, char **endptr) |
__supress_ubsan__ ("float-cast-overflow") inline void strtoval_impl(float *val | |
template<typename T > | |
bool | StringToIntegerImpl (T *val, const char *const str, const int base=0, const bool check_errno=true) |
template<typename T > | |
bool | StringToFloatImpl (T *val, const char *const str) |
template<typename T > | |
bool | StringToNumber (const char *s, T *val) |
template<> | |
bool | StringToNumber< int64_t > (const char *str, int64_t *val) |
template<> | |
bool | StringToNumber< uint64_t > (const char *str, uint64_t *val) |
template<> | |
bool | StringToNumber (const char *s, float *val) |
template<> | |
bool | StringToNumber (const char *s, double *val) |
int64_t | StringToInt (const char *s, int base=10) |
uint64_t | StringToUInt (const char *s, int base=10) |
LoadFileFunction | SetLoadFileFunction (LoadFileFunction load_file_function) |
FileExistsFunction | SetFileExistsFunction (FileExistsFunction file_exists_function) |
bool | FileExists (const char *name) |
bool | DirExists (const char *name) |
bool | LoadFile (const char *name, bool binary, std::string *buf) |
bool | SaveFile (const char *name, const char *buf, size_t len, bool binary) |
bool | SaveFile (const char *name, const std::string &buf, bool binary) |
std::string | StripExtension (const std::string &filepath) |
std::string | GetExtension (const std::string &filepath) |
std::string | StripPath (const std::string &filepath) |
std::string | StripFileName (const std::string &filepath) |
std::string | ConCatPathFileName (const std::string &path, const std::string &filename) |
std::string | PosixPath (const char *path) |
void | EnsureDirExists (const std::string &filepath) |
std::string | AbsolutePath (const std::string &filepath) |
int | ToUTF8 (uint32_t ucc, std::string *out) |
int | FromUTF8 (const char **in) |
std::string | WordWrap (const std::string in, size_t max_length, const std::string wrapped_line_prefix, const std::string wrapped_line_suffix) |
bool | EscapeString (const char *s, size_t length, std::string *_text, bool allow_non_utf8, bool natural_utf8) |
std::string | BufferToHexText (const void *buffer, size_t buffer_size, size_t max_length, const std::string &wrapped_line_prefix, const std::string &wrapped_line_suffix) |
std::string | RemoveStringQuotes (const std::string &s) |
bool | SetGlobalTestLocale (const char *locale_name, std::string *_value=nullptr) |
bool | ReadEnvironmentVariable (const char *var_name, std::string *_value=nullptr) |
void | SetupDefaultCRTReportMode () |
Variables | |
const NamedHashFunction< uint16_t > | kHashFunctions16 [] |
const NamedHashFunction< uint32_t > | kHashFunctions32 [] |
const NamedHashFunction< uint64_t > | kHashFunctions64 [] |
const char *const | kTypeNames [] |
const char | kTypeSizes [] |
FLATBUFFERS_CONSTEXPR std::size_t | dynamic_extent = static_cast<std::size_t>(-1) |
const char * | str |
const char char ** | endptr |
FLATBUFFERS_CONSTEXPR char | kPathSeparator = '/' |
typedef bool(* flatbuffers::FileExistsFunction) (const char *filename) |
typedef bool(* flatbuffers::LoadFileFunction) (const char *filename, bool binary, std::string *dest) |
flatbuffers::__supress_ubsan__ | ( | "float-cast-overflow" | ) |
std::string flatbuffers::AbsolutePath | ( | const std::string & | filepath | ) |
const uint8_t * flatbuffers::AddFlatBuffer | ( | std::vector< uint8_t > & | flatbuf, |
const uint8_t * | newbuf, | ||
size_t | newlen | ||
) |
FLATBUFFERS_CONSTEXPR size_t flatbuffers::AlignOf | ( | ) |
Definition at line 86 of file flatbuffers.h.
|
inline |
Definition at line 731 of file flatbuffers.h.
References flatbuffers::DefaultAllocator::allocate(), flatbuffers::Allocator::allocate(), and size.
|
extern |
|
inline |
Definition at line 753 of file util.h.
References IntToStringHex().
const Array< T, length > & flatbuffers::CastToArray | ( | const T(&) | arr[length] | ) |
Definition at line 614 of file flatbuffers.h.
Array< T, length > & flatbuffers::CastToArray | ( | T(&) | arr[length] | ) |
Definition at line 609 of file flatbuffers.h.
const Array< E, length > & flatbuffers::CastToArrayOfEnum | ( | const T(&) | arr[length] | ) |
Definition at line 627 of file flatbuffers.h.
Array< E, length > & flatbuffers::CastToArrayOfEnum | ( | T(&) | arr[length] | ) |
Definition at line 620 of file flatbuffers.h.
|
inline |
|
inline |
|
inline |
Definition at line 43 of file util.h.
References FLATBUFFERS_ASSERT.
Referenced by is_alpha(), is_alpha_upper(), is_digit(), and is_xdigit().
std::string flatbuffers::ConCatPathFileName | ( | const std::string & | path, |
const std::string & | filename | ||
) |
Offset< const Table * > flatbuffers::CopyTable | ( | FlatBufferBuilder & | fbb, |
const reflection::Schema & | schema, | ||
const reflection::Object & | objectdef, | ||
const Table & | table, | ||
bool | use_string_pooling = false |
||
) |
|
extern |
|
extern |
const T * flatbuffers::data | ( | const std::vector< T, Alloc > & | v | ) |
Definition at line 1145 of file flatbuffers.h.
Referenced by luci_interpreter::BuddyMemoryManager::allocate_memory(), luci_interpreter::SimpleMemoryManager::allocate_memory(), luci_interpreter::TestMemoryManager::allocate_memory(), luci_interpreter::Interpreter::allocateAndWriteInputTensor(), luci::asymmetric_wquant_with_minmax_per_layer(), luci::compute::DepthwiseConv2D::bias(), luci::compute::FullyConnected::bias(), luci_interpreter::RuntimeGraph::configureGraphInput(), luci_interpreter::RuntimeGraph::configureGraphInput(), flatbuffers::FlatBufferBuilder::CreateVector(), flatbuffers::FlatBufferBuilder::CreateVectorOfNativeStructs(), flatbuffers::FlatBufferBuilder::CreateVectorOfNativeStructs(), flatbuffers::FlatBufferBuilder::CreateVectorOfNativeStructs(), flatbuffers::FlatBufferBuilder::CreateVectorOfSortedNativeStructs(), flatbuffers::FlatBufferBuilder::CreateVectorOfSortedStructs(), flatbuffers::FlatBufferBuilder::CreateVectorOfSortedTables(), flatbuffers::FlatBufferBuilder::CreateVectorOfStructs(), luci_interpreter::kernels::testing::dequantize(), luci_interpreter::kernels::testing::dequantizeTensorData(), luci::CircleExportMetadata::encoded_execution_plan_table(), luci::CircleExportMetadata::encoded_op_table(), luci::CircleExportMetadata::encoded_source_table(), luci_interpreter::execute_kernel_CircleLogicalNot(), luci_interpreter::execute_kernel_CircleMirrorPad(), luci::compute::DepthwiseConv2D::filter(), luci::Importer::importModule(), luci::compute::DepthwiseConv2D::input(), luci::compute::FullyConnected::input(), luci_interpreter::RuntimeGraph::makeInplaceOperation(), luci_interpreter::kernels::testing::makeInputTensor(), luci_interpreter::kernels::testing::makeInputTensor(), luci_interpreter::kernels::testing::makeInputTensor(), luci::compute::DepthwiseConv2D::output(), luci::compute::FullyConnected::output(), luci::CircleReader::parse(), luci::quant_const(), luci_interpreter::kernels::testing::quantize(), luci_interpreter::Interpreter::readOutputTensor(), luci_interpreter::BuddyMemoryManager::release_memory(), luci_interpreter::SimpleMemoryManager::release_memory(), luci_interpreter::SimpleMemoryManager::release_memory(), luci_interpreter::RuntimeGraph::resetOutputTensorsData(), luci_interpreter::RuntimeGraph::resetTensorData(), luci_interpreter::RuntimeGraph::setDataToTensor(), luci::symmetric_wquant_with_minmax_per_layer(), vector_emplace_back(), luci::compute::FullyConnected::weights(), and luci_interpreter::Interpreter::writeInputTensor().
T * flatbuffers::data | ( | std::vector< T, Alloc > & | v | ) |
Definition at line 1152 of file flatbuffers.h.
|
inline |
Definition at line 736 of file flatbuffers.h.
References flatbuffers::Allocator::deallocate(), flatbuffers::DefaultAllocator::deallocate(), and size.
Referenced by flatbuffers::vector_downward::clear_buffer(), and flatbuffers::DetachedBuffer::destroy().
bool flatbuffers::DirExists | ( | const char * | name | ) |
|
inline |
Definition at line 78 of file flatbuffers.h.
References FLATBUFFERS_ASSERT.
Referenced by flatbuffers::FlatBufferBuilder::FlatBufferBuilder(), and flatbuffers::FlatBufferBuilder::FlatBufferBuilder().
void flatbuffers::EnsureDirExists | ( | const std::string & | filepath | ) |
const char * flatbuffers::EnumName | ( | T | tval, |
const TypeTable * | type_table | ||
) |
Definition at line 128 of file minireflect.h.
References LookupEnum().
Referenced by IterateValue().
Definition at line 510 of file idl.h.
References flatbuffers::Type::base_type, flatbuffers::Type::element, flatbuffers::Type::enum_def, flatbuffers::Definition::name, and flatbuffers::Type::struct_def.
|
inline |
Definition at line 652 of file util.h.
References FromUTF8(), and IntToStringHex().
Referenced by flatbuffers::ToStringVisitor::String(), and flexbuffers::Reference::ToString().
|
inline |
Definition at line 1138 of file flatbuffers.h.
Referenced by IterateObject().
bool flatbuffers::FileExists | ( | const char * | name | ) |
|
inline |
Definition at line 104 of file hash.h.
References flatbuffers::NamedHashFunction< T >::function, kHashFunctions16, and size.
|
inline |
Definition at line 117 of file hash.h.
References flatbuffers::NamedHashFunction< T >::function, kHashFunctions32, and size.
|
inline |
Definition at line 130 of file hash.h.
References flatbuffers::NamedHashFunction< T >::function, kHashFunctions64, and size.
|
inline |
Definition at line 497 of file minireflect.h.
References IterateFlatBuffer(), and flatbuffers::ToStringVisitor::s.
std::string flatbuffers::FloatToString | ( | T | t, |
int | precision | ||
) |
Definition at line 183 of file util.h.
Referenced by NumToString< double >(), and NumToString< float >().
|
inline |
Definition at line 552 of file util.h.
Referenced by EscapeString().
|
extern |
|
extern |
|
extern |
bool flatbuffers::GenerateCppGRPC | ( | const Parser & | parser, |
const std::string & | path, | ||
const std::string & | file_name | ||
) |
|
extern |
|
extern |
|
extern |
|
extern |
|
extern |
bool flatbuffers::GenerateGoGRPC | ( | const Parser & | parser, |
const std::string & | path, | ||
const std::string & | file_name | ||
) |
|
extern |
bool flatbuffers::GenerateJavaGRPC | ( | const Parser & | parser, |
const std::string & | path, | ||
const std::string & | file_name | ||
) |
|
extern |
|
extern |
|
extern |
|
extern |
|
extern |
|
extern |
|
extern |
bool flatbuffers::GeneratePythonGRPC | ( | const Parser & | parser, |
const std::string & | path, | ||
const std::string & | file_name | ||
) |
|
extern |
|
extern |
|
extern |
|
extern |
Referenced by flatbuffers::Registry::FlatBufferToText().
|
extern |
|
extern |
|
extern |
|
extern |
T * flatbuffers::GetAnyFieldAddressOf | ( | const Struct & | st, |
const reflection::Field & | field | ||
) |
Definition at line 282 of file reflection.h.
T * flatbuffers::GetAnyFieldAddressOf | ( | const Table & | table, |
const reflection::Field & | field | ||
) |
Definition at line 276 of file reflection.h.
|
inline |
Definition at line 225 of file reflection.h.
References GetAnyValueF().
|
inline |
Definition at line 200 of file reflection.h.
References GetAnyValueF().
|
inline |
Definition at line 219 of file reflection.h.
References GetAnyValueI().
|
inline |
Definition at line 193 of file reflection.h.
References GetAnyValueI().
|
inline |
Definition at line 231 of file reflection.h.
References GetAnyValueS().
|
inline |
Definition at line 209 of file reflection.h.
References GetAnyValueS().
|
inline |
Definition at line 102 of file reflection.h.
|
inline |
Definition at line 101 of file reflection.h.
double flatbuffers::GetAnyValueF | ( | reflection::BaseType | type, |
const uint8_t * | data | ||
) |
Referenced by GetAnyFieldF(), GetAnyFieldF(), and GetAnyVectorElemF().
int64_t flatbuffers::GetAnyValueI | ( | reflection::BaseType | type, |
const uint8_t * | data | ||
) |
Referenced by GetAnyFieldI(), GetAnyFieldI(), and GetAnyVectorElemI().
std::string flatbuffers::GetAnyValueS | ( | reflection::BaseType | type, |
const uint8_t * | data, | ||
const reflection::Schema * | schema, | ||
int | type_index | ||
) |
Referenced by GetAnyFieldS(), GetAnyFieldS(), and GetAnyVectorElemS().
T * flatbuffers::GetAnyVectorElemAddressOf | ( | const VectorOfAny * | vec, |
size_t | i, | ||
size_t | elem_size | ||
) |
|
inline |
Definition at line 243 of file reflection.h.
References flatbuffers::VectorOfAny::Data(), GetAnyValueF(), and GetTypeSize().
|
inline |
Definition at line 237 of file reflection.h.
References flatbuffers::VectorOfAny::Data(), GetAnyValueI(), and GetTypeSize().
T * flatbuffers::GetAnyVectorElemPointer | ( | const VectorOfAny * | vec, |
size_t | i | ||
) |
Definition at line 258 of file reflection.h.
References flatbuffers::VectorOfAny::Data().
|
inline |
Definition at line 249 of file reflection.h.
References flatbuffers::VectorOfAny::Data(), GetAnyValueS(), and GetTypeSize().
std::string flatbuffers::GetExtension | ( | const std::string & | filepath | ) |
|
inline |
Definition at line 150 of file reflection.h.
T flatbuffers::GetFieldDefaultF | ( | const reflection::Field & | field | ) |
Definition at line 112 of file reflection.h.
References FLATBUFFERS_ASSERT, and GetTypeSize().
T flatbuffers::GetFieldDefaultI | ( | const reflection::Field & | field | ) |
Definition at line 105 of file reflection.h.
References FLATBUFFERS_ASSERT, and GetTypeSize().
T flatbuffers::GetFieldF | ( | const Table & | table, |
const reflection::Field & | field | ||
) |
Definition at line 126 of file reflection.h.
References FLATBUFFERS_ASSERT, and GetTypeSize().
T flatbuffers::GetFieldI | ( | const Table & | table, |
const reflection::Field & | field | ||
) |
Definition at line 119 of file reflection.h.
References FLATBUFFERS_ASSERT, and GetTypeSize().
|
inline |
Definition at line 133 of file reflection.h.
References FLATBUFFERS_ASSERT.
|
inline |
Definition at line 173 of file reflection.h.
References FLATBUFFERS_ASSERT.
|
inline |
Definition at line 164 of file reflection.h.
References FLATBUFFERS_ASSERT.
|
inline |
Definition at line 156 of file reflection.h.
References FLATBUFFERS_ASSERT.
Vector< T > * flatbuffers::GetFieldV | ( | const Table & | table, |
const reflection::Field & | field | ||
) |
Definition at line 140 of file reflection.h.
References FLATBUFFERS_ASSERT, and GetTypeSize().
|
inline |
Definition at line 53 of file reflection.h.
Referenced by GetAnyVectorElemF(), GetAnyVectorElemI(), GetAnyVectorElemS(), GetFieldDefaultF(), GetFieldDefaultI(), GetFieldF(), GetFieldI(), GetFieldV(), GetTypeSizeInline(), SetAnyVectorElemF(), SetAnyVectorElemI(), SetAnyVectorElemS(), SetField(), and SetFieldT().
|
inline |
Definition at line 87 of file reflection.h.
References GetTypeSize().
|
inline |
Definition at line 423 of file reflection.h.
References FLATBUFFERS_ASSERT, and UnionTypeFieldSuffix().
T flatbuffers::HashFnv1 | ( | const char * | input | ) |
Definition at line 47 of file hash.h.
|
inline |
T flatbuffers::HashFnv1a | ( | const char * | input | ) |
Definition at line 58 of file hash.h.
|
inline |
|
inline |
Definition at line 492 of file idl.h.
References IsArray(), IsStruct(), and SizeOf().
|
inline |
Definition at line 485 of file idl.h.
References InlineSize(), IsArray(), IsStruct(), and SizeOf().
Referenced by InlineSize(), and IterateObject().
|
inline |
Definition at line 77 of file minireflect.h.
References FLATBUFFERS_ASSERT.
|
inline |
Definition at line 218 of file util.h.
References FLATBUFFERS_ASSERT.
Referenced by BufferToHexText(), and EscapeString().
|
inline |
|
inline |
Definition at line 52 of file util.h.
References check_ascii_range().
Referenced by is_alnum(), and is_alpha_char().
|
inline |
Definition at line 62 of file util.h.
References FLATBUFFERS_ASSERT, and is_alpha().
Referenced by StringToIntegerImpl().
|
inline |
|
inline |
Definition at line 74 of file util.h.
References check_ascii_range().
Referenced by is_alnum(), is_xdigit(), StringToIntegerImpl(), and StringToNumber< uint64_t >().
|
inline |
Definition at line 76 of file util.h.
References check_ascii_range(), and is_digit().
|
inline |
Definition at line 476 of file idl.h.
Referenced by InlineAlignment(), InlineSize(), and IsSeries().
|
inline |
|
inline |
|
inline |
Definition at line 136 of file idl.h.
Referenced by SetField().
|
inline |
Definition at line 43 of file reflection.h.
|
inline |
Definition at line 62 of file flatbuffers.h.
References IsOutRange().
|
inline |
Definition at line 134 of file idl.h.
Referenced by IsEnum(), and SetField().
|
inline |
Definition at line 39 of file reflection.h.
|
inline |
|
inline |
Definition at line 47 of file reflection.h.
|
inline |
|
inline |
Definition at line 56 of file flatbuffers.h.
Referenced by IsInRange().
|
inline |
Definition at line 132 of file idl.h.
Referenced by flatbuffers::FieldDef::IsScalarOptional(), and SetField().
|
inline |
Definition at line 35 of file reflection.h.
|
inline |
|
inline |
|
inline |
Definition at line 464 of file idl.h.
Referenced by InlineAlignment(), and InlineSize().
|
inline |
Definition at line 37 of file flatbuffers.h.
|
inline |
|
inline |
|
inline |
Definition at line 474 of file idl.h.
Referenced by IsSeries().
|
inline |
Definition at line 350 of file minireflect.h.
References IterateObject().
Referenced by FlatBufferToString().
|
inline |
Definition at line 280 of file minireflect.h.
References flatbuffers::Vector< T >::Data(), flatbuffers::IterationVisitor::Element(), flatbuffers::IterationVisitor::EndSequence(), flatbuffers::IterationVisitor::EndVector(), flatbuffers::IterationVisitor::Field(), FieldIndexToOffset(), InlineSize(), IterateValue(), size, flatbuffers::IterationVisitor::StartSequence(), and flatbuffers::IterationVisitor::StartVector().
Referenced by IterateFlatBuffer(), and IterateValue().
|
inline |
Definition at line 142 of file minireflect.h.
References flatbuffers::IterationVisitor::Bool(), flatbuffers::IterationVisitor::Char(), flatbuffers::IterationVisitor::Double(), EnumName(), FLATBUFFERS_ASSERT, flatbuffers::IterationVisitor::Float(), flatbuffers::Vector< T >::Get(), flatbuffers::IterationVisitor::Int(), IterateObject(), flatbuffers::IterationVisitor::Long(), LookupEnum(), flatbuffers::IterationVisitor::Short(), flatbuffers::IterationVisitor::String(), flatbuffers::IterationVisitor::UChar(), flatbuffers::IterationVisitor::UInt(), flatbuffers::IterationVisitor::ULong(), flatbuffers::IterationVisitor::Unknown(), flatbuffers::IterationVisitor::UShort(), and flatbuffers::IterationVisitor::UType().
Referenced by IterateObject().
|
extern |
bool flatbuffers::LoadFile | ( | const char * | name, |
bool | binary, | ||
std::string * | buf | ||
) |
|
extern |
|
extern |
|
inline |
Definition at line 116 of file minireflect.h.
Referenced by EnumName(), and IterateValue().
|
extern |
|
extern |
std::string flatbuffers::NumToString | ( | T | t | ) |
Definition at line 139 of file util.h.
Referenced by flatbuffers::ToStringVisitor::Double(), flatbuffers::ToStringVisitor::Float(), flatbuffers::ToStringVisitor::Long(), flatbuffers::ToStringVisitor::Named(), NumToString< char >(), NumToString< signed char >(), NumToString< unsigned char >(), flexbuffers::Reference::ToString(), flatbuffers::EnumDef::ToString(), and flatbuffers::ToStringVisitor::ULong().
|
inline |
|
inline |
|
inline |
|
inline |
Definition at line 154 of file util.h.
References NumToString().
|
inline |
Definition at line 158 of file util.h.
References NumToString().
Definition at line 265 of file idl.h.
References flatbuffers::Namespace::components.
FLATBUFFERS_CONSTEXPR_CPP11 bool flatbuffers::operator== | ( | const Optional< T > & | lhs, |
const Optional< U > & | rhs | ||
) |
Definition at line 465 of file stl_emulation.h.
FLATBUFFERS_CONSTEXPR_CPP11 bool flatbuffers::operator== | ( | const Optional< T > & | lhs, |
const U & | rhs | ||
) |
Definition at line 455 of file stl_emulation.h.
FLATBUFFERS_CONSTEXPR_CPP11 bool flatbuffers::operator== | ( | const Optional< T > & | opt, |
nullopt_t | |||
) |
Definition at line 446 of file stl_emulation.h.
FLATBUFFERS_CONSTEXPR_CPP11 bool flatbuffers::operator== | ( | const T & | lhs, |
const Optional< U > & | rhs | ||
) |
Definition at line 460 of file stl_emulation.h.
FLATBUFFERS_CONSTEXPR_CPP11 bool flatbuffers::operator== | ( | nullopt_t | , |
const Optional< T > & | opt | ||
) |
Definition at line 450 of file stl_emulation.h.
pointer_inside_vector< T, U > flatbuffers::piv | ( | T * | ptr, |
std::vector< U > & | vec | ||
) |
Definition at line 415 of file reflection.h.
std::string flatbuffers::PosixPath | ( | const char * | path | ) |
bool flatbuffers::ReadEnvironmentVariable | ( | const char * | var_name, |
std::string * | _value = nullptr |
||
) |
|
inline |
Definition at line 744 of file flatbuffers.h.
References flatbuffers::Allocator::reallocate_downward().
std::string flatbuffers::RemoveStringQuotes | ( | const std::string & | s | ) |
uint8_t * flatbuffers::ResizeAnyVector | ( | const reflection::Schema & | schema, |
uoffset_t | newsize, | ||
const VectorOfAny * | vec, | ||
uoffset_t | num_elems, | ||
uoffset_t | elem_size, | ||
std::vector< uint8_t > * | flatbuf, | ||
const reflection::Object * | root_table = nullptr |
||
) |
Referenced by ResizeVector().
void flatbuffers::ResizeVector | ( | const reflection::Schema & | schema, |
uoffset_t | newsize, | ||
T | val, | ||
const Vector< T > * | vec, | ||
std::vector< uint8_t > * | flatbuf, | ||
const reflection::Object * | root_table = nullptr |
||
) |
Definition at line 457 of file reflection.h.
References ResizeAnyVector(), and flatbuffers::Vector< T >::size().
|
extern |
bool flatbuffers::SaveFile | ( | const char * | name, |
const char * | buf, | ||
size_t | len, | ||
bool | binary | ||
) |
Referenced by SaveFile().
|
inline |
Definition at line 477 of file util.h.
References SaveFile().
|
inline |
Definition at line 356 of file reflection.h.
References SetAnyValueF().
|
inline |
Definition at line 330 of file reflection.h.
References SetAnyValueF().
|
inline |
Definition at line 350 of file reflection.h.
References SetAnyValueI().
|
inline |
Definition at line 320 of file reflection.h.
References SetAnyValueI().
|
inline |
Definition at line 362 of file reflection.h.
References SetAnyValueS().
|
inline |
Definition at line 340 of file reflection.h.
References SetAnyValueS().
void flatbuffers::SetAnyValueF | ( | reflection::BaseType | type, |
uint8_t * | data, | ||
double | val | ||
) |
Referenced by SetAnyFieldF(), SetAnyFieldF(), and SetAnyVectorElemF().
void flatbuffers::SetAnyValueI | ( | reflection::BaseType | type, |
uint8_t * | data, | ||
int64_t | val | ||
) |
Referenced by SetAnyFieldI(), SetAnyFieldI(), and SetAnyVectorElemI().
void flatbuffers::SetAnyValueS | ( | reflection::BaseType | type, |
uint8_t * | data, | ||
const char * | val | ||
) |
Referenced by SetAnyFieldS(), SetAnyFieldS(), and SetAnyVectorElemS().
|
inline |
Definition at line 375 of file reflection.h.
References flatbuffers::VectorOfAny::Data(), GetTypeSize(), and SetAnyValueF().
|
inline |
Definition at line 368 of file reflection.h.
References flatbuffers::VectorOfAny::Data(), GetTypeSize(), and SetAnyValueI().
|
inline |
Definition at line 382 of file reflection.h.
References flatbuffers::VectorOfAny::Data(), GetTypeSize(), and SetAnyValueS().
bool flatbuffers::SetField | ( | Table * | table, |
const reflection::Field & | field, | ||
T | val | ||
) |
Definition at line 290 of file reflection.h.
References FLATBUFFERS_ASSERT, GetTypeSize(), IsFloat(), IsInteger(), and IsScalar().
|
inline |
Definition at line 490 of file reflection.h.
References FLATBUFFERS_ASSERT, and GetTypeSize().
FileExistsFunction flatbuffers::SetFileExistsFunction | ( | FileExistsFunction | file_exists_function | ) |
bool flatbuffers::SetGlobalTestLocale | ( | const char * | locale_name, |
std::string * | _value = nullptr |
||
) |
LoadFileFunction flatbuffers::SetLoadFileFunction | ( | LoadFileFunction | load_file_function | ) |
void flatbuffers::SetString | ( | const reflection::Schema & | schema, |
const std::string & | val, | ||
const String * | str, | ||
std::vector< uint8_t > * | flatbuf, | ||
const reflection::Object * | root_table = nullptr |
||
) |
void flatbuffers::SetupDefaultCRTReportMode | ( | ) |
|
inline |
Definition at line 155 of file idl.h.
References kTypeSizes.
Referenced by InlineAlignment(), and InlineSize().
|
inline |
Definition at line 76 of file stl_emulation.h.
|
inline |
Definition at line 72 of file stl_emulation.h.
|
inline |
Definition at line 345 of file util.h.
References FLATBUFFERS_ASSERT, str, and strtoval_impl().
Referenced by StringToNumber(), and StringToNumber().
|
inline |
Definition at line 435 of file util.h.
References StringToIntegerImpl().
Referenced by flexbuffers::Reference::AsInt64().
|
inline |
Definition at line 312 of file util.h.
References endptr, FLATBUFFERS_ASSERT, is_alpha_char(), is_digit(), str, StringToIntegerImpl(), and strtoval_impl().
Referenced by StringToInt(), StringToIntegerImpl(), StringToNumber(), StringToNumber< int64_t >(), StringToNumber< uint64_t >(), and StringToUInt().
|
inline |
Definition at line 430 of file util.h.
References StringToFloatImpl().
|
inline |
Definition at line 425 of file util.h.
References StringToFloatImpl().
|
inline |
Definition at line 363 of file util.h.
References FLATBUFFERS_ASSERT, and StringToIntegerImpl().
Referenced by flexbuffers::Reference::AsDouble().
|
inline |
Definition at line 394 of file util.h.
References str, and StringToIntegerImpl().
|
inline |
Definition at line 399 of file util.h.
References is_digit(), str, and StringToIntegerImpl().
|
inline |
Definition at line 441 of file util.h.
References StringToIntegerImpl().
Referenced by flexbuffers::Reference::AsUInt64().
std::string flatbuffers::StripExtension | ( | const std::string & | filepath | ) |
std::string flatbuffers::StripFileName | ( | const std::string & | filepath | ) |
std::string flatbuffers::StripPath | ( | const std::string & | filepath | ) |
|
inline |
Definition at line 284 of file util.h.
References __strtod_impl, endptr, and str.
|
inline |
Definition at line 274 of file util.h.
References __strtoll_impl, endptr, and str.
Referenced by StringToFloatImpl(), and StringToIntegerImpl().
|
inline |
Definition at line 279 of file util.h.
References __strtoull_impl, endptr, and str.
|
extern |
|
inline |
Definition at line 521 of file util.h.
References FLATBUFFERS_ASSERT.
|
extern |
|
inline |
|
inline |
Definition at line 88 of file stl_emulation.h.
|
inline |
Definition at line 82 of file stl_emulation.h.
Referenced by flexbuffers::FLATBUFFERS_FINAL_CLASS::Blob(), flexbuffers::FLATBUFFERS_FINAL_CLASS::EndMap(), flexbuffers::GetRoot(), flatbuffers::pointer_inside_vector< T, U >::operator*(), and flexbuffers::FLATBUFFERS_FINAL_CLASS::Vector().
|
inline |
Definition at line 94 of file stl_emulation.h.
References data().
Referenced by flatbuffers::SymbolTable< T >::Add().
const Vector< Offset< T > > * flatbuffers::VectorCast | ( | const Vector< Offset< U > > * | ptr | ) |
Definition at line 436 of file flatbuffers.h.
Vector< Offset< T > > * flatbuffers::VectorCast | ( | Vector< Offset< U > > * | ptr | ) |
Definition at line 430 of file flatbuffers.h.
bool flatbuffers::Verify | ( | const reflection::Schema & | schema, |
const reflection::Object & | root, | ||
const uint8_t * | buf, | ||
size_t | length, | ||
uoffset_t | max_depth = 64 , |
||
uoffset_t | max_tables = 1000000 |
||
) |
|
inline |
Definition at line 624 of file util.h.
FLATBUFFERS_CONSTEXPR std::size_t flatbuffers::dynamic_extent = static_cast<std::size_t>(-1) |
Definition at line 480 of file stl_emulation.h.
Referenced by flatbuffers::FLATBUFFERS_FINAL_CLASS< T >::span(), and flatbuffers::FLATBUFFERS_FINAL_CLASS< T >::span().
const char char** flatbuffers::endptr |
Definition at line 290 of file util.h.
Referenced by StringToIntegerImpl(), strtoval_impl(), strtoval_impl(), and strtoval_impl().
const NamedHashFunction<uint16_t> flatbuffers::kHashFunctions16[] |
Definition at line 89 of file hash.h.
Referenced by FindHashFunction16().
const NamedHashFunction<uint32_t> flatbuffers::kHashFunctions32[] |
Definition at line 94 of file hash.h.
Referenced by FindHashFunction32().
const NamedHashFunction<uint64_t> flatbuffers::kHashFunctions64[] |
Definition at line 99 of file hash.h.
Referenced by FindHashFunction64().
|
extern |
|
extern |
Referenced by SizeOf().
const char* flatbuffers::str |
Definition at line 290 of file util.h.
Referenced by flatbuffers::FlatBufferBuilder::CreateSharedString(), flatbuffers::FlatBufferBuilder::CreateSharedString(), flatbuffers::FlatBufferBuilder::CreateSharedString(), flatbuffers::FlatBufferBuilder::CreateSharedString(), flatbuffers::FlatBufferBuilder::CreateString(), flatbuffers::FlatBufferBuilder::CreateString(), flatbuffers::FlatBufferBuilder::CreateString(), flatbuffers::FlatBufferBuilder::CreateString(), flatbuffers::FlatBufferBuilder::CreateString(), flatbuffers::FlatBufferBuilder::CreateString(), luci::in_array(), luci::str_to_dtype(), luci::str_to_granularity(), flatbuffers::ToStringVisitor::String(), StringToFloatImpl(), StringToIntegerImpl(), StringToNumber< int64_t >(), StringToNumber< uint64_t >(), strtoval_impl(), strtoval_impl(), and strtoval_impl().