Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for hardware (0.2 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    )
    
    const (
    	// R bit option in prefixed load/store/add D-form operations
    	PFX_R_ABS   = 0 // Offset is absolute
    	PFX_R_PCREL = 1 // Offset is relative to PC, RA should be 0
    )
    
    const (
    	// The preferred hardware nop instruction.
    	NOP = 0x60000000
    )
    
    type Optab struct {
    	as    obj.As // Opcode
    	a1    uint8  // p.From argument (obj.Addr). p is of type obj.Prog.
    	a2    uint8  // p.Reg argument (int16 Register)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    	EM_RX            Machine = 173 /* Renesas RX family */
    	EM_METAG         Machine = 174 /* Imagination Technologies META processor architecture */
    	EM_MCST_ELBRUS   Machine = 175 /* MCST Elbrus general purpose hardware architecture */
    	EM_ECOG16        Machine = 176 /* Cyan Technology eCOG16 family */
    	EM_CR16          Machine = 177 /* National Semiconductor CompactRISC CR16 16-bit microprocessor */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (AndB ...) => (AND ...)
    (OrB  ...) => (OR ...)
    (EqB  x y) => (XOR (MOVDconst [1]) (XOR <typ.Bool> x y))
    (NeqB ...) => (XOR ...)
    (Not    x) => (XOR (MOVDconst [1]) x)
    
    // shifts
    // 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,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //	GOARM64
    //		For GOARCH=arm64, the ARM64 architecture for which to compile.
    //		Valid values are v8.0 (default), v8.{1-9}, v9.{0-5}.
    //		The value can be followed by an option specifying extensions implemented by target hardware.
    //		Valid options are ,lse and ,crypto.
    //		Note that some extensions are enabled by default starting from a certain GOARM64 version;
    //		for example, lse is enabled by default starting from v8.1.
    //	GO386
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    //
    // Design doc at https://golang.org/s/go11sched.
    
    // Worker thread parking/unparking.
    // We need to balance between keeping enough running worker threads to utilize
    // available hardware parallelism and parking excessive running worker threads
    // to conserve CPU resources and power. This is not simple for two reasons:
    // (1) scheduler state is intentionally distributed (in particular, per-P work
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. pkg/apis/batch/validation/validation_test.go

    		`Africa/Conakry`,
    		`Africa/Dakar`,
    		`Africa/Dar_es_Salaam`,
    		`Africa/Djibouti`,
    		`Africa/Douala`,
    		`Africa/El_Aaiun`,
    		`Africa/Freetown`,
    		`Africa/Gaborone`,
    		`Africa/Harare`,
    		`Africa/Johannesburg`,
    		`Africa/Juba`,
    		`Africa/Kampala`,
    		`Africa/Khartoum`,
    		`Africa/Kigali`,
    		`Africa/Kinshasa`,
    		`Africa/Lagos`,
    		`Africa/Libreville`,
    		`Africa/Lome`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
Back to top