Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for mies (0.19 sec)

  1. api/go1.1.txt

    pkg debug/elf, const EM_H8_500 = 49
    pkg debug/elf, const EM_IA_64 = 50
    pkg debug/elf, const EM_M32 = 1
    pkg debug/elf, const EM_ME16 = 59
    pkg debug/elf, const EM_MIPS = 8
    pkg debug/elf, const EM_MIPS_RS3_LE = 10
    pkg debug/elf, const EM_MIPS_RS4_BE = 10
    pkg debug/elf, const EM_MIPS_X = 51
    pkg debug/elf, const EM_MMA = 54
    pkg debug/elf, const EM_NCPU = 56
    pkg debug/elf, const EM_NDR1 = 57
    pkg debug/elf, const EM_NONE = 0
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/endtoend_test.go

    	testErrors(t, "amd64", "amd64error")
    }
    
    func TestAMD64DynLinkErrors(t *testing.T) {
    	testErrors(t, "amd64", "amd64dynlinkerror", "dynlink")
    }
    
    func TestMIPSEndToEnd(t *testing.T) {
    	testEndToEnd(t, "mips", "mips")
    	testEndToEnd(t, "mips64", "mips64")
    }
    
    func TestLOONG64Encoder(t *testing.T) {
    	testEndToEnd(t, "loong64", "loong64enc1")
    	testEndToEnd(t, "loong64", "loong64enc2")
    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)
  3. api/go1.17.txt

    pkg database/sql, type NullInt16 struct
    pkg database/sql, type NullInt16 struct, Int16 int16
    pkg database/sql, type NullInt16 struct, Valid bool
    pkg debug/elf, const SHT_MIPS_ABIFLAGS = 1879048234
    pkg debug/elf, const SHT_MIPS_ABIFLAGS SectionType
    pkg encoding/csv, method (*Reader) FieldPos(int) (int, int)
    pkg go/build, type Context struct, ToolTags []string
    pkg go/parser, const SkipObjectResolution = 64
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 18K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/asm.go

    				reg, success := ppc64.ConstantToCRbit(c)
    				if !success {
    					p.errorf("invalid CR bit register number %d", c)
    				}
    				prog.Reg = reg
    			}
    			break
    		}
    		if p.arch.Family == sys.MIPS || p.arch.Family == sys.MIPS64 || p.arch.Family == sys.RISCV64 {
    			// 3-operand jumps.
    			// First two must be registers
    			target = &a[2]
    			prog.From = a[0]
    			prog.Reg = p.getRegister(prog, op, &a[1])
    			break
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 25.3K bytes
    - Viewed (0)
  5. api/go1.2.txt

    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
    pkg syscall (freebsd-386-cgo), const RTM_OLDADD ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  6. src/cmd/asm/internal/arch/arch.go

    	// Note that there is no list of names as there is for x86.
    	for i := mips.REG_R0; i <= mips.REG_R31; i++ {
    		register[obj.Rconv(i)] = int16(i)
    	}
    
    	for i := mips.REG_F0; i <= mips.REG_F31; i++ {
    		register[obj.Rconv(i)] = int16(i)
    	}
    	for i := mips.REG_M0; i <= mips.REG_M31; i++ {
    		register[obj.Rconv(i)] = int16(i)
    	}
    	for i := mips.REG_FCR0; i <= mips.REG_FCR31; i++ {
    		register[obj.Rconv(i)] = int16(i)
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Mar 21 06:51:28 GMT 2023
    - 21.3K bytes
    - Viewed (0)
  7. doc/asm.html

    <ul>
    
    <li>
    <code>(R5)(R6*1)</code>: The location at <code>R5</code> plus <code>R6</code>.
    It is a scaled mode as on the x86, but the only scale allowed is <code>1</code>.
    </li>
    
    </ul>
    
    <h3 id="mips">MIPS, MIPS64</h3>
    
    <p>
    General purpose registers are named <code>R0</code> through <code>R31</code>,
    floating point registers are <code>F0</code> through <code>F31</code>.
    </p>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  8. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const RTM_LOSING = 5 #53466
    pkg syscall (freebsd-riscv64), const RTM_LOSING ideal-int #53466
    pkg syscall (freebsd-riscv64), const RTM_MISS = 7 #53466
    pkg syscall (freebsd-riscv64), const RTM_MISS ideal-int #53466
    pkg syscall (freebsd-riscv64), const RTM_NEWADDR = 12 #53466
    pkg syscall (freebsd-riscv64), const RTM_NEWADDR ideal-int #53466
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/issue18146.go

    		t.Skip("skipping in short mode")
    	}
    
    	if runtime.GOOS == "darwin" || runtime.GOOS == "ios" {
    		t.Skipf("skipping flaky test on %s; see golang.org/issue/18202", runtime.GOOS)
    	}
    
    	if runtime.GOARCH == "mips" || runtime.GOARCH == "mips64" {
    		t.Skipf("skipping on %s", runtime.GOARCH)
    	}
    
    	attempts := 1000
    	threads := 4
    
    	// Restrict the number of attempts based on RLIMIT_NPROC.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Sep 05 23:35:32 GMT 2023
    - 2.8K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/operand_test.go

    }
    
    func TestPPC64OperandParser(t *testing.T) {
    	parser := newParser("ppc64")
    	testOperandParser(t, parser, ppc64OperandTests)
    }
    
    func TestMIPSOperandParser(t *testing.T) {
    	parser := newParser("mips")
    	testOperandParser(t, parser, mipsOperandTests)
    }
    
    func TestMIPS64OperandParser(t *testing.T) {
    	parser := newParser("mips64")
    	testOperandParser(t, parser, mips64OperandTests)
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 18:31:05 GMT 2023
    - 23.9K bytes
    - Viewed (0)
Back to top