Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 536 for adir (0.04 sec)

  1. src/runtime/race_s390x.s

    	MOVD	$__tsan_write_pc(SB), R1
    	LMG	addr+0(FP), R3, R5
    	JMP	racecalladdr<>(SB)
    
    // func runtime·racereadrange(addr, size uintptr)
    // Called from instrumented code.
    TEXT	runtime·racereadrange(SB), NOSPLIT, $0-16
    	// void __tsan_read_range(ThreadState *thr, void *addr, uintptr size, void *pc);
    	MOVD	$__tsan_read_range(SB), R1
    	LMG	addr+0(FP), R3, R4
    	MOVD	R14, R5
    	JMP	racecalladdr<>(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/syscall/syscall_aix.go

    }
    
    func PtracePeekText(pid int, addr uintptr, out []byte) (count int, err error) {
    	return ptracePeek(pid, addr, out)
    }
    
    func PtracePeekData(pid int, addr uintptr, out []byte) (count int, err error) {
    	return ptracePeek(pid, addr, out)
    }
    
    func ptracePoke(pid int, addr uintptr, data []byte) (count int, err error) {
    	n := 0
    	for len(data) > 0 {
    		bsize := len(data)
    		if bsize > 1024 {
    			bsize = 1024
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. src/runtime/race_ppc64le.s

    // R4 = TODO: What's this supposed to be?
    // R5 = caller pc
    // R6 = addr of incoming arg list
    // R8 contains addr of target function.
    TEXT	racecallatomic<>(SB), NOSPLIT, $0-0
    	// Trigger SIGSEGV early if address passed to atomic function is bad.
    	MOVD	(R6), R7	// 1st arg is addr
    	MOVB	(R7), R9	// segv here if addr is bad
    	// Check that addr is within [arenastart, arenaend) or within [racedatastart, racedataend).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. src/runtime/sys_openbsd2.go

    	KeepAlive(addr) // Just for consistency. Hopefully addr is not a Go address.
    	return args.ret1, args.ret2
    }
    func mmap_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func munmap(addr unsafe.Pointer, n uintptr) {
    	libcCall(unsafe.Pointer(abi.FuncPCABI0(munmap_trampoline)), unsafe.Pointer(&addr))
    	KeepAlive(addr) // Just for consistency. Hopefully addr is not a Go address.
    }
    func munmap_trampoline()
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. src/runtime/mbitmap.go

    			}
    		}
    		if want {
    			var addr uintptr
    			tp, addr = tp.next(x + span.elemsize)
    			if addr == 0 {
    				println("runtime: found bad iterator")
    			}
    			if addr != x+i {
    				print("runtime: addr=", hex(addr), " x+i=", hex(x+i), "\n")
    				bad = true
    			}
    		}
    	}
    	if !bad {
    		var addr uintptr
    		tp, addr = tp.next(x + span.elemsize)
    		if addr == 0 {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  6. src/runtime/cgo/gcc_stack_unix.c

    	pthread_attr_getstack(&attr, &addr, &size); // low address
    #elif defined(__illumos__)
    	pthread_attr_get_np(pthread_self(), &attr);
    	pthread_attr_getstack(&attr, &addr, &size); // low address
    #else
    	// We don't know how to get the current stacks, so assume they are the
    	// same as the default stack bounds.
    	pthread_attr_getstacksize(&attr, &size);
    	addr = __builtin_frame_address(0) + 4096 - size;
    #endif
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 03:44:11 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. src/net/net_windows_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    		for _, addr := range addrs {
    			switch addr := addr.(type) {
    			case *IPNet:
    				if addr.IP.To4() != nil {
    					have = append(have, addr.String())
    				}
    				if addr.IP.To16() != nil && addr.IP.To4() == nil {
    					// netsh does not output netmask for ipv6, so ignore ipv6 mask
    					have = append(have, addr.IP.String())
    				}
    			case *IPAddr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. src/runtime/race_arm64.s

    // R9 = addr of target function
    TEXT	racecallatomic<>(SB), NOSPLIT, $0
    	// Set up these registers
    	// R0 = *ThreadState
    	// R1 = caller pc
    	// R2 = pc
    	// R3 = addr of incoming arg list
    
    	// Trigger SIGSEGV early.
    	MOVD	40(RSP), R3	// 1st arg is addr. after two times BL, get it at 40(RSP)
    	MOVB	(R3), R13	// segv here if addr is bad
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/sysvshm_unix.go

    package unix
    
    import "unsafe"
    
    // SysvShmAttach attaches the Sysv shared memory segment associated with the
    // shared memory identifier id.
    func SysvShmAttach(id int, addr uintptr, flag int) ([]byte, error) {
    	addr, errno := shmat(id, addr, flag)
    	if errno != nil {
    		return nil, errno
    	}
    
    	// Retrieve the size of the shared memory to enable slice creation
    	var info SysvShmDesc
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. src/cmd/pprof/pprof.go

    			out = append(out, &driver.Sym{
    				Name:  []string{s.Name},
    				File:  f.name,
    				Start: s.Addr,
    				End:   s.Addr + uint64(s.Size) - 1,
    			})
    		}
    	}
    	return out, nil
    }
    
    func (f *file) Close() error {
    	f.file.Close()
    	return nil
    }
    
    // newUI will be set in readlineui.go in some platforms
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top