Home
last modified time | relevance | path

Searched refs:AlphaNum (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/core/lib/strings/
Dstrcat.h102 class AlphaNum {
107 AlphaNum(int i32) // NOLINT(runtime/explicit) in AlphaNum() function
109 AlphaNum(unsigned int u32) // NOLINT(runtime/explicit) in AlphaNum() function
111 AlphaNum(long x) // NOLINT(runtime/explicit) in AlphaNum() function
113 AlphaNum(unsigned long x) // NOLINT(runtime/explicit) in AlphaNum() function
115 AlphaNum(long long int i64) // NOLINT(runtime/explicit) in AlphaNum() function
117 AlphaNum(unsigned long long int u64) // NOLINT(runtime/explicit) in AlphaNum() function
120 AlphaNum(float f) // NOLINT(runtime/explicit) in AlphaNum() function
122 AlphaNum(bfloat16 f) // NOLINT(runtime/explicit) in AlphaNum() function
125 AlphaNum(double f) // NOLINT(runtime/explicit) in AlphaNum() function
[all …]
Dstrcat.cc30 AlphaNum::AlphaNum(const Eigen::half &f) in AlphaNum() function in tensorflow::strings::AlphaNum
33 AlphaNum::AlphaNum(Hex hex) { in AlphaNum() function in tensorflow::strings::AlphaNum
61 static char *Append1(char *out, const AlphaNum &x) { in Append1()
66 static char *Append2(char *out, const AlphaNum &x1, const AlphaNum &x2) { in Append2()
74 static char *Append4(char *out, const AlphaNum &x1, const AlphaNum &x2, in Append4()
75 const AlphaNum &x3, const AlphaNum &x4) { in Append4()
89 string StrCat(const AlphaNum &a) { return string(a.data(), a.size()); } in StrCat()
91 string StrCat(const AlphaNum &a, const AlphaNum &b) { in StrCat()
100 string StrCat(const AlphaNum &a, const AlphaNum &b, const AlphaNum &c) { in StrCat()
110 string StrCat(const AlphaNum &a, const AlphaNum &b, const AlphaNum &c, in StrCat()
[all …]
/external/protobuf/src/google/protobuf/stubs/
Dstrutil.h611 struct LIBPROTOBUF_EXPORT AlphaNum { struct
620 AlphaNum(int32 i32) in AlphaNum() argument
623 AlphaNum(uint32 u32) in AlphaNum() argument
626 AlphaNum(int64 i64) in AlphaNum() argument
629 AlphaNum(uint64 u64) in AlphaNum() argument
633 AlphaNum(float f) in AlphaNum() function
635 AlphaNum(double f) in AlphaNum() function
638 AlphaNum(Hex hex);
640 AlphaNum(const char* c_str) in AlphaNum() function
645 AlphaNum(const string& str) in AlphaNum() argument
[all …]
Dstrutil.cc1401 AlphaNum::AlphaNum(strings::Hex hex) { in AlphaNum() function in google::protobuf::strings::AlphaNum
1432 static char *Append1(char *out, const AlphaNum &x) { in Append1()
1437 static char *Append2(char *out, const AlphaNum &x1, const AlphaNum &x2) { in Append2()
1446 const AlphaNum &x1, const AlphaNum &x2, in Append4()
1447 const AlphaNum &x3, const AlphaNum &x4) { in Append4()
1461 string StrCat(const AlphaNum &a, const AlphaNum &b) { in StrCat()
1470 string StrCat(const AlphaNum &a, const AlphaNum &b, const AlphaNum &c) { in StrCat()
1480 string StrCat(const AlphaNum &a, const AlphaNum &b, const AlphaNum &c, in StrCat()
1481 const AlphaNum &d) { in StrCat()
1490 string StrCat(const AlphaNum &a, const AlphaNum &b, const AlphaNum &c, in StrCat()
[all …]
/external/tensorflow/tensorflow/compiler/xla/
Darray.h483 tensorflow::strings::AlphaNum(values_[calculate_index(index)])