Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/micro/
Dmicro_string.cc103 char number_string[kFastToBufferSize]; in StrCatInt32() local
104 FastInt32ToBufferLeft(number, number_string); in StrCatInt32()
105 return StrCatStr(main, main_max_length, number_string); in StrCatInt32()
110 char number_string[kFastToBufferSize]; in StrCatUInt32() local
111 FastUInt32ToBufferLeft(number, number_string, base); in StrCatUInt32()
112 return StrCatStr(main, main_max_length, number_string); in StrCatUInt32()
/external/libchrome/build/
Dgn_helpers.py270 number_string = self.input[begin:self.cur]
271 if not len(number_string) or number_string == '-':
273 return int(number_string)