Home
last modified time | relevance | path

Searched refs:SCALE (Results 1 – 9 of 9) sorted by relevance

/freebsd-13.1/crypto/openssl/crypto/whrlpool/asm/
H A Dwp-mmx.pl18 *SCALE=\(2); # 2 or 8, that is the question:-) Value of 8 results
66 { if ($SCALE==2) { &data_byte(@_); &data_byte(@_); }
67 elsif ($SCALE==8) { for ($i=0;$i<8;$i++) {
76 { if ($SCALE==2) { &lea(@_[0],&DWP(0,@_[1],@_[1])); }
77 elsif ($SCALE==8) { &lea(@_[0],&DWP(0,"",@_[1],8)); }
82 { if ($SCALE==2) { ((8-shift)&7); }
83 elsif ($SCALE==8) { (8*shift); }
128 &movq (@mm[0],&QWP(2048*$SCALE,$tbl,"esi",8)); # rc[r]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kInstrFormats.td23 /// 12 M68020 (i,An,Xn.L,SCALE) g address register indirect with index
24 /// 11 M68020 (i,An,Xn.W,SCALE) G address register indirect with index
25 /// 14 M68020 ([bd,An],Xn.L,SCALE,od) u memory indirect postindexed mode
26 /// 13 M68020 ([bd,An],Xn.W,SCALE,od) U memory indirect postindexed mode
27 /// 16 M68020 ([bd,An,Xn.L,SCALE],od) v memory indirect preindexed mode
28 /// 15 M68020 ([bd,An,Xn.W,SCALE],od) V memory indirect preindexed mode
34 /// 25 M68020 (i,PC,Xn.L,SCALE) l program counter with index
35 /// 24 M68020 (i,PC,Xn.W,SCALE) L program counter with index
36 /// 27 M68020 ([bd,PC],Xn.L,SCALE,od) x program counter memory indirect postindexed mo…
38 /// 31 M68020 ([bd,PC,Xn.L,SCALE],od) y program counter memory indirect preindexed mode
[all …]
/freebsd-13.1/sys/netinet/
H A Dip_dummynet.h165 #define SCALE(x) ( (x) << SCALE_RED ) macro
/freebsd-13.1/sys/netpfil/ipfw/
H A Dip_dummynet.c1209 hz * V_dn_cfg.red_avg_pkt_size * 8 * SCALE(1) / i; in config_red()
1216 w0 = weight = SCALE(1) - fs->w_q; //fs->w_q scaled in config_red()
1223 fs->min_th = SCALE(fs->fs.min_th); in config_red()
1224 fs->max_th = SCALE(fs->fs.max_th); in config_red()
1229 fs->c_1 = SCALE((int64_t)(fs->max_p)) / (fs->fs.max_th - fs->fs.min_th); in config_red()
1230 fs->c_2 = SCALE_MUL(fs->c_1, SCALE(fs->fs.min_th)); in config_red()
1233 fs->c_3 = (SCALE(1) - fs->max_p) / fs->fs.max_th; in config_red()
1234 fs->c_4 = SCALE(1) - 2 * fs->max_p; in config_red()
1258 fs->w_q_lookup[0] = SCALE(1) - fs->w_q; in config_red()
H A Dip_dn_io.c338 int diff = SCALE(q_size) - q->avg; in red_drops()
401 if (SCALE_MUL(p_b, SCALE((int64_t)q->count)) > q->random) { in red_drops()
H A Dip_dn_glue.c113 #define SCALE(x) ( (x) << SCALE_RED ) macro
/freebsd-13.1/usr.bin/bc/
H A Dbc.y158 %token SCALE IBASE OBASE AUTO
665 | SCALE LPAR expression RPAR
728 | SCALE
H A Dscan.l143 "scale" return SCALE;
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Target/
H A DGenericOpcodes.td601 /// RESULT = [US]MULFIX(LHS, RHS, SCALE) - Perform fixed point
602 /// multiplication on 2 integers with the same width and scale. SCALE
604 /// SCALE parameter must be a constant integer. A scale of zero is
637 /// RESULT = [US]DIVFIX(LHS, RHS, SCALE) - Perform fixed point division on
638 /// 2 integers with the same width and scale. SCALE represents the scale
639 /// of both operands as fixed point numbers. This SCALE parameter must be a