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

  /external/oprofile/events/arm/armv7/
events.h 2 {0x00, CTR(1) | CTR(2) | CTR(3) | CTR(4) | CTR(5) | CTR(6), 0, "PMNC_SW_INCR",
4 {0x01, CTR(1) | CTR(2) | CTR(3) | CTR(4) | CTR(5) | CTR(6), 0, "IFETCH_MISS"
    [all...]
  /external/oprofile/events/arm/armv6/
events.h 2 {0x00, CTR(0) | CTR(1), 0, "IFU_IFETCH_MISS",
4 {0x01, CTR(0) | CTR(1), 0, "CYCLES_IFU_MEM_STALL",
6 {0x02, CTR(0) | CTR(1), 0, "CYCLES_DATA_STALL",
8 {0x03, CTR(0) | CTR(1), 0, "ITLB_MISS",
10 {0x04, CTR(0) | CTR(1), 0, "DTLB_MISS"
    [all...]
  /external/oprofile/events/mips/74K/
events.h 2 {0x0, CTR(0) | CTR(1) | CTR(2) | CTR(3), 0, "CYCLES",
4 {0x1, CTR(0) | CTR(1) | CTR(2) | CTR(3), 0, "INSTRUCTIONS",
6 {0x2, CTR(0) | CTR(2), 0, "PREDICTED_JR_31"
    [all...]
  /external/oprofile/events/mips/1004K/
events.h 2 {0x0, CTR(0) | CTR(1), 0, "CYCLES",
4 {0x1, CTR(0) | CTR(1), 0, "INSTRUCTIONS",
6 {0xb, CTR(0) | CTR(1), 0, "DCACHE_MISSES",
8 {0x2, CTR(0), 0, "BRANCH_INSNS",
10 {0x3, CTR(0), 0, "JR_31_INSNS",
12 {0x4, CTR(0), 0, "JR_NON_31_INSNS",
14 {0x5, CTR(0), 0, "ITLB_ACCESSES"
    [all...]
  /external/oprofile/events/mips/34K/
events.h 2 {0x0, CTR(0) | CTR(1), 0, "CYCLES",
4 {0x1, CTR(0) | CTR(1), 0, "INSTRUCTIONS",
6 {0xb, CTR(0) | CTR(1), 0, "DCACHE_MISSES",
8 {0x2, CTR(0), 0, "BRANCH_INSNS",
10 {0x3, CTR(0), 0, "JR_31_INSNS",
12 {0x4, CTR(0), 0, "JR_NON_31_INSNS",
14 {0x5, CTR(0), 0, "ITLB_ACCESSES"
    [all...]
  /external/oprofile/events/mips/24K/
events.h 2 {0x0, CTR(0) | CTR(1), 0, "CYCLES",
4 {0x1, CTR(0) | CTR(1), 0, "INSTRUCTIONS",
6 {0xb, CTR(0) | CTR(1), 0, "DCACHE_MISSES",
8 {0x2, CTR(0), 0, "BRANCH_INSNS",
10 {0x3, CTR(0), 0, "JR_31_INSNS",
12 {0x4, CTR(0), 0, "JR_NON_31_INSNS",
14 {0x5, CTR(0), 0, "ITLB_ACCESSES"
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLProvider.java 186 put("Cipher.AES/CTR/NoPadding", OpenSSLCipher.AES.CTR.NoPadding.class.getName());
187 put("Cipher.AES/CTR/PKCS5Padding", OpenSSLCipher.AES.CTR.PKCS5Padding.class.getName());
OpenSSLCipher.java 55 CTR,
541 public static class CTR extends AES {
542 public CTR(Padding padding) {
543 super(Mode.CTR, padding);
546 public static class NoPadding extends CTR {
552 public static class PKCS5Padding extends CTR {
615 case CTR:
  /libcore/benchmarks/src/benchmarks/regression/
CipherBenchmark.java 66 CTR,
  /external/clang/lib/StaticAnalyzer/Core/
SVals.cpp 54 if (const FunctionTextRegion *CTR = R->getAs<FunctionTextRegion>())
55 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CTR->getDecl()))
  /external/oprofile/utils/
opcontrol 1385 CTR=`echo $HW_CTRS | awk "{print \\$$((f + 1))}"`
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCInstrInfo.cpp 40 cl::desc("Disable analysis for CTR loops"));
206 // Note: If the condition register is set to CTR or CTR8 then this is a
253 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
264 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
302 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
316 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
386 else if (Cond[1].getReg() == PPC::CTR || Cond[1].getReg() == PPC::CTR8)
397 if (Cond[1].getReg() == PPC::CTR || Cond[1].getReg() == PPC::CTR8)
694 if (Cond[1].getReg() == PPC::CTR8 || Cond[1].getReg() == PPC::CTR)
PPCCTRLoops.cpp 1 //===-- PPCCTRLoops.cpp - Identify and generate CTR loops -----------------===//
11 // that decrement and test the count register (CTR) (bdnz and friends).
20 // Criteria for CTR loops:
24 // - No nested CTR loops.
55 STATISTIC(NumCTRLoops, "Number of loops converted to CTR loops");
77 const char *getPassName() const { return "PPC CTR Loops"; }
107 /// a CTR loop.
111 /// instruction that inhibits using the CTR loop.
115 /// CTR loop. If so, then perform the conversion and return true.
183 INITIALIZE_PASS_BEGIN(PPCCTRLoops, "ppc-ctr-loops", "PowerPC CTR Loops"
    [all...]
PPCISelLowering.cpp     [all...]
  /external/oprofile/opcontrol/
opcontrol.cpp 47 #define CTR(n) (1<<(n))
393 verbose("idx: %d, name: %s, mask: %02x, ctr#: %d\n",
397 (event_info[event_idx].counters & CTR(num_events)) == 0) {
463 printf(" name: %s\n", find_event_name_from_id(num, CTR(i)));
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_mac.h 102 #error EAX_MODE requires OMAC and CTR
107 symmetric_CTR ctr; member in struct:__anon7175
  /external/qemu/tcg/ppc/
tcg-target.c 386 #define CTR SPR(9, 0)
477 tcg_out32 (s, MTSPR | RS (0) | CTR);
494 tcg_out32 (s, MTSPR | RA (0) | CTR);
942 tcg_out32 (s, MTSPR | RS (3) | CTR);
    [all...]
  /external/qemu/tcg/ppc64/
tcg-target.c 378 #define CTR SPR(9, 0)
497 tcg_out32 (s, MTSPR | RS (0) | CTR);
522 tcg_out32 (s, MTSPR | RA (0) | CTR);
908 tcg_out32 (s, MTSPR | RS (3) | CTR);
    [all...]
  /external/dropbear/libtomcrypt/
crypt.tex     [all...]
  /external/valgrind/main/memcheck/
mc_machine.c 197 if (o == GOF(CTR) && sz == 8) return o;
397 if (o == GOF(CTR) && sz == 4) return o;
    [all...]
  /external/openssl/crypto/evp/
e_aes.c 69 ctr128_f ctr; member in union:__anon12604::__anon12605
84 ctr128_f ctr; member in struct:__anon12606
251 dat->stream.ctr = (ctr128_f)aesni_ctr32_encrypt_blocks;
316 gctx->ctr = (ctr128_f)aesni_ctr32_encrypt_blocks;
494 BLOCK_CIPHER_generic(nid,keylen,1,16,ctr,ctr,CTR,flags)
538 dat->stream.ctr = (ctr128_f)bsaes_ctr32_encrypt_blocks;
561 dat->stream.ctr = (ctr128_f)AES_ctr32_encrypt;
663 if (dat->stream.ctr)
    [all...]

Completed in 1241 milliseconds