Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for umul (0.04 sec)

  1. src/cmd/internal/obj/riscv/inst.go

    		return &inst{0x33, 0x7, 0x0, 160, 0x5}
    	case AMIN:
    		return &inst{0x33, 0x4, 0x0, 160, 0x5}
    	case AMINU:
    		return &inst{0x33, 0x5, 0x0, 160, 0x5}
    	case AMRET:
    		return &inst{0x73, 0x0, 0x2, 770, 0x18}
    	case AMUL:
    		return &inst{0x33, 0x0, 0x0, 32, 0x1}
    	case AMULH:
    		return &inst{0x33, 0x1, 0x0, 32, 0x1}
    	case AMULHSU:
    		return &inst{0x33, 0x2, 0x0, 32, 0x1}
    	case AMULHU:
    		return &inst{0x33, 0x3, 0x0, 32, 0x1}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java

        }
    
        @Override
        public String toString() {
          return getKey() + "=" + getValue();
        }
      }
    
      // TODO(fry): Separate logic for consistency between emul and nonemul implementation.
      // TODO(fry): Look into Maps.KeySet and Maps.Values, which can ideally be reused here but are
      // currently only package visible.
      abstract class AbstractCacheSet<T> extends AbstractSet<T> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 27 19:19:19 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/loong64/asm.go

    		return 0x23 << 15
    	case ASUBVU, ANEGV:
    		return 0x23 << 15
    
    	case AMUL:
    		return 0x38 << 15 // mul.w
    	case AMULU:
    		return 0x38 << 15 // mul.w
    	case AMULH:
    		return 0x39 << 15 // mulh.w
    	case AMULHU:
    		return 0x3a << 15 // mulhu.w
    	case AMULV:
    		return 0x3b << 15 // mul.d
    	case AMULVU:
    		return 0x3b << 15 // mul.d
    	case AMULHV:
    		return 0x3c << 15 // mulh.d
    	case AMULHVU:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/ppc64.s

    	FSUBS F1, F2                    // ec420828
    	FSUBS F1, F2, F3                // ec620828
    	FSUBCC F1, F2, F3               // fc620829
    	FSUBSCC F1, F2, F3              // ec620829
    	FMUL F1, F2                     // fc420072
    	FMUL F1, F2, F3                 // fc620072
    	FMULCC F1, F2, F3               // fc620073
    	FMULS F1, F2                    // ec420072
    	FMULS F1, F2, F3                // ec620072
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/builtin.go

    	setwid := ir.NewAssignStmt(base.Pos, nwid, typecheck.Conv(nlen, types.Types[types.TUINTPTR]))
    	ne.Body.Append(setwid)
    	nwid = ir.NewBinaryExpr(base.Pos, ir.OMUL, nwid, ir.NewInt(base.Pos, nl.Type().Elem().Size()))
    	call := mkcall1(fn, nil, init, nto, nfrm, nwid)
    	ne.Body.Append(call)
    
    	typecheck.Stmts(l)
    	walkStmtList(l)
    	init.Append(l...)
    	return nlen
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Div16u x y) => (DIVWU (ZeroExt16to32 x) (ZeroExt16to32 y))
    (Div8 x y) => (DIVW  (SignExt8to32 x) (SignExt8to32 y))
    (Div8u x y) => (DIVWU (ZeroExt8to32 x) (ZeroExt8to32 y))
    
    (Hmul(64|64u|32|32u) ...) => (MULH(D|DU|W|WU) ...)
    
    (Mul(32|64)F ...) => ((FMULS|FMUL) ...)
    
    (Div(32|64)F ...) => ((FDIVS|FDIV) ...)
    
    // Lowering float <=> int
    (Cvt32to(32|64)F x) => ((FCFIDS|FCFID) (MTVSRD (SignExt32to64 x)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    	{ir.OMUL, types.TINT8}:    ssa.OpMul8,
    	{ir.OMUL, types.TUINT8}:   ssa.OpMul8,
    	{ir.OMUL, types.TINT16}:   ssa.OpMul16,
    	{ir.OMUL, types.TUINT16}:  ssa.OpMul16,
    	{ir.OMUL, types.TINT32}:   ssa.OpMul32,
    	{ir.OMUL, types.TUINT32}:  ssa.OpMul32,
    	{ir.OMUL, types.TINT64}:   ssa.OpMul64,
    	{ir.OMUL, types.TUINT64}:  ssa.OpMul64,
    	{ir.OMUL, types.TFLOAT32}: ssa.OpMul32F,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "MULHWU", argLength: 2, reg: gp21, asm: "MULHWU", commutative: true}, // (arg0 * arg1) >> 32, unsigned
    
    		{name: "FMUL", argLength: 2, reg: fp21, asm: "FMUL", commutative: true},   // arg0*arg1
    		{name: "FMULS", argLength: 2, reg: fp21, asm: "FMULS", commutative: true}, // arg0*arg1
    
    		{name: "FMADD", argLength: 3, reg: fp31, asm: "FMADD"},   // arg0*arg1 + arg2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  9. docs/tr/docs/alternatives.md

    !!! check "**FastAPI**'a nasıl ilham oldu?"
        Hug, APIStar'ın çeşitli kısımlarında esin kaynağı oldu ve APIStar'la birlikte en umut verici bulduğum araçlardan biriydi.
    
        **FastAPI**, Python tip belirteçlerini kullanarak parametre belirlemede ve API'ı otomatık tanımlayan bir şema üretmede de Hug'a esinlendi.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "UMULH", argLength: 2, reg: gp21, asm: "UMULH", commutative: true},                                     // (arg0 * arg1) >> 64, unsigned
    		{name: "MULL", argLength: 2, reg: gp21, asm: "SMULL", commutative: true},                                      // arg0 * arg1, signed, 32-bit mult results in 64-bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
Back to top