Home
last modified time | relevance | path

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

/external/flatbuffers/include/flatbuffers/
Dflexbuffers.h192 : data_(data), byte_width_(byte_width) {} in Object()
196 uint8_t byte_width_; variable
204 return static_cast<size_t>(ReadUInt64(data_ - byte_width_, byte_width_)); in size()
304 Vector Values() const { return Vector(data_, byte_width_); } in Values()
308 auto keys_offset = data_ - byte_width_ * num_prefixed_fields; in Keys()
309 return TypedVector(Indirect(keys_offset, byte_width_), in Keys()
311 ReadUInt64(keys_offset + byte_width_, byte_width_)), in Keys()
331 : data_(data), parent_width_(parent_width), byte_width_(byte_width), in Reference()
336 byte_width_ = 1U << static_cast<BitWidth>(packed_type & 3); in Reference()
364 case TYPE_INDIRECT_INT: return ReadInt64(Indirect(), byte_width_); in AsInt64()
[all …]
/external/v8/src/compiler/
Dregister-allocator.h711 int byte_width() const { return byte_width_; } in byte_width()
724 int byte_width_; variable
Dregister-allocator.cc1231 byte_width_(GetByteWidth(parent->representation())) { in SpillRange()