Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 694 for Atack (0.04 sec)

  1. src/crypto/cipher/cfb.go

    func NewCFBDecrypter(block Block, iv []byte) Stream {
    	return newCFB(block, iv, true)
    }
    
    func newCFB(block Block, iv []byte, decrypt bool) Stream {
    	blockSize := block.BlockSize()
    	if len(iv) != blockSize {
    		// stack trace will indicate whether it was de or encryption
    		panic("cipher.newCFB: IV length must equal block size")
    	}
    	x := &cfb{
    		b:       block,
    		out:     make([]byte, blockSize),
    		next:    make([]byte, blockSize),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/runtime/sys_libc.go

    package runtime
    
    import "unsafe"
    
    // Call fn with arg as its argument. Return what fn returns.
    // fn is the raw pc value of the entry point of the desired function.
    // Switches to the system stack, if not already there.
    // Preserves the calling point as the location where a profiler traceback will begin.
    //
    //go:nosplit
    func libcCall(fn, arg unsafe.Pointer) int32 {
    	// Leave caller's PC/SP/G around for traceback.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  3. src/runtime/defs_plan9_amd64.go

    	fs uint16
    	gs uint16
    
    	_type uint64
    	error uint64 /* error code (or zero) */
    	ip    uint64 /* pc */
    	cs    uint64 /* old context */
    	flags uint64 /* old flags */
    	sp    uint64 /* sp */
    	ss    uint64 /* old stack segment */
    }
    
    type sigctxt struct {
    	u *ureg
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) pc() uintptr { return uintptr(c.u.ip) }
    
    func (c *sigctxt) sp() uintptr { return uintptr(c.u.sp) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 22:12:04 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  4. src/runtime/internal/sys/nih.go

    package sys
    
    // NOTE: keep in sync with cmd/compile/internal/types.CalcSize
    // to make the compiler recognize this as an intrinsic type.
    type nih struct{}
    
    // NotInHeap is a type must never be allocated from the GC'd heap or on the stack,
    // and is called not-in-heap.
    //
    // Other types can embed NotInHeap to make it not-in-heap. Specifically, pointers
    // to these types must always fail the `runtime.inheap` check. The type may be used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 18:24:50 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  5. src/runtime/os_linux.go

    // Version of newosproc that doesn't require a valid G.
    //
    //go:nosplit
    func newosproc0(stacksize uintptr, fn unsafe.Pointer) {
    	stack := sysAlloc(stacksize, &memstats.stacks_sys)
    	if stack == nil {
    		writeErrStr(failallocatestack)
    		exit(1)
    	}
    	ret := clone(cloneFlags, unsafe.Pointer(uintptr(stack)+stacksize), nil, nil, fn)
    	if ret < 0 {
    		writeErrStr(failthreadcreate)
    		exit(1)
    	}
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  6. src/runtime/trace/annotation.go

    func Logf(ctx context.Context, category, format string, args ...any) {
    	if IsEnabled() {
    		// Ideally this should be just Log, but that will
    		// add one more frame in the stack trace.
    		id := fromContext(ctx).id
    		userLog(id, category, fmt.Sprintf(format, args...))
    	}
    }
    
    const (
    	regionStartCode = uint64(0)
    	regionEndCode   = uint64(1)
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. src/runtime/testdata/testprogcgo/threadpprof.go

    		fmt.Fprintln(os.Stderr, err)
    		os.Exit(2)
    	}
    
    	// This goroutine may receive a profiling signal while creating the C-owned
    	// thread. If it does, the SetCgoTraceback handler will make the leaf end of
    	// the stack look almost (but not exactly) like the stacks the test case is
    	// trying to find. Attach a profiler label so the test can filter out those
    	// confusing samples.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 22:59:31 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/a.out.go

    	REGCTXT = REG_R26 // environment for closures
    	REGTMP  = REG_R27 // reserved for liblink
    	REGG    = REG_R28 // G
    	REGFP   = REG_R29 // frame pointer
    	REGLINK = REG_R30
    
    	// ARM64 uses R31 as both stack pointer and zero register,
    	// depending on the instruction. To differentiate RSP from ZR,
    	// we use a different numeric value for REGZERO and REGSP.
    	REGZERO = REG_R31
    	REGSP   = REG_RSP
    
    	FREGRET = REG_F0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	{11, "SIGSEGV", "segmentation fault"},
    	{12, "SIGUSR2", "user defined signal 2"},
    	{13, "SIGPIPE", "broken pipe"},
    	{14, "SIGALRM", "alarm clock"},
    	{15, "SIGTERM", "terminated"},
    	{16, "SIGSTKFLT", "stack fault"},
    	{17, "SIGCHLD", "child exited"},
    	{18, "SIGCONT", "continued"},
    	{19, "SIGSTOP", "stopped (signal)"},
    	{20, "SIGTSTP", "stopped"},
    	{21, "SIGTTIN", "stopped (tty input)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/obj6.go

    		}
    
    		// Mark the stack bound check and morestack call async nonpreemptible.
    		// If we get preempted here, when resumed the preemption request is
    		// cleared, but we'll still call morestack, which will double the stack
    		// unnecessarily. See issue #35470.
    		p = ctxt.StartUnsafePoint(p, newprog)
    	} else if framesize <= abi.StackBig {
    		// large stack: SP-framesize <= stackguard-StackSmall
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
Back to top