Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 41 for dodata (0.11 sec)

  1. src/cmd/link/link_test.go

    	MOVD	$2, R0
    	PCALIGN	$512
    	MOVD	$3, R1
    	RET
    
    GLOBL	·alignPcFnAddr(SB),RODATA,$8
    DATA	·alignPcFnAddr(SB)/8,$·alignPc(SB)
    `,
    	"loong64": `
    #include "textflag.h"
    
    TEXT	·alignPc(SB),NOSPLIT, $0-0
    	MOVV	$2, R4
    	PCALIGN	$512
    	MOVV	$3, R5
    	RET
    
    GLOBL	·alignPcFnAddr(SB),RODATA,$8
    DATA	·alignPcFnAddr(SB)/8,$·alignPc(SB)
    `,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  2. src/runtime/asm_amd64.s

    DATA masks<>+0x40(SB)/8, $0x00000000ffffffff
    DATA masks<>+0x48(SB)/8, $0x0000000000000000
    DATA masks<>+0x50(SB)/8, $0x000000ffffffffff
    DATA masks<>+0x58(SB)/8, $0x0000000000000000
    DATA masks<>+0x60(SB)/8, $0x0000ffffffffffff
    DATA masks<>+0x68(SB)/8, $0x0000000000000000
    DATA masks<>+0x70(SB)/8, $0x00ffffffffffffff
    DATA masks<>+0x78(SB)/8, $0x0000000000000000
    DATA masks<>+0x80(SB)/8, $0xffffffffffffffff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. pkg/controller/serviceaccount/tokens_controller.go

    	return true, err
    }
    
    func (e *TokensController) secretUpdateNeeded(secret *v1.Secret) (bool, bool, bool) {
    	caData := secret.Data[v1.ServiceAccountRootCAKey]
    	needsCA := len(e.rootCA) > 0 && !bytes.Equal(caData, e.rootCA)
    
    	needsNamespace := len(secret.Data[v1.ServiceAccountNamespaceKey]) == 0
    
    	tokenData := secret.Data[v1.ServiceAccountTokenKey]
    	needsToken := len(tokenData) == 0
    
    	return needsCA, needsNamespace, needsToken
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  4. pkg/proxy/util/nfacct/nfacct_linux_test.go

    	cmd   int
    	flags uint16
    
    	// data holds netlink attributes.
    	data []nl.NetlinkRequestData
    
    	// response and err are the predefined output of execution.
    	response [][]byte
    	err      error
    }
    
    // Serialize is part of request interface.
    func (fr *fakeRequest) Serialize() []byte { return nil }
    
    // AddData is part of request interface.
    func (fr *fakeRequest) AddData(data nl.NetlinkRequestData) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  5. src/hash/crc32/crc32_ppc64le.s

    	BDNZ 	short
    done:
    	NOR     R7,R7,R7        // ^crc
    	MOVW    R7,ret+40(FP)   // return crc
    	RET
    
    #ifdef BYTESWAP_DATA
    DATA ·byteswapcons+0(SB)/8,$0x0706050403020100
    DATA ·byteswapcons+8(SB)/8,$0x0f0e0d0c0b0a0908
    
    GLOBL ·byteswapcons+0(SB),RODATA,$16
    #endif
    
    TEXT ·vectorCrc32(SB), NOSPLIT|NOFRAME, $0-36
    	MOVWZ	crc+0(FP), R3   // incoming crc
    	MOVWZ	ctab+4(FP), R14   // crc poly id
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_test.cc

        CompareTensors(out1, expected_out1);
      }
    
      void CompareTensors(TF_Tensor* a, TF_Tensor* b) {
        float* a_data = static_cast<float*>(TF_TensorData(a));
        float* b_data = static_cast<float*>(TF_TensorData(b));
        EXPECT_EQ(*a_data, *b_data);
      }
    
      void AddGradients(bool grad_inputs_provided, const char* prefix,
                        TF_Output* inputs, int ninputs, TF_Output* outputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  7. src/runtime/stack.go

    				continue
    			}
    			ptrdata := obj.ptrdata()
    			gcdata := obj.gcdata()
    			var s *mspan
    			if obj.useGCProg() {
    				// See comments in mgcmark.go:scanstack
    				s = materializeGCProg(ptrdata, gcdata)
    				gcdata = (*byte)(unsafe.Pointer(s.startAddr))
    			}
    			for i := uintptr(0); i < ptrdata; i += goarch.PtrSize {
    				if *addb(gcdata, i/(8*goarch.PtrSize))>>(i/goarch.PtrSize&7)&1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  8. src/crypto/aes/asm_ppc64x.s

    #define BLK_KEY    R5
    #define BLK_ROUNDS R6
    #define BLK_IDX    R7
    
    DATA ·rcon+0x00(SB)/8, $0x0f0e0d0c0b0a0908 // Permute for vector doubleword endian swap
    DATA ·rcon+0x08(SB)/8, $0x0706050403020100
    DATA ·rcon+0x10(SB)/8, $0x0100000001000000 // RCON
    DATA ·rcon+0x18(SB)/8, $0x0100000001000000 // RCON
    DATA ·rcon+0x20(SB)/8, $0x1b0000001b000000
    DATA ·rcon+0x28(SB)/8, $0x1b0000001b000000
    DATA ·rcon+0x30(SB)/8, $0x0d0e0f0c0d0e0f0c // MASK
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. src/runtime/asm_arm64.s

    TEXT runtime·strhash<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-24
    	MOVB	runtime·useAeshash(SB), R10
    	CBZ	R10, noaes
    	LDP	(R0), (R0, R2)	// string data / length
    	B	aeshashbody<>(SB)
    noaes:
    	B	runtime·strhashFallback<ABIInternal>(SB)
    
    // R0: data
    // R1: seed data
    // R2: length
    // At return, R0 = return value
    TEXT aeshashbody<>(SB),NOSPLIT|NOFRAME,$0
    	VEOR	V30.B16, V30.B16, V30.B16
    	VMOV	R1, V30.D[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  10. src/runtime/asm_ppc64x.s

    #ifdef GOARCH_ppc64le
    	MOVD	$runtime·debugPinnerV1<ABIInternal>(SB), R31
    	MOVD	$runtime·debugCallV2<ABIInternal>(SB), R31
    #endif
    	MOVD	R0, 0(R0)
    	RET
    
    DATA	runtime·mainPC+0(SB)/8,$runtime·main<ABIInternal>(SB)
    GLOBL	runtime·mainPC(SB),RODATA,$8
    
    TEXT runtime·breakpoint(SB),NOSPLIT|NOFRAME,$0-0
    	TW	$31, R0, R0
    	RET
    
    TEXT runtime·asminit(SB),NOSPLIT|NOFRAME,$0-0
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
Back to top