Searched refs:IndirectUInt (Results 1 – 12 of 12) sorted by relevance
/third_party/flatbuffers/tests/rust_usage_test/tests/flexbuffers_tests/ |
D | binary_format.rs | 321 v.push(IndirectUInt(u64::max_value())); in indirect_numbers() 488 v.push(IndirectUInt(42)); in align_8byte() 503 v.push(IndirectUInt(42)); in align_4byte() 518 v.push(IndirectUInt(42)); in align_2byte() 533 v.push(IndirectUInt(42)); in align_1byte()
|
D | other_api.rs | 169 (FlexBufferType::IndirectUInt as u8) << 2 | BitWidth::W64 as u8, in get_root_deref_u64()
|
D | rwyw.rs | 353 v.push(IndirectUInt(9000)); in store_indirects()
|
/third_party/flatbuffers/rust/flexbuffers/src/ |
D | flexbuffer_type.rs | 60 IndirectUInt = 7, enumerator 179 IndirectUInt => Some(UInt), in to_direct() 201 is_ty!(is_indirect_uint, IndirectUInt);
|
D | lib.rs | 102 pub struct IndirectUInt(pub u64); struct
|
/third_party/flatbuffers/rust/flexbuffers/src/builder/ |
D | push.rs | 17 use crate::{Blob, Buffer, IndirectFloat, IndirectInt, IndirectUInt}; 118 impl_indirects!(IndirectUInt, push_indirect_uint);
|
D | mod.rs | 258 push_indirect!(push_indirect_uint, u64, UInt, IndirectUInt);
|
/third_party/flatbuffers/dart/lib/src/ |
D | types.dart | 70 Key, String, IndirectInt, IndirectUInt, IndirectFloat,
|
D | reference.dart | 76 if (_valueType == ValueType.IndirectUInt) {
|
/third_party/flatbuffers/include/flatbuffers/ |
D | flexbuffers.h | 983 void IndirectUInt(uint64_t u) { in IndirectUInt() function 986 void IndirectUInt(const char *key, uint64_t u) { in IndirectUInt() function 988 IndirectUInt(u); in IndirectUInt()
|
/third_party/flatbuffers/python/flatbuffers/ |
D | flexbuffers.py | 1264 def IndirectUInt(self, value, byte_width=0): member in Builder 1465 Type.INDIRECT_UINT: self.IndirectUInt,
|
/third_party/flatbuffers/tests/ |
D | py_flexbuffers_test.py | 1363 fbb.IndirectUInt('iu', 540)
|