/freebsd/usr.bin/indent/tests/ |
H A D | f_decls.0 | 9 dmax = (double)3 * 10.0; 10 dmin = (double)dmax * 10.0; 11 davg = (double)dmax * dmin;
|
H A D | f_decls.0.stdout | 10 dmax = (double)3 * 10.0; 11 dmin = (double)dmax * 10.0; 12 davg = (double)dmax * dmin;
|
/freebsd/crypto/openssl/crypto/bn/ |
H A D | bn_lib.c | 149 * This function still leaks `a->dmax`: it's caller's responsibility to 160 for (j = 0, past_i = 0, ret = 0; j < a->dmax; j++) { in bn_num_bits_consttime() 186 * so that a->dmax is not leaking secret information. in BN_num_bits() 205 OPENSSL_secure_clear_free(a->d, a->dmax * sizeof(a->d[0])); in bn_free_d() 207 OPENSSL_clear_free(a->d, a->dmax * sizeof(a->d[0])); in bn_free_d() 265 /* The caller MUST check that words > b->dmax before calling this */ 304 if (words > b->dmax) { in bn_expand2() 311 b->dmax = words; in bn_expand2() 342 bn_words = BN_get_flags(b, BN_FLG_CONSTTIME) ? b->dmax : b->top; in BN_copy() 379 tmp_dmax = a->dmax; in BN_swap() [all...] |
H A D | bn_intern.c | 148 return a->dmax; in bn_get_dmax() 155 for (i = a->top; i < a->dmax; i++) in bn_set_all_zero() 182 a->dmax = a->top = size; in bn_set_static_words()
|
H A D | bn_mod.c | 85 ai += (i - a->dmax) >> (8 * sizeof(i) - 1); in bn_mod_add_fixed_top() 86 bi += (i - b->dmax) >> (8 * sizeof(i) - 1); in bn_mod_add_fixed_top() 162 ai += (i - a->dmax) >> (8 * sizeof(i) - 1); in bn_mod_sub_fixed_top() 163 bi += (i - b->dmax) >> (8 * sizeof(i) - 1); in bn_mod_sub_fixed_top()
|
H A D | bn_local.h | 185 if (_bnum1->top < _bnum1->dmax) { \ 194 sizeof(*_not_const) * (_bnum1->dmax - _bnum1->top)); \ 218 assert((words) <= (_bnum2)->dmax && \ 250 int dmax; /* Size of the d array. */ member 464 int ind = (a)->dmax - (a)->top; \ 671 if (((bits+BN_BITS2-1)/BN_BITS2) <= (a)->dmax) in bn_expand()
|
H A D | bn_ctx.c | 92 item->vals[bnidx++ % BN_CTX_POOL_SIZE].dmax); in ctxdbg() 170 BIO_printf(trc_out, "%02x ", pool->vals[loop++].dmax); in BN_CTX_free()
|
H A D | README.pod | 80 int dmax; /* Size of the d array. */ 91 B<dmax> is the size of the B<d> array that has been allocated. B<top> 216 E<lt>= (a)-E<gt>dmax)>. A violation will cause the program to abort. 221 bn_set_max() makes B<a> a static number with a B<dmax> of its current size.
|
H A D | bn_gcd.c | 583 for (i = 0; i < r->dmax && i < g->dmax; i++) { in BN_gcd()
|
H A D | bn_blind.c | 181 if (n->dmax >= r->top) { in BN_BLINDING_invert_ex()
|
/freebsd/sbin/growfs/ |
H A D | growfs.c | 296 ufs2_daddr_t i, cbase, dmax; in initcg() local 314 dmax = cbase + sblock.fs_fpg; in initcg() 315 if (dmax > sblock.fs_size) in initcg() 316 dmax = sblock.fs_size; in initcg() 328 acg.cg_ndblk = dmax - cbase; in initcg() 553 ufs2_daddr_t cbase, dmax; in updjcg() 597 dmax = cbase + sblock.fs_fpg; in updjcg() 598 if (dmax > sblock.fs_size) in updjcg() 599 dmax = sblock.fs_size; in updjcg() 627 acg.cg_ndblk = dmax - cbase; in updjcg() [all …]
|
/freebsd/sys/contrib/zlib/ |
H A D | inffast.c | 58 unsigned dmax; /* maximum distance from zlib header */ in inflate_fast() local 85 dmax = state->dmax; in inflate_fast() 157 if (dist > dmax) { in inflate_fast()
|
H A D | inflate.h | 91 unsigned dmax; /* zlib header max distance (INFLATE_STRICT) */ member
|
H A D | inflate.c | 119 state->dmax = 32768U; in inflateResetKeep() 663 state->dmax = 1U << len; in inflate() 1123 if (state->offset > state->dmax) { in inflate()
|
/freebsd/sbin/fsck_ffs/ |
H A D | pass5.c | 55 ufs2_daddr_t d, dbase, dmax, start; in pass5() local 147 dmax = blknum(fs, fs->fs_size + fs->fs_frag - 1); in pass5() 148 for (d = fs->fs_size; d < dmax; d++) in pass5() 192 dmax = dbase + fs->fs_fpg; in pass5() 193 if (dmax > fs->fs_size) in pass5() 194 dmax = fs->fs_size; in pass5() 195 newcg->cg_ndblk = dmax - dbase; in pass5() 268 d < dmax; in pass5()
|
/freebsd/contrib/arm-optimized-routines/math/test/rtest/ |
H A D | dotest.c | 1418 uint32 dmin, dmax; in pow_cases() local 1439 dmax = doubletop(imax, -8); in pow_cases() 1446 dmax = 63 - n; in pow_cases() 1448 dmax = 62 - n; in pow_cases() 1449 dmax = (dmax << 20) + 0x3FF00000; in pow_cases() 1450 dmin = dmax; in pow_cases() 1475 out[2] = dmax - random_upto_biased(dmax-pmin, 10); in pow_cases() 1508 uint32 dmin, dmax; in pow_cases_float() local 1529 dmax = floatval(imax, -8); in pow_cases_float() 1536 dmax = 31 - n; in pow_cases_float() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/dma/ |
H A D | zxdma.txt | 27 Use specific request line passing from dmax
|
H A D | k3dma.txt | 31 Use specific request line passing from dmax
|
/freebsd/usr.sbin/makefs/ffs/ |
H A D | mkfs.c | 625 daddr_t cbase, dmax; in initcg() local 638 dmax = cbase + sblock.fs_fpg; in initcg() 639 if (dmax > sblock.fs_size) in initcg() 640 dmax = sblock.fs_size; in initcg() 651 acg.cg_ndblk = dmax - cbase; in initcg()
|
/freebsd/tools/tools/netmap/ |
H A D | nmreplay.c | 1518 uint64_t dmin, dmax; in uniform_delay_parse() local 1526 dmax = parse_time(av[2]); in uniform_delay_parse() 1527 if (dmin == U_PARSE_ERR || dmax == U_PARSE_ERR || dmin > dmax) in uniform_delay_parse() 1529 D("dmin %lld dmax %lld", (long long)dmin, (long long)dmax); in uniform_delay_parse() 1531 dst->d[1] = dmax; in uniform_delay_parse() 1532 dst->d[2] = dmax - dmin; in uniform_delay_parse()
|
/freebsd/sbin/newfs/ |
H A D | mkfs.c | 704 ufs2_daddr_t cbase, dmax; in initcg() 715 dmax = cbase + sblock.fs_fpg; in initcg() 716 if (dmax > sblock.fs_size) in initcg() 717 dmax = sblock.fs_size; in initcg() 729 acg.cg_ndblk = dmax - cbase; in initcg() 708 ufs2_daddr_t cbase, dmax; initcg() local
|
/freebsd/contrib/diff/src/ |
H A D | analyze.c | 100 lin const dmax = xlim - yoff; /* Maximum valid diagonal. */ in diag() local 119 fmax < dmax ? fd[++fmax + 1] = -1 : --fmax; in diag() 146 bmax < dmax ? bd[++bmax + 1] = LIN_MAX : --bmax; in diag()
|
/freebsd/sys/dev/bhnd/cores/pmu/ |
H A D | bhnd_pmu_subr.c | 2712 uint32_t up, dup, dmax; in bhnd_pmu_res_uptime() local 2736 dmax = 0; in bhnd_pmu_res_uptime() 2744 if (dmax < dup) in bhnd_pmu_res_uptime() 2745 dmax = dup; in bhnd_pmu_res_uptime() 2749 "uptime %u)\n", rsrc, up, deps, dmax); in bhnd_pmu_res_uptime() 2751 *uptime = (up + dmax + BHND_PMURES_UP_TRANSITION); in bhnd_pmu_res_uptime()
|
/freebsd/sys/contrib/dev/athk/ath10k/ |
H A D | hw.c | 239 .dmax = &wcn3990_dmax, 377 .dmax = &qcax_dmax,
|
/freebsd/usr.sbin/ppp/ |
H A D | command.c | 214 int n, cmax, dmax, cols, cxlen; in HelpCommand() local 233 cmax = dmax = 0; in HelpCommand() 238 if ((n = strlen(cmd->helpmes)) > dmax) in HelpCommand() 239 dmax = n; in HelpCommand() 242 cols = 80 / (dmax + cmax + 3); in HelpCommand() 253 cmd->name, cxlen, cxlen, cx, dmax, dmax, cmd->helpmes); in HelpCommand()
|