Searched refs:FastUInt32ToBufferLeft (Results 1 – 8 of 8) sorted by relevance
/external/tensorflow/tensorflow/lite/experimental/micro/ |
D | debug_log_numbers.cc | 61 char* FastUInt32ToBufferLeft(uint32_t i, char* buffer, int base) { in FastUInt32ToBufferLeft() function 86 return FastUInt32ToBufferLeft(u, buffer, 10); in FastInt32ToBufferLeft() 99 FastUInt32ToBufferLeft(number, number_string, base); in StrCatUInt32() 171 FastUInt32ToBufferLeft(i, number_string, 10); in DebugLogUInt32() 177 FastUInt32ToBufferLeft(i, number_string, 16); in DebugLogHex()
|
/external/dynamic_depth/internal/strings/ |
D | numbers.cc | 314 char* FastUInt32ToBufferLeft(uint32 u, char* buffer) { in FastUInt32ToBufferLeft() function 393 return FastUInt32ToBufferLeft(u, buffer); in FastInt32ToBufferLeft() 398 if (u32 == u64) return FastUInt32ToBufferLeft(u32, buffer); in FastUInt64ToBufferLeft() 406 buffer = FastUInt32ToBufferLeft(top_1to11_32, buffer); in FastUInt64ToBufferLeft() 411 buffer = FastUInt32ToBufferLeft(top_8to9, buffer); in FastUInt64ToBufferLeft()
|
D | numbers.h | 94 char* FastUInt32ToBufferLeft(uint32 i, char* buffer); // at least 12 bytes 132 return string(buf, FastUInt32ToBufferLeft(i, buf)); in SimpleItoa()
|
/external/tensorflow/tensorflow/core/lib/strings/ |
D | numbers.h | 67 size_t FastUInt32ToBufferLeft(uint32 i, char* buffer); // at least 12 bytes
|
D | numbers.cc | 142 length += FastUInt32ToBufferLeft(u, buffer); in FastInt32ToBufferLeft() 146 size_t FastUInt32ToBufferLeft(uint32 i, char* buffer) { in FastUInt32ToBufferLeft() function
|
D | strcat.h | 106 : piece_(digits_, FastUInt32ToBufferLeft(u32, digits_)) {} in AlphaNum()
|
/external/protobuf/src/google/protobuf/stubs/ |
D | strutil.h | 508 LIBPROTOBUF_EXPORT char* FastUInt32ToBufferLeft(uint32 i, char* buffer); 514 FastUInt32ToBufferLeft(i, buffer); in FastUInt32ToBuffer() 625 piece_size_(FastUInt32ToBufferLeft(u32, digits) - &digits[0]) {} in AlphaNum()
|
D | strutil.cc | 968 char* FastUInt32ToBufferLeft(uint32 u, char* buffer) { in FastUInt32ToBufferLeft() function 1056 return FastUInt32ToBufferLeft(u, buffer); in FastInt32ToBufferLeft() 1064 if (u == u64) return FastUInt32ToBufferLeft(u, buffer); in FastUInt64ToBufferLeft() 1127 FastUInt32ToBufferLeft(i, buffer) : in SimpleItoa() 1141 FastUInt32ToBufferLeft(i, buffer) : in SimpleItoa() 1155 FastUInt32ToBufferLeft(i, buffer) : in SimpleItoa()
|