Home
last modified time | relevance | path

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

/third_party/flatbuffers/rust/flexbuffers/src/builder/
Dvalue.rs232 pub fn packed_type(self, parent_width: BitWidth) -> u8 { in packed_type()
234 std::cmp::max(parent_width, self.width_or_child_width()) in packed_type()
/third_party/flatbuffers/rust/flexbuffers/src/reader/
Dmod.rs211 parent_width: BitWidth, in new()
214 address = deref_offset(&buffer, address, parent_width)?; in new()
/third_party/flatbuffers/python/flatbuffers/
Dflexbuffers.py548 def PackedType(buf, parent_width, packed_type): argument
550 return Ref(buf, parent_width, byte_width, type_)
552 def __init__(self, buf, parent_width, byte_width, type_): argument
554 self._parent_width = parent_width
/third_party/flatbuffers/include/flatbuffers/
Dflexbuffers.h376 Reference(const uint8_t *data, uint8_t parent_width, uint8_t byte_width, in Reference() argument
379 parent_width_(parent_width), in Reference()
383 Reference(const uint8_t *data, uint8_t parent_width, uint8_t packed_type) in Reference() argument
384 : data_(data), parent_width_(parent_width) { in Reference()