aboutsummaryrefslogtreecommitdiff
path: root/include/tosa_generated.h
diff options
context:
space:
mode:
authorJeremy Johnson <jeremy.johnson@arm.com>2022-05-25 17:52:29 +0100
committerJeremy Johnson <jeremy.johnson@arm.com>2022-05-26 08:57:22 +0100
commit4102773d83e236448130b43b1747621ace00160f (patch)
tree9793b7fefa267bed1c8b5c24ccc3182a60b64724 /include/tosa_generated.h
parent44c11203d7ab5305af8edd6d6cc5e70fd4f1fb72 (diff)
downloadserialization_lib-4102773d83e236448130b43b1747621ace00160f.tar.gz
Add support for uint16_t
Signed-off-by: Jeremy Johnson <jeremy.johnson@arm.com> Change-Id: Ieab5c56db49549726dd5efb0d9b728713fc6f86a
Diffstat (limited to 'include/tosa_generated.h')
-rw-r--r--include/tosa_generated.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/include/tosa_generated.h b/include/tosa_generated.h
index 3bc1546..c30a04d 100644
--- a/include/tosa_generated.h
+++ b/include/tosa_generated.h
@@ -96,11 +96,12 @@ enum DType : uint32_t {
DType_INT32 = 6,
DType_INT48 = 7,
DType_FLOAT = 8,
+ DType_UINT16 = 9,
DType_MIN = DType_UNKNOWN,
- DType_MAX = DType_FLOAT
+ DType_MAX = DType_UINT16
};
-inline const DType (&EnumValuesDType())[9] {
+inline const DType (&EnumValuesDType())[10] {
static const DType values[] = {
DType_UNKNOWN,
DType_BOOL,
@@ -110,13 +111,14 @@ inline const DType (&EnumValuesDType())[9] {
DType_INT16,
DType_INT32,
DType_INT48,
- DType_FLOAT
+ DType_FLOAT,
+ DType_UINT16
};
return values;
}
inline const char * const *EnumNamesDType() {
- static const char * const names[10] = {
+ static const char * const names[11] = {
"UNKNOWN",
"BOOL",
"UINT8",
@@ -126,13 +128,14 @@ inline const char * const *EnumNamesDType() {
"INT32",
"INT48",
"FLOAT",
+ "UINT16",
nullptr
};
return names;
}
inline const char *EnumNameDType(DType e) {
- if (flatbuffers::IsOutRange(e, DType_UNKNOWN, DType_FLOAT)) return "";
+ if (flatbuffers::IsOutRange(e, DType_UNKNOWN, DType_UINT16)) return "";
const size_t index = static_cast<size_t>(e);
return EnumNamesDType()[index];
}