| /third_party/ulib/musl/third_party/smoothsort/ |
| A D | qsort.c | 50 while (width) { in cycle() 51 l = sizeof(tmp) < width ? sizeof(tmp) : width; in cycle() 57 width -= l; in cycle() 91 rt = head - width; in sift() 107 cycle(width, ar, i); in sift() 128 rt = head - width; in trinkle() 143 cycle(width, ar, i); in trinkle() 188 head += width; in qsort() 203 trinkle(head - lp[pshift] - width, width, cmp, p, pshift + 1, 1, lp); in qsort() 206 trinkle(head - width, width, cmp, p, pshift, 1, lp); in qsort() [all …]
|
| /third_party/ulib/musl/src/time/ |
| A D | wcsftime.c | 18 unsigned long width; in __wcsftime_l() local 31 width = wcstoul(f, &p, 10); in __wcsftime_l() 33 if (!width && p != f) in __wcsftime_l() 34 width = 1; in __wcsftime_l() 36 width = 0; in __wcsftime_l() 48 if (width) { in __wcsftime_l() 51 width--; in __wcsftime_l() 57 width++; in __wcsftime_l() 58 for (; width > k && l < n; width--) in __wcsftime_l()
|
| A D | strftime.c | 51 int width = 2; in __strftime_fmt_1() local 103 width = 4; in __strftime_fmt_1() 117 width = 3; in __strftime_fmt_1() 139 width = 1; in __strftime_fmt_1() 152 width = 1; in __strftime_fmt_1() 165 width = 1; in __strftime_fmt_1() 182 width = 4; in __strftime_fmt_1() 246 width = 0; in strftime() 254 if (width) { in strftime() 257 width--; in strftime() [all …]
|
| /third_party/ulib/musl/src/stdio/ |
| A D | vfwscanf.c | 89 int width; in vfwscanf() local 146 width = 10 * width + *p - '0'; in vfwscanf() 236 if (width < 1) in vfwscanf() 237 width = 1; in vfwscanf() 266 if (width < 1) in vfwscanf() 267 width = -1; in vfwscanf() 282 while (width) { in vfwscanf() 310 width -= (width > 0); in vfwscanf() 313 if (width) { in vfwscanf() 348 if (width < 1) in vfwscanf() [all …]
|
| A D | vfscanf.c | 57 int width; in vfscanf() local 117 for (width = 0; isdigit(*p); p++) { in vfscanf() 118 width = 10 * width + *p - '0'; in vfscanf() 189 if (width < 1) in vfscanf() 190 width = 1; in vfscanf() 205 shlim(f, width); in vfscanf() 246 k = t == 'c' ? width + 1U : 31; in vfscanf() 299 if (t == 'c' && shcnt(f) != width) in vfscanf()
|
| /third_party/ulib/jemalloc/src/ |
| A D | util.c | 333 size_t pad_len = (width == -1) ? 0 : ((slen < (size_t)width) ? \ in malloc_vsnprintf() 334 (size_t)width - slen : 0); \ in malloc_vsnprintf() 404 int width = -1; in malloc_vsnprintf() local 437 width = va_arg(ap, int); in malloc_vsnprintf() 439 if (width < 0) { in malloc_vsnprintf() 441 width = -width; in malloc_vsnprintf() 451 width = (int)uwidth; in malloc_vsnprintf() 510 APPEND_PADDED_S(s, slen, width, left_justify); in malloc_vsnprintf() 519 APPEND_PADDED_S(s, slen, width, left_justify); in malloc_vsnprintf() 528 APPEND_PADDED_S(s, slen, width, left_justify); in malloc_vsnprintf() [all …]
|
| /third_party/ulib/musl/src/stdlib/ |
| A D | bsearch.c | 3 void* bsearch(const void* key, const void* base, size_t nel, size_t width, in bsearch() argument 10 = (char*)base + width * (nel / 2); in bsearch()
|
| /third_party/dev/ethernet/e1000/ |
| A D | e1000_82542.c | 182 hw->bus.width = e1000_bus_width_unknown; in e1000_get_bus_info_82542()
|
| A D | e1000_mac.c | 215 bus->width = (status & E1000_STATUS_BUS64) in e1000_get_bus_info_pci_generic() 247 bus->width = e1000_bus_width_unknown; in e1000_get_bus_info_pcie_generic() 262 bus->width = (enum e1000_bus_width)((pcie_link_status & in e1000_get_bus_info_pcie_generic()
|
| A D | e1000_hw.h | 882 enum e1000_bus_width width; member
|
| A D | e1000_ich8lan.c | 4931 if (bus->width == e1000_bus_width_unknown) in e1000_get_bus_info_ich8lan() 4932 bus->width = e1000_bus_width_pcie_x1; in e1000_get_bus_info_ich8lan()
|
| /third_party/ulib/linenoise/ |
| A D | linenoise.c | 355 return wsz.width;
|
| /third_party/uapp/kilo/ |
| A D | kilo.c | 70 *cols = wsz.width; in getConsoleSize()
|
| /third_party/ulib/chromiumos-platform-ec/include/chromiumos-platform-ec/ |
| A D | ec_commands.h | 4392 uint16_t width; member
|
| /third_party/lib/acpica/ |
| A D | changes.txt | 36 would cause incorrect bit width warnings when using Word (16-bit) fields 1854 hardcodes the width to 8 and ignores the FADT width value. This provides 11605 next access width boundary (a common coding error.) 12386 would incorrectly be returned if the width of the Data Register 12387 was larger than the specified field access width. 14237 specified access width was larger than a byte. This caused 14276 unit whose size + minimum access width would cause a run-time 14941 alignment of the field differed from the access width. This 14999 DataRegister width. 15385 width (8, 16, 32,or 64) before calling the OSL if the [all …]
|
| /third_party/ulib/musl/ |
| A D | WHATSNEW | 320 - various printf integer formatting issues with flags/width/precision
|