Home
last modified time | relevance | path

Searched defs:byte_width (Results 1 – 8 of 8) sorted by relevance

/aosp_15_r20/prebuilts/android-emulator/darwin-x86_64/include/flatbuffers/
H A Dflexbuffers.h136 R ReadSizedScalar(const uint8_t *data, uint8_t byte_width) { in ReadSizedScalar()
146 inline int64_t ReadInt64(const uint8_t *data, uint8_t byte_width) { in ReadInt64()
151 inline uint64_t ReadUInt64(const uint8_t *data, uint8_t byte_width) { in ReadUInt64()
170 inline double ReadDouble(const uint8_t *data, uint8_t byte_width) { in ReadDouble()
175 inline const uint8_t *Indirect(const uint8_t *offset, uint8_t byte_width) { in Indirect()
209 Object(const uint8_t *data, uint8_t byte_width) in Object()
221 Sized(const uint8_t *data, uint8_t byte_width) in Sized()
224 Sized(const uint8_t *data, uint8_t byte_width, size_t sz) in Sized()
239 String(const uint8_t *data, uint8_t byte_width) : Sized(data, byte_width) {} in String()
241 String(const uint8_t *data, uint8_t byte_width, size_t sz) in String()
[all …]
/aosp_15_r20/prebuilts/android-emulator/linux-x86_64/include/flatbuffers/
H A Dflexbuffers.h138 R ReadSizedScalar(const uint8_t *data, uint8_t byte_width) { in ReadSizedScalar()
148 inline int64_t ReadInt64(const uint8_t *data, uint8_t byte_width) { in ReadInt64()
153 inline uint64_t ReadUInt64(const uint8_t *data, uint8_t byte_width) { in ReadUInt64()
174 inline double ReadDouble(const uint8_t *data, uint8_t byte_width) { in ReadDouble()
179 inline const uint8_t *Indirect(const uint8_t *offset, uint8_t byte_width) { in Indirect()
213 Object(const uint8_t *data, uint8_t byte_width) in Object()
225 Sized(const uint8_t *data, uint8_t byte_width) in Sized()
228 Sized(const uint8_t *data, uint8_t byte_width, size_t sz) in Sized()
243 String(const uint8_t *data, uint8_t byte_width) : Sized(data, byte_width) {} in String()
245 String(const uint8_t *data, uint8_t byte_width, size_t sz) in String()
[all …]
/aosp_15_r20/external/flatbuffers/include/flatbuffers/
H A Dflexbuffers.h138 R ReadSizedScalar(const uint8_t *data, uint8_t byte_width) { in ReadSizedScalar()
148 inline int64_t ReadInt64(const uint8_t *data, uint8_t byte_width) { in ReadInt64()
153 inline uint64_t ReadUInt64(const uint8_t *data, uint8_t byte_width) { in ReadUInt64()
174 inline double ReadDouble(const uint8_t *data, uint8_t byte_width) { in ReadDouble()
179 inline const uint8_t *Indirect(const uint8_t *offset, uint8_t byte_width) { in Indirect()
213 Object(const uint8_t *data, uint8_t byte_width) in Object()
225 Sized(const uint8_t *data, uint8_t byte_width) in Sized()
228 Sized(const uint8_t *data, uint8_t byte_width, size_t sz) in Sized()
243 String(const uint8_t *data, uint8_t byte_width) : Sized(data, byte_width) {} in String()
245 String(const uint8_t *data, uint8_t byte_width, size_t sz) in String()
[all …]
/aosp_15_r20/external/flatbuffers/python/flatbuffers/
H A Dflexbuffers.py83 def B(byte_width): argument
106 def _Pack(fmt, value, byte_width): argument
110 def _PackVector(fmt, values, byte_width): argument
114 def _Mutate(fmt, buf, value, byte_width, value_bit_width): argument
315 def Indirect(self, offset, byte_width): argument
324 def __init__(self, buf, byte_width): argument
337 def __init__(self, buf, byte_width, size=0): argument
403 def __init__(self, buf, byte_width): argument
448 def __init__(self, buf, byte_width, element_type, size=0): argument
552 def __init__(self, buf, parent_width, byte_width, type_): argument
[all …]
/aosp_15_r20/external/flatbuffers/tests/
H A Dpy_flexbuffers_test.py76 def int_bytes(value, byte_width): argument
80 def uint_bytes(value, byte_width): argument
84 def float_bytes(value, byte_width): argument
88 def min_value(type_, byte_width): argument
99 def max_value(type_, byte_width): argument
110 def str_bytes(value, byte_width): argument
119 def encode_type(type_, value, byte_width=None): argument
/aosp_15_r20/external/rust/android-crates-io/crates/pdl-compiler/src/backends/rust_legacy/
Dserializer.rs255 let byte_width = syn::Index::from(width / 8); in add_bit_field() localVariable
/aosp_15_r20/external/mesa3d/src/gallium/frontends/glx/xlib/
H A Dxm_api.c1500 int line, byte_width; in XMesaBindTexImage() local
/aosp_15_r20/external/skia/modules/skcms/
H A Dskcms.cc737 static bool init_tables(const uint8_t* table_base, uint64_t max_tables_len, uint32_t byte_width, in init_tables()