Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for Change (0.12 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

    ((Add8|Or8|Xor8) right:(Rsh8Ux8  x y) left:(Lsh8x8  x z:(Sub8  (Const8  [8]) y))) && (shiftIsBounded(left) || shiftIsBounded(right)) && canRotate(config, 8) => (RotateLeft8 x z)
    
    // Rotating by y&c, with c a mask that doesn't change the bottom bits, is the same as rotating by y.
    (RotateLeft64 x (And(64|32|16|8) y (Const(64|32|16|8) [c]))) && c&63 == 63 => (RotateLeft64 x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // hardware instruction uses only the low 6 bits of the shift
    // we compare to 64 to ensure Go semantics for large shifts
    // Rules about rotates with non-const shift are based on the following rules,
    // if the following rules change, please also modify the rules based on them.
    
    // check shiftIsBounded first, if shift value is proved to be valid then we
    // can do the shift directly.
    // left shift
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    	<li>the index <code>x</code> is <i>in range</i> if <code>0 &lt;= x &lt; len(a)</code>,
    	    otherwise it is <i>out of range</i></li>
    </ul>
    
    <p>
    For <code>a</code> of <a href="#Array_types">array type</a> <code>A</code>:
    </p>
    <ul>
    	<li>a <a href="#Constants">constant</a> index must be in range</li>
    	<li>if <code>x</code> is out of range at run time,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/static/webcomponents.min.js

    rn s(this).intersectsNode(l(e))},toString:function(){return s(this).toString()}},p.prototype.createContextualFragment&&(o.prototype.createContextualFragment=function(e){return u(s(this).createContextualFragment(e))}),i(window.Range,o,document.createRange()),e.wrappers.Range=o}(window.ShadowDOMPolyfill),function(e){"use strict";function t(e){e.previousSibling_=e.previousSibling,e.nextSibling_=e.nextSibling,e.parentNode_=e.parentNode}function n(n,o,i){var a=x(n),s=x(o),c=i?x(i):null;if(r(o),t(o),i...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    	endpoints := []string{"search", "dir", "file", "change", "count", "s"}
    	for _, e := range endpoints {
    		for i := 200; i < 230; i++ {
    			p := fmt.Sprintf("/%s/%d/", e, i)
    			tests = append(tests, test{
    				path: p,
    				code: i,
    				req:  &Request{Method: "GET", Host: "localhost", URL: &url.URL{Path: p}},
    			})
    		}
    	}
    	mux := NewServeMux()
    	for _, tt := range tests {
    		mux.Handle(tt.path, serve(tt.code))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/asmz.go

    	buffer := make([]byte, 0)
    	changed := true
    	loop := 0
    	nrelocs0 := len(c.cursym.R)
    	for changed {
    		if loop > 100 {
    			c.ctxt.Diag("stuck in spanz loop")
    			break
    		}
    		changed = false
    		buffer = buffer[:0]
    		for i := range c.cursym.R[nrelocs0:] {
    			c.cursym.R[nrelocs0+i] = obj.Reloc{}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/asm6.go

    	}
    
    	// Now that we know byte offsets, we can generate jump table entries.
    	// TODO: could this live in obj instead of obj/$ARCH?
    	for _, jt := range s.Func().JumpTables {
    		for i, p := range jt.Targets {
    			// The ith jumptable entry points to the p.Pc'th
    			// byte in the function symbol s.
    			jt.Sym.WriteAddr(ctxt, int64(i)*8, 8, s, p.Pc)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    OverlayLoop:
    	for _, fs := range nonGoFileLists {
    		for _, f := range fs {
    			if _, ok := fsys.OverlayPath(mkAbs(p.Dir, f)); ok {
    				a.nonGoOverlay = make(map[string]string)
    				break OverlayLoop
    			}
    		}
    	}
    	if a.nonGoOverlay != nil {
    		for _, fs := range nonGoFileLists {
    			for i := range fs {
    				from := mkAbs(p.Dir, fs[i])
    				opath, _ := fsys.OverlayPath(from)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/asm9.go

    //	Revisions Copyright © 2000-2008 Lucent Technologies Inc. and others
    //	Portions Copyright © 2009 The Go Authors. All rights reserved.
    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/asm7.go

    // reporting an error if alignedValue is not a power of two or is out of range.
    func pcAlignPadLength(ctxt *obj.Link, pc int64, alignedValue int64) int {
    	if !((alignedValue&(alignedValue-1) == 0) && 8 <= alignedValue && alignedValue <= 2048) {
    		ctxt.Diag("alignment value of an instruction must be a power of two and in the range [8, 2048], got %d\n", alignedValue)
    	}
    	return int(-pc & (alignedValue - 1))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top