Searched refs:top_count (Results 1 – 10 of 10) sorted by relevance
/external/v8/tools/ignition/ |
D | bytecode_dispatches_report.py | 61 def find_top_bytecode_dispatch_pairs(dispatches_table, top_count): argument 67 return heapq.nlargest(top_count, flattened_counters_generator(), 71 def print_top_bytecode_dispatch_pairs(dispatches_table, top_count): argument 73 find_top_bytecode_dispatch_pairs(dispatches_table, top_count)) 74 print "Top {} bytecode dispatch pairs:".format(top_count) 96 dispatches_table, bytecode, top_count, sort_source_relative): argument 110 return (heapq.nlargest(top_count, sources, 112 heapq.nlargest(top_count, destinations, key=lambda x: x[1])) 116 top_count, sort_relative): argument 118 dispatches_table, bytecode, top_count, sort_relative)
|
/external/bcc/tools/lib/ |
D | uobjnew.py | 181 if args.top_count: 183 data = data[-args.top_count:]
|
/external/capstone/bindings/ocaml/ |
D | test_mips.ml | 45 printf "\top_count: %d\n" (Array.length mips.operands);
|
D | test_systemz.ml | 50 printf "\top_count: %d\n" (Array.length sysz.operands);
|
D | test_xcore.ml | 48 printf "\top_count: %d\n" (Array.length xcore.operands);
|
D | test_ppc.ml | 51 printf "\top_count: %d\n" (Array.length ppc.operands);
|
D | test_sparc.ml | 49 printf "\top_count: %d\n" (Array.length sparc.operands);
|
D | test_arm64.ml | 70 printf "\top_count: %d\n" (Array.length arm64.operands);
|
D | test_arm.ml | 73 printf "\top_count: %d\n" (Array.length arm.operands);
|
D | test_x86.ml | 83 printf "\top_count: %d\n" (Array.length x86.operands);
|