Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 77 for dodata (0.15 sec)

  1. src/cmd/link/internal/sym/symkind.go

    var AbiSymKindToSymKind = [...]SymKind{
    	objabi.Sxxx:                    Sxxx,
    	objabi.STEXT:                   STEXT,
    	objabi.SRODATA:                 SRODATA,
    	objabi.SNOPTRDATA:              SNOPTRDATA,
    	objabi.SDATA:                   SDATA,
    	objabi.SBSS:                    SBSS,
    	objabi.SNOPTRBSS:               SNOPTRBSS,
    	objabi.STLSBSS:                 STLSBSS,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. test/fixedbugs/issue15747.go

    	if err != nil {
    		return err
    	}
    	return nil
    }
    
    //go:noinline
    func f2(d []byte, n int) (odata, res []byte, e interface{}) { // ERROR "live at entry to f2: d$"
    	if n > len(d) {
    		return d, nil, &T{M: "hello"} // ERROR "live at call to newobject: d"
    	}
    	res = d[:n]
    	odata = d[n:]
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. src/math/atanh_s390x.s

    DATA ·atanhtab2076<> + 96(SB)/8, $0.187681358930914206E-01
    DATA ·atanhtab2076<> + 104(SB)/8, $0.269985148668178992E-01
    DATA ·atanhtab2076<> + 112(SB)/8, $0.364186619761331328E-01
    DATA ·atanhtab2076<> + 120(SB)/8, $0.469505379381388441E-01
    GLOBL ·atanhtab2076<> + 0(SB), RODATA, $128
    
    // Table of +/- .5
    DATA ·atanhtabh2075<> + 0(SB)/8, $0.5
    DATA ·atanhtabh2075<> + 8(SB)/8, $-.5
    GLOBL ·atanhtabh2075<> + 0(SB), RODATA, $16
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/pcrelative_test.go

    	for _, reg := range []string{"Y0", "Y8", "Z0", "Z8", "Z16", "Z24"} {
    		asm := fmt.Sprintf(asmData, reg)
    		objout := objdumpOutput(t, "pcrelative", asm)
    		data := bytes.Split(objout, []byte("\n"))
    		for idx := len(data) - 1; idx >= 0; idx-- {
    			// check that RET wasn't overwritten.
    			if bytes.Contains(data[idx], []byte("RET")) {
    				if testing.Short() {
    					break LOOP
    				}
    				continue LOOP
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 23:16:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/sys/cpu/cpu_openbsd_arm64.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    TEXT libc_sysctl_trampoline<>(SB),NOSPLIT,$0-0
    	JMP	libc_sysctl(SB)
    
    GLOBL	·libc_sysctl_trampoline_addr(SB), RODATA, $8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 376 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cover_build_cmdline_pkgs.txt

    # Collect a coverage profile from running 'cmd/nm' on the object.
    mkdir $WORK/covdata
    env GOCOVERDIR=$WORK/covdata
    exec $WORK/nm.exe tiny.o
    
    # Restore previous GOCOVERDIR setting
    env GOCOVERDIR=$SAVEGOCOVERDIR
    
    # Check to make sure we instrumented just the main package, not
    # any dependencies.
    go tool covdata pkglist -i=$WORK/covdata
    stdout cmd/nm
    ! stdout cmd/internal/goobj pkglist.txt
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:17 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cover_main_import_path.txt

    go build -cover -o $WORK/prog.exe .
    
    # Save off old GOCOVERDIR setting
    env SAVEGOCOVERDIR=$GOCOVERDIR
    
    mkdir $WORK/covdata
    env GOCOVERDIR=$WORK/covdata
    exec $WORK/prog.exe
    
    # Restore previous GOCOVERDIR setting
    env GOCOVERDIR=$SAVEGOCOVERDIR
    
    # Report percent lines covered.
    go tool covdata percent -i=$WORK/covdata
    stdout '\s*mainwithtest\s+coverage:'
    ! stdout 'main\s+coverage:'
    
    # Go test -cover should behave the same way.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:17 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/reflect/export_test.go

    		nptrs := ft.PtrBytes / goarch.PtrSize
    		gcdata := ft.GcSlice(0, (nptrs+7)/8)
    		for i := uintptr(0); i < nptrs; i++ {
    			gc = append(gc, gcdata[i/8]>>(i%8)&1)
    		}
    	}
    	return
    }
    
    func TypeLinks() []string {
    	var r []string
    	sections, offset := typelinks()
    	for i, offs := range offset {
    		rodata := sections[i]
    		for _, off := range offs {
    			typ := (*rtype)(resolveTypeOff(rodata, off))
    			r = append(r, typ.String())
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/cover.go

    	"internal/coverage"
    	"io"
    	"os"
    	"path/filepath"
    )
    
    // CovData invokes "go tool covdata" with the specified arguments
    // as part of the execution of action 'a'.
    func (b *Builder) CovData(a *Action, cmdargs ...any) ([]byte, error) {
    	cmdline := str.StringList(cmdargs...)
    	args := append([]string{}, cfg.BuildToolexec...)
    	args = append(args, base.Tool("covdata"))
    	args = append(args, cmdline...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. src/runtime/textflag.h

    // pick one of the duplicates to use.
    #define DUPOK	2
    // Don't insert stack check preamble.
    #define NOSPLIT	4
    // Put this data in a read-only section.
    #define RODATA	8
    // This data contains no pointers.
    #define NOPTR	16
    // This is a wrapper function and should not count as disabling 'recover'.
    #define WRAPPER 32
    // This function uses its incoming context register.
    #define NEEDCTXT 64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 17:28:41 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top