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

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
LeftRecursionCyclesMessage.java 35 * cycles found by walking rules without decisions; the other msg is
39 public Collection cycles; field in class:LeftRecursionCyclesMessage
41 public LeftRecursionCyclesMessage(Collection cycles) {
43 this.cycles = cycles;
48 st.add("listOfCycles", cycles);
  /frameworks/base/core/java/com/android/internal/view/animation/
NativeInterpolatorFactoryHelper.java 31 public static native long createCycleInterpolator(float cycles);
  /toolchain/binutils/binutils-2.25/opcodes/
msp430-dis.c 59 int *cycles)
73 *cycles = 1;
78 *cycles = 5;
138 int *cycles)
174 *cycles = 1;
179 *cycles += 1;
198 *cycles = 4;
215 *cycles = 4;
227 *cycles = 4;
255 *cycles = 1
855 int cycles = 0; local
    [all...]
  /external/boringssl/linux-arm/crypto/sha/
sha256-armv4.S 22 @ lute" terms is ~2250 cycles per 64-byte block or ~35 cycles per
28 @ Cortex A8 core and ~20 cycles per processed byte.
33 @ improvement on Cortex A8 core and ~15.4 cycles per processed byte.
38 @ byte in 12.5 cycles or 23% faster than integer-only code. Snapdragon
39 @ S4 does it in 12.5 cycles too, but it's 50% faster than integer-only
    [all...]
sha512-armv4.S 15 @ by gcc 3.4 and it spends ~72 clock cycles per byte [on single-issue
21 @ Cortex A8 core and ~40 cycles per processed byte.
26 @ improvement on Coxtex A8 core and ~38 cycles per byte.
31 @ one byte in 23.3 cycles or ~60% faster than integer-only code.
36 @ terms it's 22.6 cycles per byte, which is disappointing result.
41 @ 16 cycles.
    [all...]
  /external/linux-kselftest/tools/testing/selftests/powerpc/pmu/ebb/
cycles_test.c 13 * Basic test that counts user cycles and takes EBBs.
15 int cycles(void) function
21 event_init_named(&event, 0x1001e, "cycles");
59 return test_harness(cycles, "cycles");
  /external/toolchain-utils/crosperf/experiment_files/
bloat_perf.exp 15 perf_args: record -e cycles
morejs_perf.exp 15 perf_args: record -e cycles
telemetry-crosperf-with-profiler.exp 24 perf_args: record -e cycles,instructions
  /external/v8/tools/
run-perf.sh 16 EVENT_TYPE=${EVENT_TYPE:=cycles:u}
25 Sampling event is cycles in user space, call graphs are recorded.
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/stress/
ParallelTest.java 60 int cycles = 200; local
61 for (int i = 0; i < cycles; i++) {
66 float duration = ((time2 - time1) / 1000000) / (float) cycles;
  /external/autotest/client/cros/
storage.py 274 storages = self.wait_for_devices(filter_dict, cycles=1,
292 def wait_for_devices(self, storage_filter, time_to_sleep=1, cycles=10,
294 """Cycles |cycles| times waiting |time_to_sleep| seconds each cycle,
300 @param time_to_sleep: time (int) to wait after each |cycles|.
301 @param cycles: number of tentatives. Use -1 for infinite.
310 '%d secs' % (storage_filter, cycles, time_to_sleep))
316 if cycles == -1:
321 while cycles == -1 or cycle < cycles
    [all...]
  /bionic/libc/bionic/
time64.c 201 int cycles = 0; local
204 cycles = (orig_year - 100) / 400;
205 orig_year -= cycles * 400;
206 days += (Time64_T)cycles * days_in_gregorian_cycle;
209 cycles = (orig_year - 100) / 400;
210 orig_year -= cycles * 400;
211 days += (Time64_T)cycles * days_in_gregorian_cycle;
213 TRACE3("# timegm/ cycles: %d, days: %lld, orig_year: %lld\n", cycles, days, orig_year);
464 int cycles; local
524 int cycles = 0; local
    [all...]
  /external/autotest/client/profilers/cpistat/
cpistat 77 cycles = sum['PERF_COUNT_HW_CPU_CYCLES'] variable
79 CPI = cycles * 1.0/instructions
80 print ('cycles: %12lu, instructions: %12lu, CPI: %2.4f'
81 % (cycles, instructions, CPI))
  /external/autotest/server/tests/netperf2/
netperf2.py 7 def run_once(self, pair, test, time, stream_list, cycles):
44 time, stream_list, 'server', cycles)
46 time, stream_list, 'client', cycles)
  /external/autotest/client/site_tests/network_3GStressEnable/
network_3GStressEnable.py 46 def run_once(self, test_env, cycles=3, min=15, max=25):
51 for n in xrange(cycles):
  /frameworks/base/core/java/android/view/animation/
CycleInterpolator.java 31 * Repeats the animation for a specified number of cycles. The
37 public CycleInterpolator(float cycles) {
38 mCycles = cycles;
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue6703a.go 7 // Check for cycles in a function value.
issue6703b.go 7 // Check for cycles in a function call.
issue6703c.go 7 // Check for cycles in a method expression.
issue6703d.go 7 // Check for cycles in a method expression call.
issue6703e.go 7 // Check for cycles in the method value of a value literal.
issue6703f.go 7 // Check for cycles in the method call of a value literal.
issue6703g.go 7 // Check for cycles in an embedded method expression.
issue6703h.go 7 // Check for cycles when calling an embedded method expression.

Completed in 700 milliseconds

1 2 3 4 5 6 7 8 91011>>