Home
last modified time | relevance | path

Searched refs:FBT_FLOAT (Results 1 – 4 of 4) sorted by relevance

/external/flatbuffers/java/com/google/flatbuffers/
DFlexBuffers.java56 … public static final int FBT_FLOAT = 3; // Types above stored inline, types below store an offset. field in FlexBuffers
122 return type <= FBT_FLOAT || type == FBT_BOOL; in isTypeInline()
290 return type == FBT_FLOAT || type == FBT_INDIRECT_FLOAT; in isFloat()
374 case FBT_FLOAT: return (int) readDouble(bb, end, parentWidth); in asInt()
403 case FBT_FLOAT: return (long) readDouble(bb, end, parentWidth); in asUInt()
432 case FBT_FLOAT: return (long) readDouble(bb, end, parentWidth); in asLong()
457 if (type == FBT_FLOAT) { in asFloat()
590 case FBT_FLOAT: in toString()
DFlexBuffersBuilder.java565 case FBT_FLOAT: in writeAny()
706 return new Value(key, FBT_FLOAT, WIDTH_32, value); in float32()
710 return new Value(key, FBT_FLOAT, WIDTH_64, value); in float64()
/external/flatbuffers/include/flatbuffers/
Dflexbuffers.h55 FBT_FLOAT = 3, enumerator
86 inline bool IsInline(Type t) { return t <= FBT_FLOAT || t == FBT_BOOL; } in IsInline()
399 return type_ == FBT_FLOAT || type_ == FBT_INDIRECT_FLOAT; in IsFloat()
432 case FBT_FLOAT: in AsInt64()
461 case FBT_FLOAT: in AsUInt64()
480 if (type_ == FBT_FLOAT) { in AsDouble()
698 if (type_ == FBT_FLOAT) { in MutateFloat()
708 if (type_ == FBT_FLOAT) { in MutateFloat()
1387 ? FBT_FLOAT in GetScalarType()
1420 Value(float f) : f_(f), type_(FBT_FLOAT), min_bit_width_(BIT_WIDTH_32) {} in Value()
[all …]
/external/tensorflow/tensorflow/lite/toco/tflite/
Doperator.cc1737 case flexbuffers::FBT_FLOAT: in ReadOptions()