Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for moving (0.36 sec)

  1. src/cmd/asm/internal/asm/parse.go

    		return 0
    	}
    	r, ok := p.registerReference(name)
    	if !ok {
    		return 0
    	}
    	reg := r - p.arch.Register["R0"]
    	if reg < 0 {
    		// Could happen for an architecture having other registers prefixed by R
    		p.errorf("expected g or R0 through R15; found %s", name)
    		return 0
    	}
    	return uint16(reg)
    }
    
    // Note: There are two changes in the expression handling here
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  2. doc/go_spec.html

    	<code>A</code> must have all methods of <code>C</code>, if any,
    	and corresponding method types must unify exactly.
    </li>
    </ul>
    
    <p>
    When solving type equations from type constraints,
    solving one equation may infer additional type arguments,
    which in turn may enable solving other equations that depend
    on those type arguments.
    Type inference repeats type unification as long as new type
    arguments are inferred.
    </p>
    
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  3. doc/next/6-stdlib/99-minor/os/33357.md

    The [Stat] function now sets the [ModeSocket] bit for
    files that are Unix sockets on Windows. These files are identified
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Apr 12 20:57:18 GMT 2024
    - 178 bytes
    - Viewed (0)
  4. src/cmd/asm/doc.go

    	-trimpath prefix
    		Remove prefix from recorded source file paths.
    	-v
    		Print debug output.
    
    Input language:
    
    The assembler uses mostly the same syntax for all architectures,
    the main variation having to do with addressing modes. Input is
    run through a simplified C preprocessor that implements #include,
    #define, #ifdef/endif, but not #if or ##.
    
    For more information, see https://golang.org/doc/asm.
    */
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 22 20:46:45 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/endtoend_test.go

    			}
    			buf = append(buf, c)
    		}
    
    		f := strings.Fields(string(buf))
    
    		// Turn relative (PC) into absolute (PC) automatically,
    		// so that most branch instructions don't need comments
    		// giving the absolute form.
    		if len(f) > 0 && strings.Contains(printed, "(PC)") {
    			index := len(f) - 1
    			suf := "(PC)"
    			for !strings.HasSuffix(f[index], suf) {
    				index--
    				suf = "(PC),"
    			}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Dec 07 18:42:59 GMT 2023
    - 11.6K bytes
    - Viewed (0)
  6. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), const RTM_IFANNOUNCE ideal-int
    pkg syscall (freebsd-386-cgo), const RTM_IFINFO ideal-int
    pkg syscall (freebsd-386-cgo), const RTM_LOCK ideal-int
    pkg syscall (freebsd-386-cgo), const RTM_LOSING ideal-int
    pkg syscall (freebsd-386-cgo), const RTM_MISS ideal-int
    pkg syscall (freebsd-386-cgo), const RTM_NEWADDR ideal-int
    pkg syscall (freebsd-386-cgo), const RTM_NEWMADDR ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top