Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 60 for r6 (0.03 sec)

  1. src/crypto/sha256/sha256block_ppc64x.s

    // }
    //
    // H0 = a + H0
    // H1 = b + H1
    // H2 = c + H2
    // H3 = d + H3
    // H4 = e + H4
    // H5 = f + H5
    // H6 = g + H6
    // H7 = h + H7
    
    #define CTX	R3
    #define INP	R4
    #define END	R5
    #define TBL	R6 // Pointer into kcon table
    #define LEN	R9
    #define TEMP	R12
    
    #define TBL_STRT	R7 // Pointer to start of kcon table.
    
    #define R_x000	R0
    #define R_x010	R8
    #define R_x020	R10
    #define R_x030	R11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. src/crypto/sha512/sha512block_ppc64x.s

    // }
    //
    // H0 = a + H0
    // H1 = b + H1
    // H2 = c + H2
    // H3 = d + H3
    // H4 = e + H4
    // H5 = f + H5
    // H6 = g + H6
    // H7 = h + H7
    
    #define CTX	R3
    #define INP	R4
    #define END	R5
    #define TBL	R6
    #define CNT	R8
    #define LEN	R9
    #define TEMP	R12
    
    #define TBL_STRT R7 // Pointer to start of kcon table.
    
    #define R_x000	R0
    #define R_x010	R10
    #define R_x020	R25
    #define R_x030	R26
    #define R_x040	R14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    // so that regmask stays within int64
    // Be careful when hand coding regmasks.
    var regNamesARM64 = []string{
    	"R0",
    	"R1",
    	"R2",
    	"R3",
    	"R4",
    	"R5",
    	"R6",
    	"R7",
    	"R8",
    	"R9",
    	"R10",
    	"R11",
    	"R12",
    	"R13",
    	"R14",
    	"R15",
    	"R16",
    	"R17",
    	"R18", // platform register, not used
    	"R19",
    	"R20",
    	"R21",
    	"R22",
    	"R23",
    	"R24",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  4. src/encoding/gob/type.go

    	tInterface = bootstrapType("interface", (*any)(nil))
    	// Reserve some Ids for compatible expansion
    	tReserved7 = bootstrapType("_reserved1", (*struct{ r7 int })(nil))
    	tReserved6 = bootstrapType("_reserved1", (*struct{ r6 int })(nil))
    	tReserved5 = bootstrapType("_reserved1", (*struct{ r5 int })(nil))
    	tReserved4 = bootstrapType("_reserved1", (*struct{ r4 int })(nil))
    	tReserved3 = bootstrapType("_reserved1", (*struct{ r3 int })(nil))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/p256_asm_s390x.s

    // ---------------------------------------
    //  func p256Sqr(res, in *p256Element, n int)
    #define res_ptr R1
    #define x_ptr   R2
    #define y_ptr   R3
    #define CPOOL   R4
    #define COUNT   R5
    #define N       R6
    
    // Parameters
    #define X0    V0
    #define X1    V1
    #define T0    V4
    #define T1    V5
    
    // Constants
    #define P0    V30
    #define P1    V31
    TEXT ·p256Sqr(SB), NOSPLIT, $0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. src/crypto/aes/gcm_arm64.s

    TEXT ·gcmAesEnc(SB),NOSPLIT,$0
    #define pTbl R0
    #define dstPtr R1
    #define ctrPtr R2
    #define srcPtr R3
    #define ks R4
    #define tPtr R5
    #define srcPtrLen R6
    #define aluCTR R7
    #define aluTMP R8
    #define aluK R9
    #define NR R10
    #define H0 R11
    #define H1 R12
    #define curK R13
    #define pTblSave R14
    
    #define aesrndx8(K) \
    	AESE	K.B16, B0.B16    \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/api_test.go

    		{`package r5; var _ func(int, string) = g[int]; func g[P, Q any](P, Q) {}`, `g`, `func[P, Q any](P, Q)`}, // go.dev/issues/60212
    		{`package r6; var _ func(int, string) = g[int]; func g[P, Q any](P, Q) {}`, `g[int]`, `func(int, string)`},
    
    		{`package s1; func _() { f(g) }; func f(func(int)) {}; func g[P any](P) {}`, `g`, `func(int)`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  8. src/go/types/api_test.go

    		{`package r5; var _ func(int, string) = g[int]; func g[P, Q any](P, Q) {}`, `g`, `func[P, Q any](P, Q)`}, // go.dev/issues/60212
    		{`package r6; var _ func(int, string) = g[int]; func g[P, Q any](P, Q) {}`, `g[int]`, `func(int, string)`},
    
    		{`package s1; func _() { f(g) }; func f(func(int)) {}; func g[P any](P) {}`, `g`, `func(int)`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    }
    
    type R0 struct {
    	*R1
    	*R2
    	*R3
    	*R4
    }
    
    type R1 struct {
    	*R5
    	*R6
    	*R7
    	*R8
    }
    
    type R2 R1
    type R3 R1
    type R4 R1
    
    type R5 struct {
    	*R9
    	*R10
    	*R11
    	*R12
    }
    
    type R6 R5
    type R7 R5
    type R8 R5
    
    type R9 struct {
    	*R13
    	*R14
    	*R15
    	*R16
    }
    
    type R10 R9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  10. cmd/testdata/undeleteable-object.tgz

    i¥MTimeÓ É Ñ©XȧMetaSys ¼x-minio-internal-inline-dataÄ true§MetaUsr‚¤etagÙ 929f74acf4e3cc5de554¬content-type¸application/octet-stream¡v έ½á¨ ¤nullćgú§ ºf &+ —uª²:-„"“L®Ç p-ÃÞ W,l¦uóÇÿR»®Xi½¥Ï'ï Ø¥ ÊØôVè yËô7s… 4¸¿ V( ñHëð(È0Hºçë ï»xý ñ{ šV§Æ FËÔ )lä ;r6]ÛòU k‹”‹ƒN†¸ã£§ÕPf™àoLË multisitea/data/disterasure/xl11/.minio.sys/buckets/bucket/.usage-cache.bin.bkp/xl.meta XL2 Æ } Ä$•Ä Ó É žÕô Ä ö / Å Qƒ¤Type ¥V2ObjÞ ¢IDÄ ¤DDirÄ emJ½¥ºI œú\¨U¯ ¦EcAlgo £EcM £EcN §EcBSizeÒ §EcIndex ¦EcDistœ ¨CSumAlgo ¨PartNums‘...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 00:31:12 UTC 2024
    - 8.7M bytes
    - Viewed (0)
Back to top