Home
last modified time | relevance | path

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

/external/flatbuffers/include/flatbuffers/
Dflexbuffers.h131 R ReadSizedScalar(const uint8_t *data, uint8_t byte_width) { in ReadSizedScalar() argument
132 return byte_width < 4 in ReadSizedScalar()
133 ? (byte_width < 2 ? static_cast<R>(flatbuffers::ReadScalar<T1>(data)) in ReadSizedScalar()
135 : (byte_width < 8 ? static_cast<R>(flatbuffers::ReadScalar<T4>(data)) in ReadSizedScalar()
140 inline int64_t ReadInt64(const uint8_t *data, uint8_t byte_width) { in ReadInt64() argument
142 byte_width); in ReadInt64()
145 inline uint64_t ReadUInt64(const uint8_t *data, uint8_t byte_width) { in ReadUInt64() argument
154 reinterpret_cast<const uint8_t *>(data), byte_width); in ReadUInt64()
158 data, byte_width); in ReadUInt64()
162 inline double ReadDouble(const uint8_t *data, uint8_t byte_width) { in ReadDouble() argument
[all …]
/external/mesa3d/src/gallium/state_trackers/glx/xlib/
Dxm_api.c1488 int line, byte_width; in XMesaBindTexImage() local
1515 byte_width = w * ((img->bits_per_pixel + 7) / 8); in XMesaBindTexImage()
1520 byte_width); in XMesaBindTexImage()
/external/v8/src/compiler/
Dregister-allocator.h711 int byte_width() const { return byte_width_; } in byte_width() function
Dregister-allocator.cc1270 if (byte_width() != other->byte_width() || IsIntersectingWith(other)) in TryMerge()
3551 int index = data()->frame()->AllocateSpillSlot(range->byte_width()); in AssignSpillSlots()