Searched refs:IndirectFloat (Results 1 – 14 of 14) sorted by relevance
/third_party/flatbuffers/rust/flexbuffers/src/ |
D | flexbuffer_type.rs | 63 IndirectFloat = 8, enumerator 180 IndirectFloat => Some(Float), in to_direct() 203 is_ty!(is_indirect_float, IndirectFloat);
|
D | lib.rs | 116 pub struct IndirectFloat(pub f64); struct
|
/third_party/flatbuffers/rust/flexbuffers/src/builder/ |
D | push.rs | 17 use crate::{Blob, Buffer, IndirectFloat, IndirectInt, IndirectUInt}; 119 impl_indirects!(IndirectFloat, push_indirect_float);
|
D | mod.rs | 259 push_indirect!(push_indirect_float, f64, Float, IndirectFloat);
|
/third_party/flatbuffers/dart/lib/src/ |
D | types.dart | 70 Key, String, IndirectInt, IndirectUInt, IndirectFloat, 103 && toInt(self) <= toInt(ValueType.IndirectFloat);
|
D | reference.dart | 41 bool get isDouble => _valueType == ValueType.Float || _valueType == ValueType.IndirectFloat; 89 if (_valueType == ValueType.IndirectFloat) {
|
D | builder.dart | 204 …final stackOffset = _StackValue.WithOffset(valueOffset, ValueType.IndirectFloat, stackValue.width);
|
/third_party/flatbuffers/docs/source/ |
D | FlexBuffers.md | 76 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/ |
D | binary_format.rs | 324 v.push(IndirectFloat(std::f64::consts::PI)); in indirect_numbers()
|
D | rwyw.rs | 354 v.push(IndirectFloat(3.14)); in store_indirects()
|
/third_party/flatbuffers/include/flatbuffers/ |
D | flexbuffers.h | 991 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/ |
D | flexbuffers.py | 1286 def IndirectFloat(self, value, byte_width=0): member in Builder 1467 Type.INDIRECT_FLOAT: self.IndirectFloat,
|
/third_party/flatbuffers/tests/ |
D | py_flexbuffers_test.py | 1364 fbb.IndirectFloat('if', 0.0) 1431 fbb.IndirectFloat(4.0)
|
D | test.cpp | 2889 slb.IndirectFloat(4.0f); in FlexBuffersTest() 2914 slb3.IndirectFloat(4.0f); in FlexBuffersTest()
|