Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for Iopl (0.07 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_386.go

    //sysnb	Getegid() (egid int) = SYS_GETEGID32
    //sysnb	Geteuid() (euid int) = SYS_GETEUID32
    //sysnb	Getgid() (gid int) = SYS_GETGID32
    //sysnb	Getuid() (uid int) = SYS_GETUID32
    //sys	Ioperm(from int, num int, on int) (err error)
    //sys	Iopl(level int) (err error)
    //sys	Lchown(path string, uid int, gid int) (err error) = SYS_LCHOWN32
    //sys	Lstat(path string, stat *Stat_t) (err error) = SYS_LSTAT64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go

    	return Timespec{Sec: sec, Nsec: nsec}
    }
    
    func setTimeval(sec, usec int64) Timeval {
    	return Timeval{Sec: sec, Usec: usec}
    }
    
    func Ioperm(from int, num int, on int) (err error) {
    	return ENOSYS
    }
    
    func Iopl(level int) (err error) {
    	return ENOSYS
    }
    
    func (r *PtraceRegs) PC() uint64 { return r.Psw.Addr }
    
    func (r *PtraceRegs) SetPC(pc uint64) { r.Psw.Addr = pc }
    
    func (iov *Iovec) SetLen(length int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  3. src/runtime/cgo/gcc_386.S

    	movl %esp, %ebp
    	pushl %ebx
    	pushl %esi
    	pushl %edi
    
    	movl 16(%ebp), %eax	/* g */
    	pushl %eax
    	movl 12(%ebp), %eax	/* setg_gcc */
    	call *%eax
    	popl %eax
    
    	movl 8(%ebp), %eax	/* fn */
    	call *%eax
    
    	popl %edi
    	popl %esi
    	popl %ebx
    	popl %ebp
    	ret
    
    #ifdef __ELF__
    .section .note.GNU-stack,"",@progbits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 12 03:56:58 UTC 2023
    - 959 bytes
    - Viewed (0)
  4. src/runtime/rt0_android_386.s

    #include "textflag.h"
    
    TEXT _rt0_386_android(SB),NOSPLIT,$0
    	JMP	_rt0_386(SB)
    
    TEXT _rt0_386_android_lib(SB),NOSPLIT,$0
    	PUSHL	$_rt0_386_android_argv(SB)  // argv
    	PUSHL	$1  // argc
    	CALL	_rt0_386_lib(SB)
    	POPL	AX
    	POPL	AX
    	RET
    
    DATA _rt0_386_android_argv+0x00(SB)/4,$_rt0_386_android_argv0(SB)
    DATA _rt0_386_android_argv+0x04(SB)/4,$0  // argv terminate
    DATA _rt0_386_android_argv+0x08(SB)/4,$0  // envp terminate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jan 21 04:56:36 UTC 2018
    - 822 bytes
    - Viewed (0)
  5. src/runtime/sys_windows_386.s

    	ADDL	$(12+callbackArgs__size), SP
    
    	// restore registers as required for windows callback
    	POPL	BX
    	POPL	BP
    	POPL	SI
    	POPL	DI
    
    	// remove callback parameters before return (as per Windows spec)
    	POPL	DX
    	ADDL	CX, SP
    	PUSHL	DX
    
    	CLD
    
    	RET
    
    // void tstart(M *newm);
    TEXT tstart<>(SB),NOSPLIT,$8-4
    	MOVL	newm+0(FP), CX		// m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/386enc.s

    	MOVL DX, CR0 // 0f22c2
    	MOVL DI, CR4 // 0f22e7
    	MOVL DR0, AX // 0f21c0
    	MOVL DR6, DX // 0f21f2
    	MOVL DR7, SI // 0f21fe
    	// Test other movtab entries.
    	PUSHL SS // 16
    	PUSHL FS // 0fa0
    	POPL FS  // 0fa1
    	POPL SS  // 17
    
    	RDPID AX                                // f30fc7f8
    
    	// End of tests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. src/runtime/sys_freebsd_386.s

    	MOVL	4(SP), AX // m
    	MOVL	m_g0(AX), BX
    	LEAL	m_tls(AX), BP
    	MOVL	m_id(AX), DI
    	ADDL	$7, DI
    	PUSHAL
    	PUSHL	$32
    	PUSHL	BP
    	PUSHL	DI
    	CALL	runtime·setldt(SB)
    	POPL	AX
    	POPL	AX
    	POPL	AX
    	POPAL
    	get_tls(CX)
    	MOVL	BX, g(CX)
    
    	MOVL	AX, g_m(BX)
    	CALL	runtime·stackcheck(SB)		// smashes AX
    	CALL	runtime·mstart(SB)
    
    	MOVL	0, AX			// crash (not reached)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/386.s

    TEXT foo(SB), DUPOK|NOSPLIT, $0
    
    // LTYPE1 nonrem	{ outcode(int($1), &$2); }
    	SETCC	AX
    	SETCC	foo+4(SB)
    
    // LTYPE2 rimnon	{ outcode(int($1), &$2); }
    	DIVB	AX
    	DIVB	foo+4(SB)
    	PUSHL	$foo+4(SB)
    	POPL		AX
    
    // LTYPE3 rimrem	{ outcode(int($1), &$2); }
    	SUBB	$1, AX
    	SUBB	$1, foo+4(SB)
    	SUBB	BX, AX
    	SUBB	BX, foo+4(SB)
    
    // LTYPE4 remrim	{ outcode(int($1), &$2); }
    	CMPB	AX, $1
    	CMPB	foo+4(SB), $4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 18:57:21 UTC 2019
    - 2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_device_ops.mlir

      %6 = "tf.opG"() : () -> tensor<*xf32>
      %7 = "tf.opH"() : () -> tensor<*xf32>
      %8 = "tf.opI"() : () -> tensor<*xf32>
      %9 = "tf.opJ"() : () -> tensor<*xi8>
      %10 = "tf.opK"() : () -> tensor<*xi16>
      %11 = "tf.opL"() : () -> tensor<*xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. src/syscall/asm_linux_386.s

    // func rawVforkSyscall(trap, a1, a2, a3 uintptr) (r1, err uintptr)
    TEXT ·rawVforkSyscall(SB),NOSPLIT|NOFRAME,$0-24
    	MOVL	trap+0(FP), AX	// syscall entry
    	MOVL	a1+4(FP), BX
    	MOVL	a2+8(FP), CX
    	MOVL	a3+12(FP), DX
    	POPL	SI // preserve return address
    	INVOKE_SYSCALL
    	PUSHL	SI
    	CMPL	AX, $0xfffff001
    	JLS	ok
    	MOVL	$-1, r1+16(FP)
    	NEGL	AX
    	MOVL	AX, err+20(FP)
    	RET
    ok:
    	MOVL	AX, r1+16(FP)
    	MOVL	$0, err+20(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top