Home
last modified time | relevance | path

Searched defs:IndirectInt (Results 1 – 4 of 4) sorted by relevance

/third_party/flatbuffers/rust/flexbuffers/src/
Dlib.rs109 pub struct IndirectInt(pub i64); struct
Dflexbuffer_type.rs57 IndirectInt = 6, enumerator
/third_party/flatbuffers/include/flatbuffers/
Dflexbuffers.h977 void IndirectInt(int64_t i) { PushIndirect(i, FBT_INDIRECT_INT, WidthI(i)); } in IndirectInt() function
978 void IndirectInt(const char *key, int64_t i) { in IndirectInt() function
/third_party/flatbuffers/python/flatbuffers/
Dflexbuffers.py1242 def IndirectInt(self, value, byte_width=0): member in Builder