Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 131 for lstm (2.02 sec)

  1. src/cmd/internal/obj/x86/seh.go

    	b.off += 4
    }
    
    func (b *sehbuf) writecode(op, value uint8) {
    	b.write8(value<<4 | op)
    }
    
    // populateSeh generates the SEH unwind information for s.
    func populateSeh(ctxt *obj.Link, s *obj.LSym) (sehsym *obj.LSym) {
    	if s.NoFrame() {
    		return
    	}
    
    	// This implementation expects the following function prologue layout:
    	// - Stack split code (optional)
    	// - PUSHQ	BP
    	// - MOVQ	SP,	BP
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/nowb.go

    //
    // This should be done as late as possible during compilation to
    // capture precise call graphs. The target of the call is an LSym
    // because that's all we know after we start SSA.
    //
    // This can be called concurrently for different from Nodes.
    func (c *nowritebarrierrecChecker) recordCall(fn *ir.Func, to *obj.LSym, pos src.XPos) {
    	// We record this information on the *Func so this is concurrent-safe.
    	if fn.NWBRCalls == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/inl.go

    	Pos      src.XPos // position of the inlined call
    	Func     *LSym    // function that was inlined
    	Name     string   // bare name of the function (w/o package prefix)
    	ParentPC int32    // PC of instruction just before inlined body. Only valid in local trees.
    }
    
    // Add adds a new call to the tree, returning its index.
    func (tree *InlTree) Add(parent int, pos src.XPos, func_ *LSym, name string) int {
    	r := len(tree.nodes)
    	call := InlinedCall{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 22:47:15 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. cmd/tier-last-day-stats.go

    	for i := range tierInfos {
    		lst, ok := l[tierInfos[i].Name]
    		if !ok {
    			continue
    		}
    		for hr, st := range lst.Bins {
    			tierInfos[i].DailyStats.Bins[hr] = madmin.TierStats{
    				TotalSize:   st.TotalSize,
    				NumVersions: st.NumVersions,
    				NumObjects:  st.NumObjects,
    			}
    		}
    		tierInfos[i].DailyStats.UpdatedAt = lst.UpdatedAt
    	}
    	return tierInfos
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 19 22:54:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/liveness/plive.go

    	}
    
    	nbitmap := 1
    	if fn.Type().NumResults() > 0 {
    		nbitmap = 2
    	}
    	lsym := base.Ctxt.Lookup(fn.LSym.Name + ".args_stackmap")
    	lsym.Set(obj.AttrLinkname, true) // allow args_stackmap referenced from assembly
    	off := objw.Uint32(lsym, 0, uint32(nbitmap))
    	off = objw.Uint32(lsym, off, uint32(bv.N))
    	off = objw.BitVec(lsym, off, bv)
    
    	if fn.Type().NumResults() > 0 {
    		for _, p := range abiInfo.OutParams() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/dra/claiminfo.go

    }
    
    // annotationsAsList returns container annotations as a single list.
    func (info *ClaimInfo) annotationsAsList() []kubecontainer.Annotation {
    	var lst []kubecontainer.Annotation
    	for _, v := range info.annotations {
    		lst = append(lst, v...)
    	}
    	return lst
    }
    
    // cdiDevicesAsList returns a list of CDIDevices from the provided claim info.
    func (info *ClaimInfo) cdiDevicesAsList() []kubecontainer.CDIDevice {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ir/func.go

    	// scope's parent is stored at Parents[i-1].
    	Parents []ScopeID
    
    	// Marks records scope boundary changes.
    	Marks []Mark
    
    	FieldTrack map[*obj.LSym]struct{}
    	DebugInfo  interface{}
    	LSym       *obj.LSym // Linker object in this function's native ABI (Func.ABI)
    
    	Inl *Inline
    
    	// RangeParent, if non-nil, is the first non-range body function containing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. internal/store/queuestore_test.go

    	// Delete all
    	for _, key := range names {
    		err := store.Del(key)
    		if err != nil {
    			t.Fatal(err)
    		}
    	}
    	// Re-list
    	lst, err := store.List()
    	if len(lst) > 0 || err != nil {
    		t.Fatalf("Expected List() to return empty list and no error, got %v err: %v", lst, err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 04 17:52:24 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/expr.go

    }
    
    func makeTypeAssertDescriptor(target *types.Type, canFail bool) *obj.LSym {
    	// When converting from an interface to a non-empty interface. Needs a runtime call.
    	// Allocate an internal/abi.TypeAssert descriptor for that call.
    	lsym := types.LocalPkg.Lookup(fmt.Sprintf(".typeAssert.%d", typeAssertGen)).LinksymABI(obj.ABI0)
    	typeAssertGen++
    	c := rttype.NewCursor(lsym, 0, rttype.TypeAssert)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/textflag.go

    	// disabling 'recover' or appear in tracebacks by default.
    	WRAPPER = 32
    
    	// This function uses its incoming context register.
    	NEEDCTXT = 64
    
    	// When passed to objw.Global, causes Local to be set to true on the LSym it creates.
    	LOCAL = 128
    
    	// Allocate a word of thread local storage and store the offset from the
    	// thread local base to the thread local storage in this variable.
    	TLSBSS = 256
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 20:25:30 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top