Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/lite/micro/coder/opcoders/serializers/
Dserializer.h195 void GenCode(T t, REST... args) { in GenCode() function
201 void GenCode(T t) { in GenCode() function
220 void GenCode(T *t) { in GenCode() function
234 void GenCode(bool t) { code << std::boolalpha << t; } in GenCode() function
235 void GenCode(int8_t t) { code << std::to_string(t); } in GenCode() function
236 void GenCode(uint8_t t) { code << std::to_string(t); } in GenCode() function
237 void GenCode(decltype(nullptr) t) { code << "NULL"; } in GenCode() function
238 void GenCode(const char *t) { code << t; } in GenCode() function
239 void GenCode(LiteDataType t) { code << "(LiteDataType)" << t; } in GenCode() function