Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for coffsets (0.1 sec)

  1. src/runtime/sys_windows_arm64.s

    // license that can be found in the LICENSE file.
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    #include "funcdata.h"
    #include "time_windows.h"
    #include "cgo/abi_arm64.h"
    
    // Offsets into Thread Environment Block (pointer in R18)
    #define TEB_error 0x68
    #define TEB_TlsSlots 0x1480
    #define TEB_ArbitraryPtr 0x28
    
    // Note: R0-R7 are args, R8 is indirect return value address,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/version.go

    	}
    	// There is no utility in versionutil to get the version without the metadata,
    	// so this needs some manual formatting.
    	// Discard offsets after a release label and keep the labels down to e.g. `alpha.0` instead of
    	// including the offset e.g. `alpha.0.206`. This is done to comply with GCR image tags.
    	pre := v.PreRelease()
    	patch := v.Patch()
    	if len(pre) > 0 {
    		if patch > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:50:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. src/runtime/sys_windows_amd64.s

    	// TODO: don't use the arbitrary pointer (see go.dev/issue/59824)
    	MOVQ	$TEB_ArbitraryPtr, CX
    	JMP	settls
    ok:
    	// Convert the TLS index at CX into
    	// an offset from TEB_TlsSlots.
    	SHLQ	$3, CX
    
    	// Save offset from TLS into tls_g.
    	ADDQ	$TEB_TlsSlots, CX
    settls:
    	MOVQ	CX, runtimeĀ·tls_g(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 07:24:08 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top