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

1 2 3 4

  /toolchain/binutils/binutils-2.27/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 59 MOVD R12, CTR
60 BL (CTR)
62 MOVD R12, CTR
63 BL (CTR)
71 MOVD R12, CTR
72 BL (CTR)
81 MOVD R12, CTR
82 BL (CTR)
134 MOVD R12, CTR
135 BR (CTR)
    [all...]
asm_ppc64x.s 38 MOVD R12, CTR // r12 = "global function entry point"
47 BL (CTR) // may clobber R0, R3-R12
151 MOVD R12, CTR
152 BR (CTR)
176 MOVD R12, CTR
183 BL (CTR)
223 MOVD R12, CTR
224 BL (CTR)
248 MOVD R12, CTR
249 BL (CTR)
    [all...]
sys_linux_ppc64x.s 216 MOVD R12, CTR
217 BL (CTR)
246 MOVD R12, CTR
247 BL (CTR)
307 MOVD R12, CTR
309 JMP (CTR)
340 MOVD R12, CTR
342 JMP (CTR)
462 MOVD R12, CTR
463 BL (CTR)
    [all...]
  /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 59 MOVD R12, CTR
60 BL (CTR)
62 MOVD R12, CTR
63 BL (CTR)
71 MOVD R12, CTR
72 BL (CTR)
81 MOVD R12, CTR
82 BL (CTR)
134 MOVD R12, CTR
135 BR (CTR)
    [all...]
asm_ppc64x.s 38 MOVD R12, CTR // r12 = "global function entry point"
47 BL (CTR) // may clobber R0, R3-R12
151 MOVD R12, CTR
152 BR (CTR)
176 MOVD R12, CTR
183 BL (CTR)
223 MOVD R12, CTR
224 BL (CTR)
248 MOVD R12, CTR
249 BL (CTR)
    [all...]
sys_linux_ppc64x.s 216 MOVD R12, CTR
217 BL (CTR)
246 MOVD R12, CTR
247 BL (CTR)
307 MOVD R12, CTR
309 JMP (CTR)
340 MOVD R12, CTR
342 JMP (CTR)
462 MOVD R12, CTR
463 BL (CTR)
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/
xla_op_registry.h 280 #define REGISTER_XLA_OP_UNIQ(CTR, BUILDER, OP) \
281 static ::tensorflow::XlaOpRegistrar xla_op_registrar__body__##CTR##__object( \
295 #define REGISTER_XLA_BACKEND_UNIQ(CTR, NAME, ...) \
297 xla_backend_registrar__body__##CTR##__object(NAME, __VA_ARGS__);
  /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)
  /device/linaro/bootloader/arm-trusted-firmware/include/common/aarch32/
asm_macros.S 36 ldcopr \tmp, CTR
43 ldcopr \tmp, CTR
  /prebuilts/go/darwin-x86/src/math/big/
arith_ppc64x.s 33 MOVD R7, CTR
63 MOVD R7, CTR
109 MOVD R11, CTR // Initialize loop counter
137 MOVD R22, CTR // Initialize loop counter
  /prebuilts/go/linux-x86/src/math/big/
arith_ppc64x.s 33 MOVD R7, CTR
63 MOVD R7, CTR
109 MOVD R11, CTR // Initialize loop counter
137 MOVD R22, CTR // Initialize loop counter
  /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 32 MOVD R3, CTR
36 BL (CTR)

Completed in 7811 milliseconds

1 2 3 4