Searched refs:kFastToBufferSize (Results 1 – 13 of 13) sorted by relevance
/external/tensorflow/tensorflow/lite/micro/ |
D | debug_log_numbers.cc | 29 static const int kFastToBufferSize = 48; variable 91 char number_string[kFastToBufferSize]; in StrCatInt32() 98 char number_string[kFastToBufferSize]; in StrCatUInt32() 109 char* current_end = buffer + (kFastToBufferSize - 1); in FastFloatToBufferLeft() 164 char number_string[kFastToBufferSize]; in DebugLogInt32() 170 char number_string[kFastToBufferSize]; in DebugLogUInt32() 176 char number_string[kFastToBufferSize]; in DebugLogHex() 182 char number_string[kFastToBufferSize]; in DebugLogFloat()
|
/external/tensorflow/tensorflow/core/platform/ |
D | numbers.cc | 191 snprintf(buffer, kFastToBufferSize, "%.*g", DBL_DIG, value); in DoubleToBuffer() 195 DCHECK(snprintf_result > 0 && snprintf_result < kFastToBufferSize); in DoubleToBuffer() 205 snprintf(buffer, kFastToBufferSize, "%.*g", DBL_DIG + 2, value); in DoubleToBuffer() 208 DCHECK(snprintf_result > 0 && snprintf_result < kFastToBufferSize); in DoubleToBuffer() 340 if (len >= kFastToBufferSize) return false; in safe_strtof() 353 if (len >= kFastToBufferSize) return false; in safe_strtod() 369 snprintf(buffer, kFastToBufferSize, "%.*g", FLT_DIG, value); in FloatToBuffer() 373 DCHECK(snprintf_result > 0 && snprintf_result < kFastToBufferSize); in FloatToBuffer() 378 snprintf(buffer, kFastToBufferSize, "%.*g", FLT_DIG + 3, value); in FloatToBuffer() 381 DCHECK(snprintf_result > 0 && snprintf_result < kFastToBufferSize); in FloatToBuffer()
|
D | numbers_test.cc | 49 char buf[kFastToBufferSize]; in TEST() 293 char test_str[2 * kFastToBufferSize]; in TEST() 294 for (int i = 0; i < 2 * kFastToBufferSize; ++i) test_str[i] = 'a'; in TEST() 295 test_str[kFastToBufferSize + 1] = '\0'; in TEST() 331 char test_str[2 * kFastToBufferSize]; in TEST() 332 for (int i = 0; i < 2 * kFastToBufferSize; ++i) test_str[i] = 'a'; in TEST() 333 test_str[kFastToBufferSize + 1] = '\0'; in TEST()
|
D | numbers.h | 48 static const int kFastToBufferSize = 32; variable
|
D | strcat.h | 139 char digits_[kFastToBufferSize];
|
D | strcat.cc | 30 char *const end = &digits_[kFastToBufferSize]; in AlphaNum()
|
/external/dynamic_depth/internal/strings/ |
D | numbers.cc | 516 char buffer[kFastToBufferSize]; in SimpleFtoa() 528 snprintf(buffer, kFastToBufferSize, "%.*g", FLT_DIG, value); in FloatToBuffer() 532 assert(snprintf_result > 0 && snprintf_result < kFastToBufferSize); in FloatToBuffer() 537 snprintf(buffer, kFastToBufferSize, "%.*g", FLT_DIG + 2, value); in FloatToBuffer() 540 assert(snprintf_result > 0 && snprintf_result < kFastToBufferSize); in FloatToBuffer()
|
D | numbers.h | 75 static const int kFastToBufferSize = 32; variable
|
/external/tensorflow/tensorflow/compiler/xla/ |
D | util.cc | 158 char buffer[tensorflow::strings::kFastToBufferSize]; in RoundTripFpToString() 164 char buffer[tensorflow::strings::kFastToBufferSize]; in RoundTripFpToString()
|
/external/protobuf/src/google/protobuf/stubs/ |
D | strutil.cc | 1137 char buffer[kFastToBufferSize]; in SimpleItoa() 1144 char buffer[kFastToBufferSize]; in SimpleItoa() 1151 char buffer[kFastToBufferSize]; in SimpleItoa() 1158 char buffer[kFastToBufferSize]; in SimpleItoa() 1165 char buffer[kFastToBufferSize]; in SimpleItoa() 1172 char buffer[kFastToBufferSize]; in SimpleItoa() 1421 char *const end = &digits[kFastToBufferSize]; in AlphaNum()
|
D | substitute.h | 137 char scratch_[kFastToBufferSize];
|
D | strutil.h | 466 static const int kFastToBufferSize = 32; variable 618 char digits[kFastToBufferSize];
|
/external/tensorflow/tensorflow/core/framework/ |
D | rendezvous.cc | 64 char buf[strings::kFastToBufferSize]; in CreateKey()
|