Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,754 for Appendp (0.15 sec)

  1. src/cmd/internal/obj/ppc64/obj9.go

    		p.To.Offset = 0
    		p.To.Sym = nil
    		p1 := obj.Appendp(p, c.newprog)
    		p1.As = AADD
    		p1.From.Type = obj.TYPE_CONST
    		p1.From.Offset = offset
    		p1.To.Type = obj.TYPE_REG
    		p1.To.Reg = REG_R12
    		p2 := obj.Appendp(p1, c.newprog)
    		p2.As = AMOVD
    		p2.From.Type = obj.TYPE_REG
    		p2.From.Reg = REG_R12
    		p2.To.Type = obj.TYPE_REG
    		p2.To.Reg = REG_LR
    		p3 := obj.Appendp(p2, c.newprog)
    		p3.As = obj.ACALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/riscv/obj.go

    		prologue = ctxt.StartUnsafePoint(prologue, newprog)
    
    		// Actually save LR.
    		prologue = obj.Appendp(prologue, newprog)
    		prologue.As = AMOV
    		prologue.From = obj.Addr{Type: obj.TYPE_REG, Reg: REG_LR}
    		prologue.To = obj.Addr{Type: obj.TYPE_MEM, Reg: REG_SP, Offset: -stacksize}
    
    		// Insert stack adjustment.
    		prologue = obj.Appendp(prologue, newprog)
    		prologue.As = AADDI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/link.go

    // just before the body of the inlined function.
    func (fi *FuncInfo) AddInlMark(p *Prog, id int32) {
    	fi.InlMarks = append(fi.InlMarks, InlMark{p: p, id: id})
    }
    
    // AddSpill appends a spill record to the list for FuncInfo fi
    func (fi *FuncInfo) AddSpill(s RegSpill) {
    	fi.spills = append(fi.spills, s)
    }
    
    // Record the type symbol for an auto variable so that the linker
    // an emit DWARF type information for the type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/builder/testdata/append-single.golden

    Leonardo Sarra <******@****.***> 1718116194 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 49 bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/builder/testdata/append-multi.golden

    Leonardo Sarra <******@****.***> 1718116194 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 112 bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/builder/testdata/append-single-restore.golden

    Leonardo Sarra <******@****.***> 1718116194 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 46 bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/builder/testdata/append-multi-restore.golden

    Leonardo Sarra <******@****.***> 1718116194 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 91 bytes
    - Viewed (0)
  8. src/strconv/itoa.go

    }
    
    // AppendInt appends the string form of the integer i,
    // as generated by [FormatInt], to dst and returns the extended buffer.
    func AppendInt(dst []byte, i int64, base int) []byte {
    	if fastSmalls && 0 <= i && i < nSmalls && base == 10 {
    		return append(dst, small(int(i))...)
    	}
    	dst, _ = formatBits(dst, uint64(i), base, i < 0, true)
    	return dst
    }
    
    // AppendUint appends the string form of the unsigned integer i,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/builder/testdata/append-insert-multi.golden

    Leonardo Sarra <******@****.***> 1718116194 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 115 bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/builder/testdata/append-insert-multi-restore.golden

    Leonardo Sarra <******@****.***> 1718116194 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 94 bytes
    - Viewed (0)
Back to top