Home
last modified time | relevance | path

Searched refs:longest (Results 1 – 25 of 33) sorted by relevance

12

/linux/tools/lib/subcmd/
A Dhelp.c106 static void pretty_print_string_list(struct cmdnames *cmds, int longest) in pretty_print_string_list() argument
109 int space = longest + 1; /* min 1 SP between words */ in pretty_print_string_list()
234 unsigned int i, longest = 0; in list_commands() local
237 if (longest < main_cmds->names[i]->len) in list_commands()
238 longest = main_cmds->names[i]->len; in list_commands()
240 if (longest < other_cmds->names[i]->len) in list_commands()
241 longest = other_cmds->names[i]->len; in list_commands()
249 pretty_print_string_list(main_cmds, longest); in list_commands()
259 pretty_print_string_list(other_cmds, longest); in list_commands()
/linux/tools/objtool/
A Dobjtool.c166 unsigned int i, longest = 0; in cmd_usage() local
171 if (longest < strlen(objtool_cmds[i].name)) in cmd_usage()
172 longest = strlen(objtool_cmds[i].name); in cmd_usage()
177 printf(" %-*s ", longest, objtool_cmds[i].name); in cmd_usage()
/linux/lib/lz4/
A Dlz4hc_compress.c173 int longest, in LZ4HC_InsertAndGetWiderMatch() argument
201 if (*(iLowLimit + longest) in LZ4HC_InsertAndGetWiderMatch()
202 == *(matchPtr - delta + longest)) { in LZ4HC_InsertAndGetWiderMatch()
217 if (mlt > longest) { in LZ4HC_InsertAndGetWiderMatch()
218 longest = (int)mlt; in LZ4HC_InsertAndGetWiderMatch()
248 if ((int)mlt > longest) { in LZ4HC_InsertAndGetWiderMatch()
249 longest = (int)mlt; in LZ4HC_InsertAndGetWiderMatch()
259 return longest; in LZ4HC_InsertAndGetWiderMatch()
/linux/tools/perf/
A Dbuiltin-help.c302 unsigned int i, longest = 0; in list_common_cmds_help() local
305 if (longest < strlen(common_cmds[i].name)) in list_common_cmds_help()
306 longest = strlen(common_cmds[i].name); in list_common_cmds_help()
311 printf(" %-*s ", longest, common_cmds[i].name); in list_common_cmds_help()
/linux/fs/xfs/
A Dxfs_filestream.c108 xfs_extlen_t longest, free = 0, minfree, maxfree = 0; in xfs_filestream_pick_ag() local
156 longest = xfs_alloc_longest_free_extent(pag, in xfs_filestream_pick_ag()
159 if (((minlen && longest >= minlen) || in xfs_filestream_pick_ag()
A Dxfs_trace.h1706 __field(__u32, longest)
1724 __entry->longest = be32_to_cpu(agf->agf_longest);
1742 __entry->longest,
/linux/Documentation/networking/
A Dfib_trie.rst131 and we backtrack upwards through the trie trying to find a longest matching
135 Inside each tnode, the search for longest matching prefix consists of searching
141 chop off part of the key in order to find the longest matching prefix.
A Dswitchdev.rst345 does a longest prefix match (LPM) on FIB entries matching route prefix and
/linux/fs/xfs/scrub/
A Dagheader_repair.c66 xfs_agblock_t longest; member
83 if (rec->ar_blockcount > raa->longest) in xrep_agf_walk_allocbt()
84 raa->longest = rec->ar_blockcount; in xrep_agf_walk_allocbt()
261 agf->agf_longest = cpu_to_be32(raa.longest); in xrep_agf_calc_from_btrees()
/linux/fs/nfsd/
A Dfilecache.c1068 unsigned int i, count = 0, longest = 0; in nfsd_file_cache_stats_show() local
1080 longest = max(longest, nfsd_file_hashtbl[i].nfb_count); in nfsd_file_cache_stats_show()
1089 seq_printf(m, "longest chain: %u\n", longest); in nfsd_file_cache_stats_show()
/linux/fs/ocfs2/dlm/
A Ddlmdebug.c409 unsigned long total = 0, longest = 0, bucket_count = 0; in debug_mle_print() local
424 longest = max(longest, bucket_count); in debug_mle_print()
430 "Total: %lu, Longest: %lu\n", total, longest); in debug_mle_print()
/linux/Documentation/locking/
A Dlockstat.rst58 - longest time we ever had to wait for a lock
71 - longest time we ever held the lock
/linux/fs/xfs/libxfs/
A Dxfs_dir2_node.c1186 int longest) in xfs_dir3_data_block_free() argument
1198 freehdr.bests[findex] = cpu_to_be16(longest); in xfs_dir3_data_block_free()
1276 int longest; /* longest data free entry */ in xfs_dir2_leafn_remove() local
1323 longest = be16_to_cpu(bf[0].length); in xfs_dir2_leafn_remove()
1341 if (longest < be16_to_cpu(bf[0].length)) { in xfs_dir2_leafn_remove()
1371 longest = be16_to_cpu(bf[0].length); in xfs_dir2_leafn_remove()
1376 if (longest == geo->blksize - geo->data_entry_offset) { in xfs_dir2_leafn_remove()
1398 fdb, findex, fbp, longest); in xfs_dir2_leafn_remove()
A Dxfs_ialloc.c1605 xfs_extlen_t longest = 0; in xfs_dialloc_good_ag() local
1656 longest = pag->pagf_longest; in xfs_dialloc_good_ag()
1657 if (!longest) in xfs_dialloc_good_ag()
1658 longest = pag->pagf_flcount > 0; in xfs_dialloc_good_ag()
1661 if (pag->pagf_freeblks < needspace + ineed || longest < ineed) in xfs_dialloc_good_ag()
A Dxfs_alloc.c2288 xfs_extlen_t alloc_len, longest; in xfs_alloc_space_available() local
2300 longest = xfs_alloc_longest_free_extent(pag, min_free, reservation); in xfs_alloc_space_available()
2301 if (longest < alloc_len) in xfs_alloc_space_available()
A Dxfs_bmap.c3185 xfs_extlen_t longest; in xfs_bmap_longest_free_extent() local
3201 longest = xfs_alloc_longest_free_extent(pag, in xfs_bmap_longest_free_extent()
3204 if (*blen < longest) in xfs_bmap_longest_free_extent()
3205 *blen = longest; in xfs_bmap_longest_free_extent()
/linux/Documentation/ABI/testing/
A Dconfigfs-usb-gadget-uvc230 dwMinBitRate the minimum bit rate at the longest
289 dwMinBitRate the minimum bit rate at the longest
/linux/drivers/remoteproc/
A Dremoteproc_core.c2763 unsigned int longest = 0; in rproc_panic_handler() local
2777 longest = max(longest, d); in rproc_panic_handler()
2787 mdelay(longest); in rproc_panic_handler()
/linux/lib/
A Dvsprintf.c1375 int longest = 1; in ip6_compressed_string() local
1403 if (zerolength[i] > longest) { in ip6_compressed_string()
1404 longest = zerolength[i]; in ip6_compressed_string()
1408 if (longest == 1) /* don't compress a single 0 */ in ip6_compressed_string()
1418 i += longest - 1; in ip6_compressed_string()
/linux/tools/perf/util/
A Dparse-events.c415 int n, longest = -1; in parse_aliases() local
420 if (n > longest && !strncasecmp(str, names[i][j], n)) in parse_aliases()
421 longest = n; in parse_aliases()
423 if (longest > 0) in parse_aliases()
/linux/Documentation/networking/devlink/
A Ddevlink-dpipe.rst15 For example, the routing longest prefix match (LPM) algorithm used by the
/linux/tools/lib/traceevent/
A Devent-parse.c4664 int longest = 1; in print_ip6c_addr() local
4692 if (zerolength[i] > longest) { in print_ip6c_addr()
4693 longest = zerolength[i]; in print_ip6c_addr()
4697 if (longest == 1) /* don't compress a single 0 */ in print_ip6c_addr()
4707 i += longest - 1; in print_ip6c_addr()
/linux/arch/arm/boot/dts/
A Dexynos5800-peach-pi.dts1092 * Use longest HW watchdog in SoC (32 seconds) since the hardware
A Dexynos5420-peach-pit.dts1110 * Use longest HW watchdog in SoC (32 seconds) since the hardware
/linux/arch/arm/boot/compressed/
A Dhead.S1319 bic r1, r1, #63 @ align to longest cache line

Completed in 79 milliseconds

12