Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 138 for dodata (0.14 sec)

  1. test/fixedbugs/issue15609.dir/call_386.s

    #include "textflag.h"
    
    DATA ·pointer(SB)/4, $·target(SB)
    GLOBL ·pointer(SB),RODATA,$4
    
    TEXT ·jump(SB),NOSPLIT,$4
            CALL *·pointer(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 09 19:50:09 UTC 2016
    - 157 bytes
    - Viewed (0)
  2. test/fixedbugs/issue15609.dir/call_amd64.s

    #include "textflag.h"
    
    DATA ·pointer(SB)/8, $·target(SB)
    GLOBL ·pointer(SB),RODATA,$8
    
    TEXT ·jump(SB),NOSPLIT,$8
            CALL *·pointer(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 09 19:50:09 UTC 2016
    - 157 bytes
    - Viewed (0)
  3. test/abi/idata.go

    David Chase <******@****.***> 1617630442 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 05 20:11:08 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/hash/crc32/crc32_amd64.s

    	RET
    
    // CRC32 polynomial data
    //
    // These constants are lifted from the
    // Linux kernel, since they avoid the costly
    // PSHUFB 16 byte reversal proposed in the
    // original Intel paper.
    DATA r2r1<>+0(SB)/8, $0x154442bd4
    DATA r2r1<>+8(SB)/8, $0x1c6e41596
    DATA r4r3<>+0(SB)/8, $0x1751997d0
    DATA r4r3<>+8(SB)/8, $0x0ccaa009e
    DATA rupoly<>+0(SB)/8, $0x1db710641
    DATA rupoly<>+8(SB)/8, $0x1f7011641
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 01 21:52:00 UTC 2018
    - 5.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pkg/test/loadbalancersim/timeseries/instance.go

    	ts.times = append(ts.times, oTimes...)
    }
    
    func (ts *Instance) Data() Data {
    	ts.mutex.Lock()
    	defer ts.mutex.Unlock()
    	return ts.data.Copy()
    }
    
    func (ts *Instance) Series() (Data, []time.Time) {
    	ts.mutex.Lock()
    	defer ts.mutex.Unlock()
    	return ts.data.Copy(), ts.times.copy()
    }
    
    func (ts *Instance) SeriesAsDurationSinceEpoch(epoch time.Time) (Data, []time.Duration) {
    	ts.mutex.Lock()
    	defer ts.mutex.Unlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 18:19:25 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top