Searched refs:kFastToBufferSize (Results 1 – 12 of 12) sorted by relevance
/external/tensorflow/tensorflow/lite/experimental/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/lib/strings/ |
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 | 137 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/protobuf/src/google/protobuf/stubs/ |
D | strutil.cc | 1118 char buffer[kFastToBufferSize]; in SimpleItoa() 1125 char buffer[kFastToBufferSize]; in SimpleItoa() 1132 char buffer[kFastToBufferSize]; in SimpleItoa() 1139 char buffer[kFastToBufferSize]; in SimpleItoa() 1146 char buffer[kFastToBufferSize]; in SimpleItoa() 1153 char buffer[kFastToBufferSize]; in SimpleItoa() 1402 char *const end = &digits[kFastToBufferSize]; in AlphaNum()
|
D | substitute.h | 135 char scratch_[kFastToBufferSize];
|
D | strutil.h | 463 static const int kFastToBufferSize = 32; variable 615 char digits[kFastToBufferSize];
|
/external/tensorflow/tensorflow/core/framework/ |
D | rendezvous.cc | 62 char buf[strings::kFastToBufferSize]; in CreateKey()
|