Lines Matching +full:max +full:- +full:functions
19 build = '../build/try-'
25 'bionic-a9': 'memcmp memcpy memset strcmp strcpy strlen',
26 'bionic-a15': 'memcmp memcpy memset strcmp strcpy strlen',
27 'bionic-c': ALL,
30 'glibc-c': ALL,
32 'newlib-c': ALL,
33 'newlib-xscale': 'memchr memcpy memset strchr strcmp strcpy strlen',
54 FUNCTIONS = sorted(ALIGNMENTS.keys()) variable
66 …cmd = '%(xbuild)s%(variant)s -t %(function)s -c %(bytes)s -l %(loops)s -a %(alignment)s -r %(run_i…
94 # Find all other functions
95 for functions in HAS.values():
96 for function in functions.split():
113 loops = int(f / math.sqrt(max(1, mid)))
117 factor = min(20, max(0.05, want/took))
121 scale = 10**int(math.log10(f) - 1)
126 loops = int(f / math.sqrt(max(1, b)))
133 …parser.add_argument("-v", "--variants", nargs="+", help="library variant to run (run all if not sp…
134 ….add_argument("-f", "--functions", nargs="+", help="function to run (run all if not specified)", d…
135 …parser.add_argument("-l", "--limit", type=int, help="upper limit to test to (in bytes)", default =…
151 run_many(cache, args.variants, bytes, args.functions)