HomeSort by relevance Sort by last modified time
    Searched refs:CTR (Results 1 - 25 of 70) sorted by null

1 2 3

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/
opc-b.pl 61 $CTR = 2;
66 print ("\tbrp${w}${i} .L0, .L${CTR}\n");
69 print (".L${CTR}:\n");
70 ++$CTR;
79 print ("\tbrp${b}${w}${i} b3, .L${CTR}\n");
82 print (".L${CTR}:\n");
83 ++$CTR;
  /prebuilts/go/darwin-x86/src/runtime/
rt0_linux_ppc64.s 22 MOVD R12, CTR
23 BR (CTR)
memclr_ppc64x.s 21 MOVD R6, CTR // R6 = number of double words
30 BC 16, 0, zero8 // dec ctr, br zero8 if ctr not 0
37 MOVD R7, CTR // number of 32 byte chunks
45 BC 16, 0, zero32 // dec ctr, br zero32 if ctr not 0
48 MOVD R6, CTR // set up the CTR for doublewords
56 MOVD R5, CTR // set up to clear tail bytes
61 BC 16, 0, zerotailloop // dec ctr, br zerotailloop if ctr not
    [all...]
memmove_ppc64x.s 34 MOVD R6,CTR // R6 = number of double words
53 MOVD R8, CTR // double work count
69 MOVD R6,CTR // set up the CTR
77 MOVD R7, CTR // move tail bytes
97 MOVD R7, CTR // bytes to move
111 MOVD R6, CTR
rt0_linux_ppc64le.s 57 MOVD R12, CTR
58 BL (CTR)
66 MOVD R12, CTR
67 BL (CTR)
76 MOVD R12, CTR
77 BL (CTR)
128 MOVD R12, CTR
129 BR (CTR)
163 MOVD R12, CTR
164 BR (CTR)
    [all...]
asm_ppc64x.s 38 MOVD R12, CTR // r12 = "global function entry point"
47 BL (CTR) // may clobber R0, R3-R12
163 MOVD R12, CTR
164 BR (CTR)
188 MOVD R12, CTR
195 BL (CTR)
235 MOVD R12, CTR
236 BL (CTR)
260 MOVD R12, CTR
261 BL (CTR)
    [all...]
sys_linux_ppc64x.s 209 MOVD R12, CTR
210 BL (CTR)
239 MOVD R12, CTR
240 BL (CTR)
256 MOVD R12, CTR
257 JMP (CTR)
356 MOVD R12, CTR
357 BL (CTR)
  /prebuilts/go/linux-x86/src/runtime/
rt0_linux_ppc64.s 22 MOVD R12, CTR
23 BR (CTR)
memclr_ppc64x.s 21 MOVD R6, CTR // R6 = number of double words
30 BC 16, 0, zero8 // dec ctr, br zero8 if ctr not 0
37 MOVD R7, CTR // number of 32 byte chunks
45 BC 16, 0, zero32 // dec ctr, br zero32 if ctr not 0
48 MOVD R6, CTR // set up the CTR for doublewords
56 MOVD R5, CTR // set up to clear tail bytes
61 BC 16, 0, zerotailloop // dec ctr, br zerotailloop if ctr not
    [all...]
memmove_ppc64x.s 34 MOVD R6,CTR // R6 = number of double words
53 MOVD R8, CTR // double work count
69 MOVD R6,CTR // set up the CTR
77 MOVD R7, CTR // move tail bytes
97 MOVD R7, CTR // bytes to move
111 MOVD R6, CTR
rt0_linux_ppc64le.s 57 MOVD R12, CTR
58 BL (CTR)
66 MOVD R12, CTR
67 BL (CTR)
76 MOVD R12, CTR
77 BL (CTR)
128 MOVD R12, CTR
129 BR (CTR)
163 MOVD R12, CTR
164 BR (CTR)
    [all...]
asm_ppc64x.s 38 MOVD R12, CTR // r12 = "global function entry point"
47 BL (CTR) // may clobber R0, R3-R12
163 MOVD R12, CTR
164 BR (CTR)
188 MOVD R12, CTR
195 BL (CTR)
235 MOVD R12, CTR
236 BL (CTR)
260 MOVD R12, CTR
261 BL (CTR)
    [all...]
sys_linux_ppc64x.s 209 MOVD R12, CTR
210 BL (CTR)
239 MOVD R12, CTR
240 BL (CTR)
256 MOVD R12, CTR
257 JMP (CTR)
356 MOVD R12, CTR
357 BL (CTR)
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/ppc64/
anames9.go 40 "CTR",
  /prebuilts/go/linux-x86/src/cmd/internal/obj/ppc64/
anames9.go 40 "CTR",
  /prebuilts/go/darwin-x86/src/crypto/cipher/
ctr.go 5 // Counter (CTR) mode.
7 // CTR converts a block cipher into a stream cipher by
15 type ctr struct { type
17 ctr []byte
25 // implementation of CTR, like crypto/aes. NewCTR will check for this interface
34 if ctr, ok := block.(ctrAble); ok {
35 return ctr.NewCTR(iv)
44 return &ctr{
46 ctr: dup(iv),
52 func (x *ctr) refill()
    [all...]
ctr_aes_test.go 5 // CTR AES test vectors.
31 "CTR-AES128",
43 "CTR-AES192",
55 "CTR-AES256",
80 ctr := cipher.NewCTR(c, tt.iv)
82 ctr.XORKeyStream(encrypted, in)
84 t.Errorf("%s/%d: CTR\ninpt %x\nhave %x\nwant %x", test, len(in), in, encrypted, out)
90 ctr := cipher.NewCTR(c, tt.iv)
92 ctr.XORKeyStream(plain, in)
  /prebuilts/go/linux-x86/src/crypto/cipher/
ctr.go 5 // Counter (CTR) mode.
7 // CTR converts a block cipher into a stream cipher by
15 type ctr struct { type
17 ctr []byte
25 // implementation of CTR, like crypto/aes. NewCTR will check for this interface
34 if ctr, ok := block.(ctrAble); ok {
35 return ctr.NewCTR(iv)
44 return &ctr{
46 ctr: dup(iv),
52 func (x *ctr) refill()
    [all...]
ctr_aes_test.go 5 // CTR AES test vectors.
31 "CTR-AES128",
43 "CTR-AES192",
55 "CTR-AES256",
80 ctr := cipher.NewCTR(c, tt.iv)
82 ctr.XORKeyStream(encrypted, in)
84 t.Errorf("%s/%d: CTR\ninpt %x\nhave %x\nwant %x", test, len(in), in, encrypted, out)
90 ctr := cipher.NewCTR(c, tt.iv)
92 ctr.XORKeyStream(plain, in)
  /prebuilts/go/darwin-x86/src/crypto/aes/
modes.go 33 // implementation of CTR through the cipher.Stream interface.
34 // See crypto/cipher/ctr.go.
  /prebuilts/go/darwin-x86/src/runtime/cgo/
asm_ppc64x.s 30 MOVD R3, CTR
34 BL (CTR)
  /prebuilts/go/linux-x86/src/crypto/aes/
modes.go 33 // implementation of CTR through the cipher.Stream interface.
34 // See crypto/cipher/ctr.go.
  /prebuilts/go/linux-x86/src/runtime/cgo/
asm_ppc64x.s 30 MOVD R3, CTR
34 BL (CTR)
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreUnauthenticatedAESCipherSpi.java 80 abstract static class CTR extends AndroidKeyStoreUnauthenticatedAESCipherSpi {
81 protected CTR(int keymasterPadding) {
85 public static class NoPadding extends CTR {
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLCipher.java 61 CTR,
642 case CTR:
701 public static class CTR extends AES {
702 public CTR() {
703 super(Mode.CTR, Padding.NOPADDING);
762 public static class CTR extends AES_128 {
763 public CTR() {
764 super(Mode.CTR, Padding.NOPADDING);
817 public static class CTR extends AES_256 {
818 public CTR() {
    [all...]

Completed in 559 milliseconds

1 2 3