代码搜索结果

找到约 10,000 项符合 Clock 的代码

clock.c

#include #include #include #include #include "clock.h" /* * Routines for using the cycle counter */ /* Detect whether running on Alpha */ #ifdef __a

clock.h

/* Routines for using cycle counter */ /* Start the counter */ void start_counter(); /* Get # cycles since counter started */ double get_counter(); /* Measure overhead for counter */ double ovhd();

clock.java

package 操作系统.各个置换算法; import javax.swing.*; public class Clock { // 时钟页面置换算法Clock public static final int PROGRAMLEN = 12; public static final int PROGRAMNUM = 5; public static final int

clock.c

#include "chip.h" void InitClock(void) { unsigned int oscdly; BCSCTL1=RSEL2+RSEL1+RSEL0; //X2T Enable ; LFXT1 operation at 32768Hz; Highest nominal DCO DCOCTL=DCO2+DCO1+DCO0; //Definitio

clock.h

#ifndef __CLOCK_H #define __CLOCK_H void InitClock(void); #endif