Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 48x48 (0.09 sec)

  1. src/crypto/aes/asm_s390x.s

    loop:
    	KM	R2, R4      // cipher message (KM)
    	BVS	loop        // branch back if interrupted
    	XOR	R0, R0
    	RET
    
    // func cryptBlocksChain(c code, iv, key, dst, src *byte, length int)
    TEXT ·cryptBlocksChain(SB),NOSPLIT,$48-48
    	LA	params-48(SP), R1
    	MOVD	iv+8(FP), R8
    	MOVD	key+16(FP), R9
    	MVC	$16, 0(R8), 0(R1)  // move iv into params
    	MVC	$32, 0(R9), 16(R1) // move key into params
    	MOVD	dst+24(FP), R2
    	MOVD	src+32(FP), R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.8.md

    * Fix service controller crash loop when Service with GCP LoadBalancer uses static IP ([#48848](https://github.com/kubernetes/kubernetes/pull/48848), [@nicksardo](https://github.com/nicksardo)) ([#48849](https://github.com/kubernetes/kubernetes/pull/48849), [@nicksardo](https://github.com/nicksardo))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
Back to top