HomeSort by relevance Sort by last modified time
    Searched defs:thousands (Results 1 - 2 of 2) sorted by null

  /external/bison/lib/
strtol.c 254 /* The thousands character of the current locale. */
255 wchar_t thousands = L'\0'; local
267 /* Figure out the thousands separator character. */
269 thousands = __btowc (*_NL_CURRENT (LC_NUMERIC, THOUSANDS_SEP));
270 if (thousands == WEOF)
271 thousands = L'\0';
273 if (thousands == L'\0')
332 if ((wchar_t) c != thousands
336 if (*s == thousands)
339 end = correctly_grouped_prefix (s, end, thousands, grouping)
    [all...]
  /external/qemu/
trace.c 277 uint32_t thousands = year / 1000; local
278 year -= thousands * 1000;
284 year = (thousands << 12) | (hundreds << 8) | (tens << 4) | ones;
    [all...]

Completed in 63 milliseconds