Searched refs:max_opt (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython3/Lib/distutils/ |
D | fancy_getopt.py | 289 max_opt = 0 298 if l > max_opt: 299 max_opt = l 301 opt_width = max_opt + 2 + 2 + 2 # room for indent + dashes + gutter 342 lines.append(" --%-*s %s" % (max_opt, long, text[0])) 344 lines.append(" --%-*s " % (max_opt, long)) 352 (max_opt, opt_names, text[0]))
|
/external/python/cpython2/Lib/distutils/ |
D | fancy_getopt.py | 317 max_opt = 0 326 if l > max_opt: 327 max_opt = l 329 opt_width = max_opt + 2 + 2 + 2 # room for indent + dashes + gutter 370 lines.append(" --%-*s %s" % (max_opt, long, text[0])) 372 lines.append(" --%-*s " % (max_opt, long)) 380 (max_opt, opt_names, text[0]))
|
/external/libyuv/files/unit_test/ |
D | planar_test.cc | 2907 float max_c, max_opt = 0.f; in TestScaleMaxSamples() local 2929 max_opt = ScaleMaxSamples_NEON(reinterpret_cast<float*>(orig_y), in TestScaleMaxSamples() 2933 max_opt = in TestScaleMaxSamples() 2938 max_opt = in TestScaleMaxSamples() 2944 float max_diff = FAbs(max_opt - max_c); in TestScaleMaxSamples()
|