Searched refs:FastUInt32ToBufferLeft (Results 1 – 8 of 8) sorted by relevance
/external/tensorflow/tensorflow/lite/micro/ |
D | micro_string.cc | 73 char* FastUInt32ToBufferLeft(uint32_t i, char* buffer, int base) { in FastUInt32ToBufferLeft() function 98 return FastUInt32ToBufferLeft(u, buffer, 10); in FastInt32ToBufferLeft() 111 FastUInt32ToBufferLeft(number, number_string, base); in StrCatUInt32() 221 return static_cast<int>(FastUInt32ToBufferLeft(i, output, 10) - output); in FormatUInt32() 225 return static_cast<int>(FastUInt32ToBufferLeft(i, output, 16) - output); in FormatHex()
|
/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/platform/ |
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 | 511 PROTOBUF_EXPORT char* FastUInt32ToBufferLeft(uint32 i, char* buffer); 517 FastUInt32ToBufferLeft(i, buffer); in FastUInt32ToBuffer() 628 piece_size_(FastUInt32ToBufferLeft(u32, digits) - &digits[0]) {} in AlphaNum()
|
D | strutil.cc | 985 char* FastUInt32ToBufferLeft(uint32 u, char* buffer) { in FastUInt32ToBufferLeft() function 1073 return FastUInt32ToBufferLeft(u, buffer); in FastInt32ToBufferLeft() 1081 if (u == u64) return FastUInt32ToBufferLeft(u, buffer); in FastUInt64ToBufferLeft() 1146 FastUInt32ToBufferLeft(i, buffer) : in SimpleItoa() 1160 FastUInt32ToBufferLeft(i, buffer) : in SimpleItoa() 1174 FastUInt32ToBufferLeft(i, buffer) : in SimpleItoa()
|