Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 494 for addsym (0.24 sec)

  1. src/debug/macho/testdata/gcc-amd64-darwin-exec-with-bad-dysym.base64

    Roland Shoemaker <******@****.***> 1634241721 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 15:55:26 UTC 2021
    - 11.1K bytes
    - Viewed (0)
  2. test/codegen/memops.go

    	c := float64(7)
    	// amd64: `ADDSD\t8\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*8\), X[0-9]+`
    	c += a[i+1]
    	// amd64: `SUBSD\t16\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*8\), X[0-9]+`
    	c -= a[i+2]
    	// amd64: `MULSD\t24\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*8\), X[0-9]+`
    	c *= a[i+3]
    	// amd64: `DIVSD\t32\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*8\), X[0-9]+`
    	c /= a[i+4]
    
    	d := float32(8)
    	// amd64: `ADDSS\t4\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*4\), X[0-9]+`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testerrors/badsym_test.go

    	cBadObj := filepath.Join(godir, "cbad.o")
    	rewrite(cObj, cBadObj)
    
    	goSourceBadObject := strings.ReplaceAll(goSource, "TMPDIR", godir)
    	makeFile(godir, "go.go", goSourceBadObject)
    
    	makeFile(godir, "go.mod", "module badsym")
    
    	// Try to build our little package.
    	cmd := exec.Command("go", "build", "-ldflags=-v")
    	cmd.Dir = godir
    	output, err := cmd.CombinedOutput()
    
    	// The build should fail, but we want it to fail because we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:31 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. src/time/format_rfc3339.go

    		if !ok || !((s[0] == '-' || s[0] == '+') && s[3] == ':') {
    			return Time{}, false
    		}
    		zoneOffset := (hr*60 + mm) * 60
    		if s[0] == '-' {
    			zoneOffset *= -1
    		}
    		t.addSec(-int64(zoneOffset))
    
    		// Use local zone with the given offset if possible.
    		if _, offset, _, _, _ := local.lookup(t.unixSec()); offset == zoneOffset {
    			t.setLoc(local)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 19:59:26 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy_handler.go

    	http.Error(w, err.Error(), http.StatusServiceUnavailable)
    }
    
    // Adds a storageversion object to SVMap
    func (h *peerProxyHandler) addSV(obj interface{}) {
    	sv, ok := obj.(*v1alpha1.StorageVersion)
    	if !ok {
    		klog.Errorf("Invalid StorageVersion provided to addSV()")
    		return
    	}
    	h.updateSVMap(nil, sv)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. src/go/internal/gccgoimporter/testdata/issue29198.gox

     func (t <esc:0x1> <type 28>) .time.setMono (m <type -4>);
     func (t <esc:0x1> <type 12>) Year () <type -11>;
     func (t <esc:0x1> <type 12>) IsZero () <type -15>;
     func (t <esc:0x1> <type 28>) .time.addSec (d <type -4>);
     func (t <esc:0x1> <type 12>) Weekday () <type 38 "time.Weekday" <type -11>
     func (d <type 38>) String () <type -16>;
    >;
     func (t <esc:0x1> <type 12>) String () <type -16>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 12 23:01:16 UTC 2018
    - 6.4K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	ADD R25<<54, R17, R16                      // 30da198b
    	ADDSW R12.SXTX<<1, R29, R7                 // a7e72c2b
    	ADDS R24.UXTX<<4, R25, R21                 // 357338ab
    	ADDSW $(3525<<12), R3, R11                 // ADDSW $14438400, R3, R11          // 6b147731
    	ADDS $(3525<<12), R3, R11                  // ADDS $14438400, R3, R11           // 6b1477b1
    	ADDSW R7->22, R14, R13                     // cd59872b
    	ADDS R14>>7, ZR, R4                        // e41f4eab
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 01:11:41 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/doc.go

    Extended registers are written as <Rm>{.<extend>{<<<amount>}}.
    <extend> can be UXTB, UXTH, UXTW, UXTX, SXTB, SXTH, SXTW or SXTX.
    
    Examples:
    
    	ADDS R19.UXTB<<4, R9, R26     <=>    adds x26, x9, w19, uxtb #4
    	ADDSW R14.SXTX, R14, R6       <=>    adds w6, w14, w14, sxtx
    
    Memory references: [<Xn|SP>{,#0}] is written as (Rn|RSP), a base register and an immediate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/nilcheck.go

    				ptrs = append(ptrs, v.Args[1])
    			}
    
    			for _, ptr := range ptrs {
    				// Check to make sure the offset is small.
    				switch opcodeTable[v.Op].auxType {
    				case auxSym:
    					if v.Aux != nil {
    						continue
    					}
    				case auxSymOff:
    					if v.Aux != nil || v.AuxInt < 0 || v.AuxInt >= minZeroPage {
    						continue
    					}
    				case auxSymValAndOff:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. pkg/log/config.go

    		} else {
    			enc = zapcore.NewConsoleEncoder(encCfg)
    			useJSON.Store(false)
    		}
    	}
    
    	var rotaterSink zapcore.WriteSyncer
    	if options.RotateOutputPath != "" {
    		rotaterSink = zapcore.AddSync(&lumberjack.Logger{
    			Filename:   options.RotateOutputPath,
    			MaxSize:    options.RotationMaxSize,
    			MaxBackups: options.RotationMaxBackups,
    			MaxAge:     options.RotationMaxAge,
    		})
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top