Searched refs:maxexp (Results 1 – 8 of 8) sorted by relevance
/third_party/python/Modules/_decimal/tests/ |
D | randdec.py | 83 def expdigits(maxexp): argument 84 return str(randrange(maxexp)) 86 def exponent_part(maxexp): argument 87 return ''.join((indicator(), sign(), expdigits(maxexp))) 102 def numeric_value(maxprec, maxexp): argument 107 exp_part = exponent_part(maxexp) 110 def numeric_string(maxprec, maxexp): argument 114 return ''.join((sign(), numeric_value(maxprec, maxexp))) 116 def randdec(maxprec, maxexp): argument 117 return numeric_string(maxprec, maxexp) [all …]
|
/third_party/ltp/testcases/kernel/syscalls/fanotify/ |
D | fanotify10.c | 630 int minexp, maxexp; in create_fanotify_groups() local 633 minexp = maxexp = 0; in create_fanotify_groups() 640 maxexp = tc->ignore_path_cnt / 2; in create_fanotify_groups() 642 minexp = maxexp = tc->ignore_path_cnt ? : 1; in create_fanotify_groups() 645 minexp, maxexp); in create_fanotify_groups()
|
/third_party/node/deps/v8/src/execution/mips/ |
D | simulator-mips.cc | 5559 int maxexp = 29; \ in DecodeTypeMsa3RF() 5593 if (aExp > maxexp || (aExp == maxexp && rounding_bumps_exp)) { \ in DecodeTypeMsa3RF()
|
/third_party/python/Modules/_decimal/libmpdec/ |
D | mpdecimal.c | 7038 mpd_ssize_t shift, maxexp, maxshift; in mpd_qreduce() local 7062 maxexp = (ctx->clamp) ? mpd_etop(ctx) : ctx->emax; in mpd_qreduce() 7064 maxshift = maxexp - result->exp; in mpd_qreduce()
|
/third_party/node/deps/v8/src/execution/mips64/ |
D | simulator-mips64.cc | 5845 int maxexp = 29; \ in DecodeTypeMsa3RF() 5879 if (aExp > maxexp || (aExp == maxexp && rounding_bumps_exp)) { \ in DecodeTypeMsa3RF()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | decNumber.cpp | 3113 Int maxexp=set->emax-set->digits+1; in uprv_decNumberSquareRoot() local 3114 Int maxdrop=maxexp-a->exponent; in uprv_decNumberSquareRoot()
|
/third_party/icu/icu4c/source/i18n/ |
D | decNumber.cpp | 3113 Int maxexp=set->emax-set->digits+1; in uprv_decNumberSquareRoot() local 3114 Int maxdrop=maxexp-a->exponent; in uprv_decNumberSquareRoot()
|
/third_party/node/deps/icu-small/source/i18n/ |
D | decNumber.cpp | 3113 Int maxexp=set->emax-set->digits+1; in uprv_decNumberSquareRoot() local 3114 Int maxdrop=maxexp-a->exponent; in uprv_decNumberSquareRoot()
|