- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for CTR (0.9 sec)
-
src/cmd/asm/internal/asm/testdata/ppc64.s
BC $20,CR0LT,CTR // 4e800420 BC $20,CR0GT,CTR // 4e810420 BC 20,CR0LT,CTR // BC $20,CR0LT,CTR // 4e800420 BC 20,undefined_symbol,CTR // BC $20,CR0LT,CTR // 4e800420 BC 20,undefined_symbol+1,CTR // BC $20,CR0GT,CTR // 4e810420 JMP CTR // 4e800420 BR CTR // JMP CTR // 4e800420
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Nov 21 18:27:17 UTC 2024 - 51.7K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcShareEnum.java
* we must create an array of objects that do. */ final srvsvc.ShareInfoCtr1 ctr = (srvsvc.ShareInfoCtr1) this.info; final MsrpcShareInfo1[] entries = new MsrpcShareInfo1[ctr.count]; for (int i = 0; i < ctr.count; i++) { entries[i] = new MsrpcShareInfo1(ctr.array[i]); } return entries; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcShareEnum.java
* we must create an array of objects that do. */ final srvsvc.ShareInfoCtr1 ctr = (srvsvc.ShareInfoCtr1) info; final MsrpcShareInfo1[] entries = new MsrpcShareInfo1[ctr.count]; for (int i = 0; i < ctr.count; i++) { entries[i] = new MsrpcShareInfo1(ctr.array[i]); } return entries; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0) -
cmd/sftp-server.go
} // supportedCiphers lists ciphers we support but might not recommend. // https://cs.opensource.google/go/x/crypto/+/refs/tags/v0.22.0:ssh/common.go;l=28 var supportedCiphers = []string{ "aes128-ctr", "aes192-ctr", "aes256-ctr", "******@****.***", gcm256CipherID, chacha20Poly1305ID, "arcfour256", "arcfour128", "arcfour", aes128cbcID, tripledescbcID, }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 16.5K bytes - Viewed (0) -
docs/ftp/README.md
diffie-hellman-group1-sha1 ``` `--sftp=cipher-algos=...` specifies the allowed cipher algorithms. If unspecified then a sensible default is used. Valid values: ``` aes128-ctr aes192-ctr aes256-ctr ******@****.*** ******@****.*** ******@****.*** arcfour256 arcfour128 arcfour aes128-cbc 3des-cbc ```
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue May 07 06:41:25 UTC 2024 - 7.8K bytes - Viewed (0) -
src/cmd/asm/internal/asm/operand_test.go
{"(-288-3*8)(R1)", "-312(R1)"}, {"(16)(R7)", "16(R7)"}, {"(8)(g)", "8(g)"}, {"(CTR)", "(CTR)"}, {"(R0)", "(R0)"}, {"(R3)", "(R3)"}, {"(R4)", "(R4)"}, {"(R5)", "(R5)"}, {"(R5)(R6*1)", "(R5)(R6*1)"}, {"(R5+R6)", "(R5)(R6)"}, {"-1(R4)", "-1(R4)"}, {"-1(R5)", "-1(R5)"}, {"6(PC)", "6(PC)"}, {"CR7", "CR7"}, {"CTR", "CTR"}, {"VS0", "VS0"}, {"VS1", "VS1"}, {"VS2", "VS2"}, {"VS3", "VS3"},
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Aug 29 18:31:05 UTC 2023 - 23.9K bytes - Viewed (0) -
src/cmd/asm/internal/asm/asm.go
} else { p.branch(targetAddr, targetProg) } case target.Type == obj.TYPE_MEM && target.Name == obj.NAME_NONE: // JMP 4(R0) *targetAddr = *target // On the ppc64, 9a encodes BR (CTR) as BR CTR. We do the same. if p.arch.Family == sys.PPC64 && target.Offset == 0 { targetAddr.Type = obj.TYPE_REG } case target.Type == obj.TYPE_CONST: // JMP $4 *targetAddr = a[0]
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Aug 05 17:31:25 UTC 2025 - 26.2K bytes - Viewed (0) -
src/cmd/asm/internal/arch/arch.go
} for i := ppc64.REG_CR0LT; i <= ppc64.REG_CR7SO; i++ { register[obj.Rconv(i)] = int16(i) } register["CR"] = ppc64.REG_CR register["XER"] = ppc64.REG_XER register["LR"] = ppc64.REG_LR register["CTR"] = ppc64.REG_CTR register["FPSCR"] = ppc64.REG_FPSCR register["MSR"] = ppc64.REG_MSR // Pseudo-registers. register["SB"] = RSB register["FP"] = RFP register["PC"] = RPC
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Nov 07 02:20:14 UTC 2024 - 21.7K bytes - Viewed (0) -
lib/fips140/v1.0.0.zip
XORKeyStream only } func NewCTR(b *Block, iv []byte) *CTR { // Allocate the CTR here, in an easily inlineable function, so // the allocation can be done in the caller's stack frame // instead of the heap. See issue 70499. c := newCTR(b, iv) return &c } func newCTR(b *Block, iv []byte) CTR { if len(iv) != BlockSize { panic("bad IV length") } return CTR{ b: *b, ivlo: byteorder.BEUint64(iv[8:16]), ivhi: byteorder.BEUint64(iv[0:8]), offset: 0, } } func (c *CTR) XORKeyStream(dst, src []byte) { c.XORKeyStreamAt(dst,...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)