Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for mmx7 (0.03 sec)

  1. src/runtime/asm_386.s

    notintel:
    
    	// Load EAX=1 cpuid flags
    	MOVL	$1, AX
    	CPUID
    	MOVL	CX, DI // Move to global variable clobbers CX when generating PIC
    	MOVL	AX, runtime·processorVersionInfo(SB)
    
    	// Check for MMX support
    	TESTL	$(1<<23), DX // MMX
    	JZ	bad_proc
    
    nocpuinfo:
    	// if there is an _cgo_init, call it to let it
    	// initialize and to set up GS.  if not,
    	// we set up GS ourselves.
    	MOVL	_cgo_init(SB), AX
    	TESTL	AX, AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  2. src/sync/atomic/doc.go

    //
    // [the Go memory model]: https://go.dev/ref/mem
    package atomic
    
    import (
    	"unsafe"
    )
    
    // BUG(rsc): On 386, the 64-bit functions use instructions unavailable before the Pentium MMX.
    //
    // On non-Linux ARM, the 64-bit functions use instructions unavailable before the ARMv6k core.
    //
    // On ARM, 386, and 32-bit MIPS, it is the caller's responsibility to arrange
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasFPA      bool // Floating point arithmetic support
    	HasVFP      bool // Vector floating point support
    	HasEDSP     bool // DSP Extensions support
    	HasJAVA     bool // Java instruction set
    	HasIWMMXT   bool // Intel Wireless MMX technology support
    	HasCRUNCH   bool // MaverickCrunch context switching and handling
    	HasTHUMBEE  bool // Thumb EE instruction set
    	HasNEON     bool // NEON instruction set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top