Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 131 for lstm (0.65 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		{name: "CALLtail", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "CallOff", clobberFlags: true, call: true, tailCall: true},                                // tail call static function aux.(*obj.LSym).  arg0=mem, auxint=argsize, returns mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
  2. src/cmd/internal/dwarf/dwarf.go

    type InlCall struct {
    	// index into ctx.InlTree describing the call inlined here
    	InlIndex int
    
    	// Position of the inlined call site.
    	CallPos src.Pos
    
    	// Dwarf abstract subroutine symbol (really *obj.LSym).
    	AbsFunSym Sym
    
    	// Indices of child inlines within Calls array above.
    	Children []int
    
    	// entries in this list are PAUTO's created by the inliner to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/s390x.s

    	VST	V31, (R15)              // e7f0f000080e
    	VESLB	$5, V14                 // e7ee00050030
    	VESRAG	$0, V15, V16            // e70f0000383a
    	VLM	(R15), V8, V23          // e787f0000436
    	VSTM	V8, V23, (R15)          // e787f000043e
    	VONE	V1                      // e710ffff0044
    	VZERO	V16                     // e70000000844
    	VGBM	$52428, V31             // e7f0cccc0844
    	VREPIB	$255, V4                // e74000ff0045
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  4. src/crypto/ecdsa/ecdsa_test.go

    	if !ok {
    		panic("bad hex")
    	}
    	return r
    }
    
    func TestVectors(t *testing.T) {
    	// This test runs the full set of NIST test vectors from
    	// https://csrc.nist.gov/groups/STM/cavp/documents/dss/186-3ecdsatestvectors.zip
    	//
    	// The SigVer.rsp file has been edited to remove test vectors for
    	// unsupported algorithms and has been compressed.
    
    	if testing.Short() {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:58 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. src/runtime/alg.go

    	}
    }
    
    // nilinterhash should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/anacrolix/stm
    //   - github.com/aristanetworks/goarista
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname nilinterhash
    func nilinterhash(p unsafe.Pointer, h uintptr) uintptr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/wasm/ssa.go

    			getValue64(s, v.Args[0])
    			i64Const(s, v.AuxInt)
    			s.Prog(wasm.AI64Add)
    			break
    		}
    		p := s.Prog(wasm.AGet)
    		p.From.Type = obj.TYPE_ADDR
    		switch v.Aux.(type) {
    		case *obj.LSym:
    			ssagen.AddAux(&p.From, v)
    		case *ir.Name:
    			p.From.Reg = v.Args[0].Reg()
    			ssagen.AddAux(&p.From, v)
    		default:
    			panic("wasm: bad LoweredAddr")
    		}
    
    	case ssa.OpWasmLoweredConvert:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/convert.go

    			// to interface type. Avoid assertion failure in
    			// MarkTypeUsedInInterface, because we've marked used types
    			// separately anyway.
    		} else {
    			reflectdata.MarkTypeUsedInInterface(fromType, ir.CurFunc.LSym)
    		}
    	}
    
    	if !fromType.IsInterface() {
    		typeWord := reflectdata.ConvIfaceTypeWord(base.Pos, n)
    		l := ir.NewBinaryExpr(base.Pos, ir.OMAKEFACE, typeWord, dataWord(n, init))
    		l.SetType(toType)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 17:28:22 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		{name: "CALLtail", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "CallOff", clobberFlags: true, call: true, tailCall: true},                                // tail call static function aux.(*obj.LSym).  arg0=mem, auxint=argsize, returns mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/obj.go

    	default:
    		panic("InvertBranch: not a branch")
    	}
    }
    
    // containsCall reports whether the symbol contains a CALL (or equivalent)
    // instruction. Must be called after progedit.
    func containsCall(sym *obj.LSym) bool {
    	// CALLs are CALL or JAL(R) with link register LR.
    	for p := sym.Func().Text; p != nil; p = p.Link {
    		switch p.As {
    		case obj.ACALL, obj.ADUFFZERO, obj.ADUFFCOPY:
    			return true
    		case AJAL, AJALR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "CALLtail", argLength: -1, reg: regInfo{clobbers: callerSave}, aux: "CallOff", clobberFlags: true, call: true, tailCall: true},                         // tail call static function aux.(*obj.LSym).  arg0=mem, auxint=argsize, returns mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
Back to top