Home
last modified time | relevance | path

Searched refs:usable_length (Results 1 – 1 of 1) sorted by relevance

/external/tensorflow/tensorflow/lite/micro/
Dmicro_string.cc239 const int usable_length = len - 1; in MicroVsnprintf() local
240 while (*current != '\0' && output_index < usable_length) { in MicroVsnprintf()
246 if (usable_length - output_index < kMaxIntCharsNeeded) { in MicroVsnprintf()
255 if (usable_length - output_index < kMaxIntCharsNeeded) { in MicroVsnprintf()
264 if (usable_length - output_index < kMaxHexCharsNeeded) { in MicroVsnprintf()
275 if (usable_length - output_index < kMaxFloatCharsNeeded) { in MicroVsnprintf()
289 while (string_idx + output_index < usable_length && in MicroVsnprintf()