HomeSort by relevance Sort by last modified time
    Searched defs:safe_strto32 (Results 1 - 3 of 3) sorted by null

  /external/tensorflow/tensorflow/stream_executor/lib/
numbers.cc 24 bool safe_strto32(const char* str, int32* value) { function in namespace:perftools::gputools::port
36 bool safe_strto32(const string& str, int32* value) { function in namespace:perftools::gputools::port
37 return port::safe_strto32(str.c_str(), value);
  /external/protobuf/src/google/protobuf/stubs/
strutil.h 385 // safe_strto32()
394 LIBPROTOBUF_EXPORT bool safe_strto32(const string& str, int32* value);
396 inline bool safe_strto32(const char* str, int32* value) { function in namespace:google::protobuf
397 return safe_strto32(string(str), value);
399 inline bool safe_strto32(StringPiece str, int32* value) { function in namespace:google::protobuf
400 return safe_strto32(str.ToString(), value);
    [all...]
strutil.cc 1345 bool safe_strto32(const string& str, int32* value) { function
    [all...]

Completed in 110 milliseconds