Home
last modified time | relevance | path

Searched refs:FBT_VECTOR_INT2 (Results 1 – 2 of 2) sorted by relevance

/external/flatbuffers/java/com/google/flatbuffers/
DFlexBuffers.java85 public static final int FBT_VECTOR_INT2 = 16; // Typed tuple = no type table; no size field). field in FlexBuffers
140 case 2: return type - FBT_INT + FBT_VECTOR_INT2; in toTypedVector()
611 case FBT_VECTOR_INT2: in toString()
/external/flatbuffers/include/flatbuffers/
Dflexbuffers.h71 FBT_VECTOR_INT2 = 16, // Typed tuple (no type table, no size field). enumerator
98 return t >= FBT_VECTOR_INT2 && t <= FBT_VECTOR_FLOAT4; in IsFixedTypedVector()
105 case 2: return static_cast<Type>(t - FBT_INT + FBT_VECTOR_INT2);
119 auto fixed_type = t - FBT_VECTOR_INT2; in ToFixedTypedVectorElementType()