Home
last modified time | relevance | path

Searched refs:IndirectFloat (Results 1 – 14 of 14) sorted by relevance

/third_party/flatbuffers/rust/flexbuffers/src/
Dflexbuffer_type.rs63 IndirectFloat = 8, enumerator
180 IndirectFloat => Some(Float), in to_direct()
203 is_ty!(is_indirect_float, IndirectFloat);
Dlib.rs116 pub struct IndirectFloat(pub f64); struct
/third_party/flatbuffers/rust/flexbuffers/src/builder/
Dpush.rs17 use crate::{Blob, Buffer, IndirectFloat, IndirectInt, IndirectUInt};
119 impl_indirects!(IndirectFloat, push_indirect_float);
Dmod.rs259 push_indirect!(push_indirect_float, f64, Float, IndirectFloat);
/third_party/flatbuffers/dart/lib/src/
Dtypes.dart70 Key, String, IndirectInt, IndirectUInt, IndirectFloat,
103 && toInt(self) <= toInt(ValueType.IndirectFloat);
Dreference.dart41 bool get isDouble => _valueType == ValueType.Float || _valueType == ValueType.IndirectFloat;
89 if (_valueType == ValueType.IndirectFloat) {
Dbuilder.dart204 …final stackOffset = _StackValue.WithOffset(valueOffset, ValueType.IndirectFloat, stackValue.width);
/third_party/flatbuffers/docs/source/
DFlexBuffers.md76 fbb.IndirectFloat(4.0f);
96 `IndirectFloat` is an interesting feature that allows you to store values
/third_party/flatbuffers/tests/rust_usage_test/tests/flexbuffers_tests/
Dbinary_format.rs324 v.push(IndirectFloat(std::f64::consts::PI)); in indirect_numbers()
Drwyw.rs354 v.push(IndirectFloat(3.14)); in store_indirects()
/third_party/flatbuffers/include/flatbuffers/
Dflexbuffers.h991 void IndirectFloat(float f) { in IndirectFloat() function
994 void IndirectFloat(const char *key, float f) { in IndirectFloat() function
996 IndirectFloat(f); in IndirectFloat()
/third_party/flatbuffers/python/flatbuffers/
Dflexbuffers.py1286 def IndirectFloat(self, value, byte_width=0): member in Builder
1467 Type.INDIRECT_FLOAT: self.IndirectFloat,
/third_party/flatbuffers/tests/
Dpy_flexbuffers_test.py1364 fbb.IndirectFloat('if', 0.0)
1431 fbb.IndirectFloat(4.0)
Dtest.cpp2889 slb.IndirectFloat(4.0f); in FlexBuffersTest()
2914 slb3.IndirectFloat(4.0f); in FlexBuffersTest()