Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 543 for mood (0.09 sec)

  1. src/runtime/rt0_linux_ppc64le.s

    	BR	done
    
    nocgo:
    	MOVD	$0x800000, R12                     // stacksize = 8192KB
    	MOVD	R12, 8+FIXED_FRAME(R1)
    	MOVD	$_rt0_ppc64le_linux_lib_go(SB), R12
    	MOVD	R12, 16+FIXED_FRAME(R1)
    	MOVD	$runtime·newosproc0(SB),R12
    	MOVD	R12, CTR
    	BL	(CTR)
    
    done:
    	// Restore and return to ELFv2 caller.
    	UNSTACK_AND_RESTORE_GO_TO_HOST_ABI(16)
    	RET
    
    TEXT _rt0_ppc64le_linux_lib_go(SB),NOSPLIT,$0
    	MOVD	_rt0_ppc64le_linux_lib_argc<>(SB), R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/crypto/aes/gcm_ppc64x.s

    	MOVD len+56(FP), LEN
    
    	MOVD   $0x10, R8
    	MOVD   $0x20, R9
    	MOVD   $0x30, R10
    	LXVD2X (XIP)(R0), VXL // load Xi
    
    	LXVD2X   (HTBL)(R8), VHL    // load pre-computed table
    	MOVD     $0x40, R8
    	LXVD2X   (HTBL)(R9), VH
    	MOVD     $0x50, R9
    	LXVD2X   (HTBL)(R10), VHH
    	MOVD     $0x60, R10
    	LXVD2X   (HTBL)(R0), VXC2
    #ifdef GOARCH_ppc64le
    	LVSL     (R0)(R0), LEMASK
    	VSPLTISB $0x07, T0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. src/crypto/subtle/xor_ppc64x.s

    //go:build (ppc64 || ppc64le) && !purego
    
    #include "textflag.h"
    
    // func xorBytes(dst, a, b *byte, n int)
    TEXT ·xorBytes(SB), NOSPLIT, $0
    	MOVD	dst+0(FP), R3	// R3 = dst
    	MOVD	a+8(FP), R4	// R4 = a
    	MOVD	b+16(FP), R5	// R5 = b
    	MOVD	n+24(FP), R6	// R6 = n
    
    	CMPU	R6, $64, CR7	// Check if n ≥ 64 bytes
    	MOVD	R0, R8		// R8 = index
    	CMPU	R6, $8, CR6	// Check if 8 ≤ n < 64 bytes
    	BLE	CR6, small	// <= 8
    	BLT	CR7, xor32	// Case for 32 ≤ n < 64 bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/p256_asm_arm64.s

    TEXT ·p256Sqr(SB),NOSPLIT,$0
    	MOVD	res+0(FP), res_ptr
    	MOVD	in+8(FP), a_ptr
    	MOVD	n+16(FP), b_ptr
    
    	MOVD	p256const0<>(SB), const0
    	MOVD	p256const1<>(SB), const1
    
    	LDP	0*16(a_ptr), (x0, x1)
    	LDP	1*16(a_ptr), (x2, x3)
    
    sqrLoop:
    	SUB	$1, b_ptr
    	CALL	p256SqrInternal<>(SB)
    	MOVD	y0, x0
    	MOVD	y1, x1
    	MOVD	y2, x2
    	MOVD	y3, x3
    	CBNZ	b_ptr, sqrLoop
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.s

    #include "textflag.h"
    
    // func kimd(function code, chain *[200]byte, src []byte)
    TEXT ·kimd(SB), NOFRAME|NOSPLIT, $0-40
    	MOVD function+0(FP), R0
    	MOVD chain+8(FP), R1
    	LMG  src+16(FP), R2, R3 // R2=base, R3=len
    
    continue:
    	WORD $0xB93E0002 // KIMD --, R2
    	BVS  continue    // continue if interrupted
    	MOVD $0, R0      // reset R0 for pre-go1.8 compilers
    	RET
    
    // func klmd(function code, chain *[200]byte, dst, src []byte)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 957 bytes
    - Viewed (0)
  6. src/hash/crc32/crc32_ppc64le.s

    	MOVWZ	ctab+4(FP), R14   // crc poly id
    	MOVD    p+8(FP), R4
    	MOVD    p_len+16(FP), R5 // p len
    
    	// R3 = incoming crc
    	// R14 = constant table identifier
    	// R5 = address of bytes
    	// R6 = length of bytes
    
    	// defines for index loads
    
    	MOVD	$16,off16
    	MOVD	$32,off32
    	MOVD	$48,off48
    	MOVD	$64,off64
    	MOVD	$80,off80
    	MOVD	$96,off96
    	MOVD	$112,off112
    	MOVD	$0,R15
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/crypto/aes/asm_ppc64x.s

    // For keyp of 12, V6, V9-V20 hold the expanded key.
    // For keyp of 14, V6, V7-V20 hold the expanded key.
    #define LOAD_KEY(Rkeyp) \
    	MOVD	$16, R12 \
    	MOVD	$32, R14 \
    	MOVD	$48, R15 \
    	MOVD	$64, R16 \
    	MOVD	$80, R17 \
    	MOVD	$96, R18 \
    	MOVD	$112, R19 \
    	MOVD	$128, R20 \
    	MOVD	$144, R21 \
    	LXVD2X	(R0+Rkeyp), V6 \
    	ADD	$16, Rkeyp \
    	BEQ	CR1, L_start10 \
    	BEQ	CR2, L_start12 \
    	LXVD2X	(R0+Rkeyp), V7 \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. test/codegen/memcombine.go

    	// s390x:`MOVDBR\s\(.*\),`
    	// arm64:`MOVD\s\(R[0-9]+\),`,-`MOV[BHW]`
    	// ppc64le:`MOVD\s`,-`MOV[BHW]Z`
    	// ppc64:`MOVDBR\s`,-`MOV[BHW]Z`
    	return binary.LittleEndian.Uint64(b)
    }
    
    func load_le64_idx(b []byte, idx int) uint64 {
    	// amd64:`MOVQ\s\(.*\)\(.*\*1\),`,-`MOV[BWL]\t[^$]`,-`OR`
    	// s390x:`MOVDBR\s\(.*\)\(.*\*1\),`
    	// arm64:`MOVD\s\(R[0-9]+\)\(R[0-9]+\),`,-`MOV[BHW]`
    	// ppc64le:`MOVD\s`,-`MOV[BHW]Z\s`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  9. src/internal/bytealg/equal_arm64.s

    	CMP	R0, R6
    	BNE	chunk16_loop
    	AND	$0xf, R2, R2
    	CBZ	R2, equal
    tail:
    	// special compare of tail with length < 16
    	TBZ	$3, R2, lt_8
    	MOVD	(R0), R4
    	MOVD	(R1), R5
    	EOR	R4, R5
    	CBNZ	R5, not_equal
    	SUB	$8, R2, R6	// offset of the last 8 bytes
    	MOVD	(R0)(R6), R4
    	MOVD	(R1)(R6), R5
    	EOR	R4, R5
    	CBNZ	R5, not_equal
    	B	equal
    lt_8:
    	TBZ	$2, R2, lt_4
    	MOVWU	(R0), R4
    	MOVWU	(R1), R5
    	EOR	R4, R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 16:07:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. platforms/jvm/war/src/integTest/groovy/org/gradle/api/tasks/bundling/WarTaskIntegrationTest.groovy

            createDir('bad') {
                file('web.xml')
            }
            file('good.xml')
    
            file('bad/web.xml').text = 'bad'
            file('good.xml').text = 'good'
    
            buildFile << '''
            task war(type: War) {
                webInf {
                    from 'bad'
                }
                webXml = file('good.xml')
                destinationDirectory = buildDir
                archiveFileName = 'test.war'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top