Home
last modified time | relevance | path

Searched refs:FBT_UINT (Results 1 – 3 of 3) sorted by relevance

/external/flatbuffers/java/com/google/flatbuffers/
DFlexBuffers.java54 public static final int FBT_UINT = 2; field in FlexBuffers
306 return type == FBT_UINT || type == FBT_INDIRECT_UINT; in isUInt()
372 case FBT_UINT: return (int) readUInt(bb, end, parentWidth); in asInt()
395 if (type == FBT_UINT) { in asUInt()
430 case FBT_UINT: return readUInt(bb, end, parentWidth); in asLong()
464 case FBT_UINT: in asFloat()
586 case FBT_UINT: in toString()
DFlexBuffersBuilder.java562 case FBT_UINT: in writeAny()
690 return new Value(key, FBT_UINT, WIDTH_8, value); in uInt8()
694 return new Value(key, FBT_UINT, WIDTH_16, value); in uInt16()
698 return new Value(key, FBT_UINT, WIDTH_32, value); in uInt32()
702 return new Value(key, FBT_UINT, WIDTH_64, value); in uInt64()
/external/flatbuffers/include/flatbuffers/
Dflexbuffers.h54 FBT_UINT = 2, enumerator
395 return type_ == FBT_UINT || type_ == FBT_INDIRECT_UINT; in IsUInt()
430 case FBT_UINT: return ReadUInt64(data_, parent_width_); in AsInt64()
453 if (type_ == FBT_UINT) { in AsUInt64()
488 case FBT_UINT: in AsDouble()
666 } else if (type_ == FBT_UINT) { in MutateInt()
682 if (type_ == FBT_UINT) { in MutateUInt()
947 void UInt(uint64_t u) { stack_.push_back(Value(u, FBT_UINT, WidthU(u))); } in UInt()
1390 : (flatbuffers::is_unsigned<T>::value ? FBT_UINT in GetScalarType()
1471 case FBT_UINT: Write(val.u_, byte_width); break; in WriteAny()