Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for LAY (0.04 sec)

  1. src/hash/fnv/fnv.go

    // Its Sum method will lay the value out in big-endian byte order.
    func New64() hash.Hash64 {
    	var s sum64 = offset64
    	return &s
    }
    
    // New64a returns a new 64-bit FNV-1a [hash.Hash].
    // Its Sum method will lay the value out in big-endian byte order.
    func New64a() hash.Hash64 {
    	var s sum64a = offset64
    	return &s
    }
    
    // New128 returns a new 128-bit FNV-1 [hash.Hash].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. src/runtime/cgo/gcc_s390x.S

     */
    .globl crosscall_s390x
    crosscall_s390x:
    	/* save r6-r15 in the register save area of the calling function */
    	stmg    %r6, %r15, 48(%r15)
    
    	/* allocate 64 bytes of stack space to save f8-f15 */
    	lay     %r15, -64(%r15)
    
    	/* save callee-saved floating point registers */
    	std     %f8, 0(%r15)
    	std     %f9, 8(%r15)
    	std     %f10, 16(%r15)
    	std     %f11, 24(%r15)
    	std     %f12, 32(%r15)
    	std     %f13, 40(%r15)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 05 16:41:48 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. src/crypto/aes/asm_s390x.s

    	MOVD	$0, R5
    	CMPBLT	R4, $8, tail
    loop:
    	MOVD	0(R2)(R5*1), R7
    	MOVD	0(R3)(R5*1), R8
    	XOR	R7, R8
    	MOVD	R8, 0(R1)(R5*1)
    	LAY	8(R5), R5
    	SUB	$8, R4
    	CMPBGE	R4, $8, loop
    tail:
    	CMPBEQ	R4, $0, done
    	MOVB	0(R2)(R5*1), R7
    	MOVB	0(R3)(R5*1), R8
    	XOR	R7, R8
    	MOVB	R8, 0(R1)(R5*1)
    	LAY	1(R5), R5
    	SUB	$1, R4
    	BR	tail
    done:
    	RET
    
    // func cryptBlocksGCM(fn code, key, dst, src, buf []byte, cnt *[16]byte)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. test/fixedbugs/issue8048.go

    		runtime.GC()
    		recover()
    	}()
    	test1f()
    }
    
    func test1f() {
    	// Because b == false, the if does not execute,
    	// so x == nil, so the println(*x) faults reading
    	// from nil. The compiler will lay out the code
    	// so that the if body occurs above the *x,
    	// so if the liveness info at the *x is used, it will
    	// find the liveness at the call to runtime.GC.
    	// It will think y is live, but y is uninitialized,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2K bytes
    - Viewed (0)
  5. src/compress/flate/dict_decoder_test.go

    			"Because it was grassy and wanted wear;\n" +
    			"Though as for that the passing there\n" +
    			"Had worn them really about the same,\n" +
    			"\n" +
    			"And both that morning equally lay\n" +
    			"In leaves no step had trodden black.\n" +
    			"Oh, I kept the first for another day!\n" +
    			"Yet knowing how way leads on to way,\n" +
    			"I doubted if I should ever come back.\n" +
    			"\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 28 10:36:01 UTC 2016
    - 4.4K bytes
    - Viewed (0)
  6. src/hash/crc32/crc32.go

    type digest struct {
    	crc uint32
    	tab *Table
    }
    
    // New creates a new [hash.Hash32] computing the CRC-32 checksum using the
    // polynomial represented by the [Table]. Its Sum method will lay the
    // value out in big-endian byte order. The returned Hash32 also
    // implements [encoding.BinaryMarshaler] and [encoding.BinaryUnmarshaler] to
    // marshal and unmarshal the internal state of the hash.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. src/hash/adler32/adler32.go

    // The low 16 bits are s1, the high 16 bits are s2.
    type digest uint32
    
    func (d *digest) Reset() { *d = 1 }
    
    // New returns a new hash.Hash32 computing the Adler-32 checksum. Its
    // Sum method will lay the value out in big-endian byte order. The
    // returned Hash32 also implements [encoding.BinaryMarshaler] and
    // [encoding.BinaryUnmarshaler] to marshal and unmarshal the internal
    // state of the hash.
    func New() hash.Hash32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/s390x/anames.go

    	"CMPBNE",
    	"CMPUBEQ",
    	"CMPUBGE",
    	"CMPUBGT",
    	"CMPUBLE",
    	"CMPUBLT",
    	"CMPUBNE",
    	"MVC",
    	"MVCIN",
    	"CLC",
    	"XC",
    	"OC",
    	"NC",
    	"EXRL",
    	"LARL",
    	"LA",
    	"LAY",
    	"LAA",
    	"LAAG",
    	"LAAL",
    	"LAALG",
    	"LAN",
    	"LANG",
    	"LAX",
    	"LAXG",
    	"LAO",
    	"LAOG",
    	"LMY",
    	"LMG",
    	"STMY",
    	"STMG",
    	"STCK",
    	"STCKC",
    	"STCKE",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. docs/vi/docs/python-types.md

    Hãy bắt đầu với một ví dụ đơn giản:
    
    ```Python
    {!../../../docs_src/python_types/tutorial001.py!}
    ```
    
    Kết quả khi gọi chương trình này:
    
    ```
    John Doe
    ```
    
    Hàm thực hiện như sau:
    
    * Lấy một `first_name` và `last_name`.
    * Chuyển đổi kí tự đầu tiên của mỗi biến sang kiểu chữ hoa với `title()`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. src/crypto/md5/md5block_s390x.s

    //go:build !purego
    
    #include "textflag.h"
    
    // func block(dig *digest, p []byte)
    TEXT ·block(SB),NOSPLIT,$16-32
    	MOVD	dig+0(FP), R1
    	MOVD	p+8(FP), R6
    	MOVD	p_len+16(FP), R5
    	AND	$-64, R5
    	LAY	(R6)(R5*1), R7
    
    	LMY	0(R1), R2, R5
    	CMPBEQ	R6, R7, end
    
    loop:
    	STMY	R2, R5, tmp-16(SP)
    
    	MOVWBR	0(R6), R8
    	MOVWZ	R5, R9
    
    #define ROUND1(a, b, c, d, index, const, shift) \
    	XOR	c, R9; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top