Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 131 for lstm (0.07 sec)

  1. src/cmd/internal/obj/pass.go

    			break
    		}
    		return
    	}
    
    	ctxt.Diag("invalid encoding for argument %v", p)
    }
    
    func linkpatch(ctxt *Link, sym *LSym, newprog ProgAlloc) {
    	for p := sym.Func().Text; p != nil; p = p.Link {
    		checkaddr(ctxt, p, &p.From)
    		for _, v := range p.RestArgs {
    			checkaddr(ctxt, p, &v.Addr)
    		}
    		checkaddr(ctxt, p, &p.To)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/chacha20/chacha_s390x.s

    	VLM  off(src), M0, M3          \
    	PERMUTE(BSWAP, v0, v1, v2, v3) \
    	VX   v0, M0, M0                \
    	VX   v1, M1, M1                \
    	VX   v2, M2, M2                \
    	VX   v3, M3, M3                \
    	VSTM M0, M3, off(dst)
    
    #define SHUFFLE(a, b, c, d, t, u, v, w) \
    	VMRHF a, c, t \ // t = {a[0], c[0], a[1], c[1]}
    	VMRHF b, d, u \ // u = {b[0], d[0], b[1], d[1]}
    	VMRLF a, c, v \ // v = {a[2], c[2], a[3], c[3]}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm/obj5.go

    // THE SOFTWARE.
    
    package arm
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"internal/abi"
    	"internal/buildcfg"
    	"log"
    )
    
    var progedit_tlsfallback *obj.LSym
    
    func progedit(ctxt *obj.Link, p *obj.Prog, newprog obj.ProgAlloc) {
    	p.From.Class = 0
    	p.To.Class = 0
    
    	c := ctxt5{ctxt: ctxt, newprog: newprog}
    
    	// Rewrite B/BL to symbol as TYPE_BRANCH.
    	switch p.As {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/list/list.go

    	}
    	if *listReuse != "" && !*listM {
    		base.Fatalf("go list -reuse cannot be used without -m")
    	}
    	if *listReuse != "" && modload.HasModRoot() {
    		base.Fatalf("go list -reuse cannot be used inside a module")
    	}
    
    	work.BuildInit()
    	out := newTrackingWriter(os.Stdout)
    	defer out.w.Flush()
    
    	if *listFmt == "" {
    		if *listM {
    			*listFmt = "{{.String}}"
    			if *listVersions {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/wasm/asm.go

    	for _, fn := range ctxt.Textp {
    		relocs := ldr.Relocs(fn)
    		for ri := 0; ri < relocs.Count(); ri++ {
    			r := relocs.At(ri)
    			if r.Type() == objabi.R_WASMIMPORT {
    				if lsym, ok := ldr.WasmImportSym(fn); ok {
    					wi := readWasmImport(ldr, lsym)
    					hostImportMap[fn] = int64(len(hostImports))
    					hostImports = append(hostImports, &wasmFunc{
    						Module: wi.Module,
    						Name:   wi.Name,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/util.go

    // cursym: current function being assembled
    // returns number of bytes of padding needed,
    // updates minimum alignment for the function.
    func AlignmentPadding(pc int32, p *Prog, ctxt *Link, cursym *LSym) int {
    	v := AlignmentPaddingLength(pc, p, ctxt)
    	requireAlignment(p.From.Offset, ctxt, cursym)
    	return v
    }
    
    // AlignmentPaddingLength is the number of bytes to add to align code as requested.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/MIPSOps.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 24 14:43:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/loong64/obj.go

    	//     ADUFFxxx $offset
    	// becomes
    	//     MOVV runtime.duffxxx@GOT, REGTMP
    	//     ADD $offset, REGTMP
    	//     JAL REGTMP
    	if p.As == obj.ADUFFCOPY || p.As == obj.ADUFFZERO {
    		var sym *obj.LSym
    		if p.As == obj.ADUFFZERO {
    			sym = ctxt.Lookup("runtime.duffzero")
    		} else {
    			sym = ctxt.Lookup("runtime.duffcopy")
    		}
    		offset := p.To.Offset
    		p.As = AMOVV
    		p.From.Type = obj.TYPE_MEM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm64/obj7.go

    	if p.As == obj.ADUFFCOPY || p.As == obj.ADUFFZERO {
    		//     ADUFFxxx $offset
    		// becomes
    		//     MOVD runtime.duffxxx@GOT, REGTMP
    		//     ADD $offset, REGTMP
    		//     CALL REGTMP
    		var sym *obj.LSym
    		if p.As == obj.ADUFFZERO {
    			sym = c.ctxt.LookupABI("runtime.duffzero", obj.ABIInternal)
    		} else {
    			sym = c.ctxt.LookupABI("runtime.duffcopy", obj.ABIInternal)
    		}
    		offset := p.To.Offset
    		p.As = AMOVD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  10. test/typeparam/list2.go

    		l.insertValue(e.Value, &l.root)
    	}
    }
    
    // Transform runs a transform function on a list returning a new list.
    func _Transform[TElem1, TElem2 any](lst *_List[TElem1], f func(TElem1) TElem2) *_List[TElem2] {
    	ret := _New[TElem2]()
    	for p := lst.Front(); p != nil; p = p.Next() {
    		ret.PushBack(f(p.Value))
    	}
    	return ret
    }
    
    func checkListLen[T any](l *_List[T], len int) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top