Home
last modified time | relevance | path

Searched refs:MUL (Results 1 – 10 of 10) sorted by relevance

/titanic_44/usr/src/lib/libbc/libc/gen/common/
H A Ddrand48.c47 #define MUL(x, y, z) { long l = (long)(x) * (long)(y); \ macro
118 MUL(a[0], x[0], p); in next()
121 MUL(a[0], x[1], q); in next()
123 MUL(a[1], x[0], r); in next()
/titanic_44/usr/src/uts/common/inet/ipf/
H A Ddrand48.c70 #define MUL(x, y, z) { int32_t l = (int32_t)(x) * (int32_t)(y); \ macro
126 MUL(a[0], x[0], p); in next()
129 MUL(a[0], x[1], q); in next()
131 MUL(a[1], x[0], r); in next()
/titanic_44/usr/src/lib/libc/port/gen/
H A Ddrand48.c74 #define MUL(x, y, z) { int32_t l = (int32_t)(x) * (int32_t)(y); \ macro
134 MUL(a[0], x[0], p); in next()
137 MUL(a[0], x[1], q); in next()
139 MUL(a[1], x[0], r); in next()
/titanic_44/usr/src/cmd/awk_xpg4/
H A Dawk.y67 %token <node> ADD SUB MUL DIV REM INC DEC PRE_INC PRE_DEC
264 $$ = node(MUL, $1, $3);
H A Dawk3.c1141 case MUL: in exprreduce()
1180 asn_oper->n_type = MUL; in exprreduce()
1299 case MUL: in arithmetic()
/titanic_44/usr/src/cmd/geniconvtbl/
H A Ditm_comp.l141 "*" {return (MUL);}
H A Ditm_comp.y161 %left MUL DIV MOD
951 | MINUS expr %prec MUL
1115 | expr MUL expr
H A Dgeniconvtbl.c1604 EVAL_OP_BIN1(MUL_FOR_CSTYLE_CLEAN, MUL) /* A * B */ in eval_expr()
1605 EVAL_OP_BIN2(MUL_FOR_CSTYLE_CLEAN, MUL) /* A * B */ in eval_expr()
1606 EVAL_OP_BIN3(MUL_FOR_CSTYLE_CLEAN, MUL) /* A * B */ in eval_expr()
1607 EVAL_OP_BIN4(MUL_FOR_CSTYLE_CLEAN, MUL) /* A * B */ in eval_expr()
H A Diconv_tm.h705 ITM_EXPR_BIN(MUL), /* A * B */
/titanic_44/usr/src/common/bignum/i386/
H A Dbignum_i386_asm.s165 / the x86 32 X 32 -> 64 unsigned multiply instruction, MUL.