MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / ProtoParseNumeric

Function ProtoParseNumeric

tensorflow/core/lib/strings/numbers.h:126–128  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

124bool safe_strtod(StringPiece str, double* value);
125
126inline bool ProtoParseNumeric(StringPiece s, int32* value) {
127 return safe_strto32(s, value);
128}
129
130inline bool ProtoParseNumeric(StringPiece s, uint32* value) {
131 return safe_strtou32(s, value);

Callers 1

SafeStringToNumericFunction · 0.85

Calls 6

safe_strtou32Function · 0.85
safe_strto64Function · 0.85
safe_strtou64Function · 0.85
safe_strtofFunction · 0.85
safe_strtodFunction · 0.85
safe_strto32Function · 0.70

Tested by

no test coverage detected