Searched refs:scan (Results 1 – 6 of 6) sorted by relevance
/busybox-1.35.0/util-linux/ |
D | readprofile.c | 236 unsigned long long scan; in readprofile_main() local 238 for (scan = (fn_add-add0)/step + 1; in readprofile_main() 239 scan < (next_add-add0)/step; scan++) { in readprofile_main() 242 addr = (scan - 1)*step + add0; in readprofile_main() 245 buf[scan]); in readprofile_main()
|
/busybox-1.35.0/procps/ |
D | pstree.c | 246 CHILD *walk, *next, **scan; in dump_tree() local 307 scan = &walk->next; in dump_tree() 308 while (*scan) { in dump_tree() 309 if (!tree_equal(walk->child, (*scan)->child)) in dump_tree() 310 scan = &(*scan)->next; in dump_tree() 312 if (next == *scan) in dump_tree() 313 next = (*scan)->next; in dump_tree() 315 *scan = (*scan)->next; in dump_tree()
|
/busybox-1.35.0/archival/ |
D | gzip.c | 713 uch *scan = G1.window + G1.strstart; /* current string */ in longest_match() local 729 uch scan_end1 = scan[best_len - 1]; in longest_match() 730 uch scan_end = scan[best_len]; in longest_match() 747 || *match != *scan || *++match != scan[1] in longest_match() 758 scan += 2, match++; in longest_match() 764 } while (*++scan == *++match && *++scan == *++match && in longest_match() 765 *++scan == *++match && *++scan == *++match && in longest_match() 766 *++scan == *++match && *++scan == *++match && in longest_match() 767 *++scan == *++match && *++scan == *++match && scan < strend); in longest_match() 769 len = MAX_MATCH - (int) (strend - scan); in longest_match() [all …]
|
/busybox-1.35.0/scripts/kconfig/ |
D | zconf.l | 316 printf("recursive scan (%s)?\n", name);
|
D | lex.zconf.c_shipped | 1822 /** Discard all buffered characters. On the next scan, YY_INPUT will be called. 1943 /** Setup the input buffer state to scan directly from a user-specified character buffer. 1978 /** Setup the input buffer state to scan a string. The next call to zconflex() will 1979 * scan from a @e copy of @a str. 1980 * @param yy_str a NUL-terminated string to scan 1983 * @note If you want to scan bytes that may contain NUL values, then use 1992 /** Setup the input buffer state to scan the given bytes. The next call to zconflex() will 1993 * scan from a @e copy of @a bytes. 1994 * @param bytes the byte buffer to scan 2286 printf("recursive scan (%s)?\n", name);
|
/busybox-1.35.0/shell/ |
D | ash.c | 7051 char *(*scan)(char*, char*, char*, char*, int, int); in subevalvar() local 7395 scan = (subtype & 1) ^ zero ? scanleft : scanright; in subevalvar() 7397 loc = scan(startp, rmesc, rmescend, str, quotes, zero); in subevalvar()
|