Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for hardware (0.23 sec)

  1. src/syscall/zerrors_linux_mips.go

    	163:  "key has been revoked",
    	164:  "key was rejected by service",
    	165:  "owner died",
    	166:  "state not recoverable",
    	167:  "operation not possible due to RF-kill",
    	168:  "memory page has hardware error",
    	1133: "disk quota exceeded",
    }
    
    // Signal table
    var signals = [...]string{
    	1:  "hangup",
    	2:  "interrupt",
    	3:  "quit",
    	4:  "illegal instruction",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 69.2K bytes
    - Viewed (0)
  2. src/syscall/zerrors_linux_mips64.go

    	163:  "key has been revoked",
    	164:  "key was rejected by service",
    	165:  "owner died",
    	166:  "state not recoverable",
    	167:  "operation not possible due to RF-kill",
    	168:  "memory page has hardware error",
    	1133: "disk quota exceeded",
    }
    
    // Signal table
    var signals = [...]string{
    	1:  "hangup",
    	2:  "interrupt",
    	3:  "quit",
    	4:  "illegal instruction",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 68.5K bytes
    - Viewed (0)
  3. src/syscall/zerrors_linux_mips64le.go

    	163:  "key has been revoked",
    	164:  "key was rejected by service",
    	165:  "owner died",
    	166:  "state not recoverable",
    	167:  "operation not possible due to RF-kill",
    	168:  "memory page has hardware error",
    	1133: "disk quota exceeded",
    }
    
    // Signal table
    var signals = [...]string{
    	1:  "hangup",
    	2:  "interrupt",
    	3:  "quit",
    	4:  "illegal instruction",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 68.5K bytes
    - Viewed (0)
  4. src/syscall/zerrors_linux_mipsle.go

    	163:  "key has been revoked",
    	164:  "key was rejected by service",
    	165:  "owner died",
    	166:  "state not recoverable",
    	167:  "operation not possible due to RF-kill",
    	168:  "memory page has hardware error",
    	1133: "disk quota exceeded",
    }
    
    // Signal table
    var signals = [...]string{
    	1:  "hangup",
    	2:  "interrupt",
    	3:  "quit",
    	4:  "illegal instruction",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 69.2K bytes
    - Viewed (0)
  5. src/syscall/zerrors_linux_loong64.go

    	128: "key has been revoked",
    	129: "key was rejected by service",
    	130: "owner died",
    	131: "state not recoverable",
    	132: "operation not possible due to RF-kill",
    	133: "memory page has hardware error",
    }
    
    // Signal table
    var signals = [...]string{
    	1:  "hangup",
    	2:  "interrupt",
    	3:  "quit",
    	4:  "illegal instruction",
    	5:  "trace/breakpoint trap",
    	6:  "aborted",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 82.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (Cvt32Fto64F ...) => (CVTSS2SD ...)
    (Cvt64Fto32F ...) => (CVTSD2SS ...)
    
    (Round(32|64)F ...) => (Copy ...)
    
    // Floating-point min is tricky, as the hardware op isn't right for various special
    // cases (-0 and NaN). We use two hardware ops organized just right to make the
    // result come out how we want it. See https://github.com/golang/go/issues/59488#issuecomment-1553493207
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  7. src/runtime/mbitmap.go

    	aCache |= uint64(bytes[7]) << (7 * 8)
    	s.allocCache = ^aCache
    }
    
    // nextFreeIndex returns the index of the next free object in s at
    // or after s.freeindex.
    // There are hardware instructions that can be used to make this
    // faster if profiling warrants it.
    func (s *mspan) nextFreeIndex() uint16 {
    	sfreeindex := s.freeindex
    	snelems := s.nelems
    	if sfreeindex == snelems {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ppc64/asm.go

    	}
    	su.SetUint32(target.Arch, offset, newinsn)
    }
    
    // Rewrite the instruction at offset into a hardware nop instruction. Also, verify the
    // existing instruction under mask matches the check value.
    func rewritetonop(target *ld.Target, ldr *loader.Loader, su *loader.SymbolBuilder, offset int64, mask, check uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  9. src/runtime/asm_amd64.s

    	// runtime detection of CPU manufacturer.
    	MFENCE
    	LFENCE
    	RDTSC
    	JMP done
    
    // func memhash(p unsafe.Pointer, h, s uintptr) uintptr
    // hash function using AES hardware instructions
    TEXT runtime·memhash<ABIInternal>(SB),NOSPLIT,$0-32
    	// AX = ptr to data
    	// BX = seed
    	// CX = size
    	CMPB	runtime·useAeshash(SB), $0
    	JEQ	noaes
    	JMP	aeshashbody<>(SB)
    noaes:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/regalloc.go

    					}
    				}
    				b.Values = append(b.Values, v)
    				s.advanceUses(v)
    				continue
    			}
    			if v.Op == OpGetG && s.f.Config.hasGReg {
    				// use hardware g register
    				if s.regs[s.GReg].v != nil {
    					s.freeReg(s.GReg) // kick out the old value
    				}
    				s.assignReg(s.GReg, v, v)
    				b.Values = append(b.Values, v)
    				s.advanceUses(v)
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top