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

1 2 3 4 5 6 7

  /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);
  /external/boringssl/linux-arm/crypto/sha/
sha256-armv4.S 15 @ lute" terms is ~2250 cycles per 64-byte block or ~35 cycles per
21 @ Cortex A8 core and ~20 cycles per processed byte.
26 @ improvement on Cortex A8 core and ~15.4 cycles per processed byte.
31 @ byte in 12.5 cycles or 23% faster than integer-only code. Snapdragon
32 @ 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...]
  /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/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;
  /frameworks/base/libs/hwui/
Interpolator.h 76 CycleInterpolator(float cycles) : mCycles(cycles) {}
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
rtp_analyze.cc 106 int cycles = -1; local
132 if (cycles == -1) {
135 cycles = 0;
148 cycles++;
157 64.0 * cycles;
  /external/autotest/client/tests/signaltest/src/
signaltest.c 54 unsigned long cycles; member in struct:thread_stat
154 if (!par->id && !(stat->cycles & 0x0F))
185 stat->cycles++;
188 stat->values[stat->cycles & par->bufmsk] = diff;
190 if (par->max_cycles && par->max_cycles == stat->cycles)
300 stat->cycles, stat->min, stat->act,
301 stat->cycles ?
302 (long)(stat->avg/stat->cycles) : 0, stat->max);
305 while (stat->cycles != stat->cyclesread) {
398 if(max_cycles && stat[0].cycles >= max_cycles
    [all...]
  /external/v8/tools/gyp/pylib/gyp/
input_test.py 66 cycles = self.nodes['a'].FindCycles()
68 [self.nodes['a'], self.nodes['b'], self.nodes['a']] in cycles)
70 [self.nodes['b'], self.nodes['c'], self.nodes['b']] in cycles)
71 self.assertEquals(2, len(cycles))
  /external/fio/
gettime.c 261 uint64_t minc, maxc, avg, cycles[NR_TIME_ITERS]; local
264 cycles[0] = get_cycles_per_usec();
267 cycles[i] = get_cycles_per_usec();
268 delta = cycles[i] - mean;
271 S += delta * (cycles[i] - mean);
279 if (!cycles[0] && !cycles[NR_TIME_ITERS - 1])
287 double this = cycles[i];
289 minc = min(cycles[i], minc);
290 maxc = max(cycles[i], maxc)
    [all...]
  /frameworks/base/core/jni/
com_android_internal_view_animation_NativeInterpolatorFactoryHelper.cpp 49 static jlong createCycleInterpolator(JNIEnv* env, jobject clazz, jfloat cycles) {
50 return reinterpret_cast<jlong>(new CycleInterpolator(cycles));
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_conv.c 66 double cycles,
71 fprintf(fp, "%.1f\t", cycles / MAX2(src_type.length, dst_type.length));
163 int64_t cycles[LP_TEST_NUM_SAMPLES]; local
246 cycles[i] = end_counter - start_counter;
299 sum += cycles[i];
300 sum2 += cycles[i]*cycles[i];
309 if(fabs(cycles[i] - avg) <= 4.0*std) {
310 sum += cycles[i];
  /external/mesa3d/src/mesa/math/
m_debug_norm.c 196 static int test_norm_function( normal_func func, int mtype, long *cycles )
209 (void) cycles;
285 BEGIN_RACE( *cycles );
287 END_RACE( *cycles );
349 printf( "counter overhead: %ld cycles\n\n", counter_overhead );
359 long *cycles = &benchmark_tab[mtype]; local
361 if ( test_norm_function( func, mtype, cycles ) == 0 ) {
m_debug_xform.c 48 /* Overhead of profiling counter in cycles. Automatically adjusted to
169 int mtype, unsigned long *cycles )
179 (void) cycles;
246 BEGIN_RACE( *cycles );
248 END_RACE( *cycles );
295 printf("counter overhead: %lu cycles\n\n", counter_overhead );
314 unsigned long *cycles = &(benchmark_tab[psize-1][mtype]); local
316 if ( test_transform_function( func, psize, mtype, cycles ) == 0 ) {
  /external/autotest/client/site_tests/power_LoadTest/extension/
test.js 6 var cycles = {};
94 cycles[task.name] = cycle;
108 for (var name in cycles) {
109 var cycle = cycles[name];
  /frameworks/base/tools/layoutlib/bridge/src/com/android/internal/view/animation/
NativeInterpolatorFactoryHelper_Delegate.java 77 /*package*/ static long createCycleInterpolator(float cycles) {
78 return sManager.addNewDelegate(new CycleInterpolator(cycles));
  /system/extras/iotop/
iotop.cpp 43 "Usage: %s [-h] [-P] [-d <delay>] [-n <cycles>] [-s <column>]\n"
104 int cycles = -1; local
140 cycles = atoi(optarg);
275 if (cycles > 0 && --cycles == 0) break;

Completed in 1116 milliseconds

1 2 3 4 5 6 7