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

1 2 34 5 6 7 8 91011>>

  /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...]
  /external/toolchain-utils/crosperf/experiment_files/
page_cycler_perf.exp 15 perf_args: record -e cycles,instructions
  /frameworks/base/libs/hwui/
Interpolator.h 77 explicit CycleInterpolator(float cycles) : mCycles(cycles) {}
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Scripts/Ds5/
profile.py 40 def add_cycles_to_function(functions, func_name, addr, cycles):
44 add_cycles_to_function.prev_entry['cycles'] += cycles
50 module_value['cycles'] += cycles
57 module_value['cycles'] += cycles
70 functions[func_name][module_name]['cycles'] = cycles
80 add_cycles_to_function.prev_entry['cycles'] += cycle
285 cycles = int(line.split('\\t')[column_cycles]) variable
    [all...]
  /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 ) {
m_debug_clip.c 230 int psize, long *cycles )
241 (void) cycles;
282 BEGIN_RACE( *cycles );
284 END_RACE( *cycles );
365 printf( "counter overhead: %ld cycles\n\n", counter_overhead );
384 long *cycles = &(benchmark_tab[np][psize-1]); local
386 if ( test_cliptest_function( func, np, psize, cycles ) == 0 ) {
  /frameworks/base/core/jni/
com_android_internal_view_animation_NativeInterpolatorFactoryHelper.cpp 50 static jlong createCycleInterpolator(JNIEnv* env, jobject clazz, jfloat cycles) {
51 return reinterpret_cast<jlong>(new CycleInterpolator(cycles));
  /frameworks/base/tools/layoutlib/bridge/src/com/android/internal/view/animation/
NativeInterpolatorFactoryHelper_Delegate.java 79 /*package*/ static long createCycleInterpolator(float cycles) {
80 return sManager.addNewDelegate(new CycleInterpolator(cycles));
  /external/swiftshader/third_party/LLVM/tools/llvm-config/
Makefile 12 EXTRA_DIST = LibDeps.txt FinalLibDeps.txt llvm-config.in.in find-cycles.pl
46 $(FinalLibDeps): find-cycles.pl $(LibDeps)
60 $(Verb) $(PERL) $(PROJ_SRC_DIR)/find-cycles.pl < PerobjDepsIncl.txt > PerobjDepsInclFinal.txt || rm -f $@
80 $(Verb) $(PERL) $(PROJ_SRC_DIR)/find-cycles.pl < PerobjDepsIncl.txt > PerobjDepsInclFinal.txt
  /prebuilts/go/darwin-x86/src/internal/pprof/profile/
profile_test.go 35 cycles/second=3491920901
44 cycles/second=3491920901
  /prebuilts/go/darwin-x86/src/runtime/
os2_plan9.go 55 kcycles int64 // cycles spent in kernel
56 pcycles int64 // cycles spent in process (kernel + user)
mprof.go 94 cycles int64
286 // convert ns to cycles, use float64 to prevent overflow during multiplication
296 func blockevent(cycles int64, skip int) {
297 if cycles <= 0 {
298 cycles = 1
300 if blocksampled(cycles) {
301 saveblockevent(cycles, skip+1, blockProfile, &blockprofilerate)
305 func blocksampled(cycles int64) bool {
307 if rate <= 0 || (rate > cycles && int64(fastrand())%rate > cycles) {
    [all...]
  /prebuilts/go/linux-x86/src/internal/pprof/profile/
profile_test.go 35 cycles/second=3491920901
44 cycles/second=3491920901
  /prebuilts/go/linux-x86/src/runtime/
os2_plan9.go 55 kcycles int64 // cycles spent in kernel
56 pcycles int64 // cycles spent in process (kernel + user)
mprof.go 94 cycles int64
286 // convert ns to cycles, use float64 to prevent overflow during multiplication
296 func blockevent(cycles int64, skip int) {
297 if cycles <= 0 {
298 cycles = 1
300 if blocksampled(cycles) {
301 saveblockevent(cycles, skip+1, blockProfile, &blockprofilerate)
305 func blocksampled(cycles int64) bool {
307 if rate <= 0 || (rate > cycles && int64(fastrand())%rate > cycles) {
    [all...]
  /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;
  /system/extras/simpleperf/
generate_event_type_table.py 22 {"cpu-cycles", PERF_TYPE_HARDWARE, PERF_COUNT_HW_CPU_CYCLES},
28 hardware_configs = ["cpu-cycles",
34 "bus-cycles",
35 "stalled-cycles-frontend",
36 "stalled-cycles-backend",
  /toolchain/binutils/binutils-2.25/include/opcode/
d10v.h 58 /* the number of cycles */
59 int cycles; member in struct:d10v_opcode
  /libcore/ojluni/src/main/java/java/util/concurrent/
ArrayBlockingQueue.java 733 * (1) keeping track of the number of "cycles", that is, the
787 int cycles; field in class:ArrayBlockingQueue.Itrs
878 cycles++;
1079 final int cycles = itrs.cycles; local
    [all...]
  /external/autotest/client/tests/cyclictest/src/
cyclictest.c 73 unsigned long cycles; member in struct:thread_stat
331 stat->cycles++;
334 stat->values[stat->cycles & par->bufmsk] = diff;
340 if (par->max_cycles && par->max_cycles == stat->cycles)
506 stat->cycles, stat->min, stat->act,
507 stat->cycles ?
508 (long)(stat->avg/stat->cycles) : 0, stat->max);
511 while (stat->cycles != stat->cyclesread) {
597 if(max_cycles && stat[i].cycles >= max_cycles)
  /external/ltp/testcases/kernel/io/disktest/
main.c 88 if (test->args->cycles == 0) {
96 test->args->cycles);
127 if (test->args->cycles == 0) {
135 test->args->cycles);
367 if (test->args->cycles == 0) {
376 pass_count, test->args->cycles);
406 if ((test->args->cycles > 0)
407 && (test->env->pass_count >= test->args->cycles)) {
  /external/toolchain-utils/user_activity_benchmarks/
select_hot_functions.sql 12 FLATTEN(chromeos_wide_profiling.sampledb.cycles.callgraph.last30days, frame)
  /prebuilts/go/darwin-x86/test/
nowritebarrier.go 39 // Test recursive cycles through nowritebarrierrec and yeswritebarrierrec.

Completed in 804 milliseconds

1 2 34 5 6 7 8 91011>>