代码搜索:timer
找到约 10,000 项符合「timer」的源代码
代码结果 10,000
www.eeworm.com/read/298106/7973862
o timer.o
www.eeworm.com/read/298106/7973919
c timer.c
/**************************************************************************************************
*
* FILENAME
* ti
www.eeworm.com/read/298072/7975825
cpp timer.cpp
/**********************************************************************
*
* Filename: timer.cpp
*
* Description: A software timer class implemented over top of the
* hardwar
www.eeworm.com/read/298072/7975834
obj timer.obj
www.eeworm.com/read/298072/7975841
h timer.h
/**********************************************************************
*
* Filename: timer.h
*
* Description: Header file for the Intel 8018xEB Timer class.
*
* Notes:
*
*
www.eeworm.com/read/298072/7975850
cpp timer.cpp
/**********************************************************************
*
* Filename: timer.cpp
*
* Description: A software timer class implemented over top of the
* hardwar
www.eeworm.com/read/298072/7975859
obj timer.obj
www.eeworm.com/read/197685/7978134
cpp timer.cpp
#include "StdAfx.h"
#include "timer.h"
CTimer::CTimer(void)
{
m_overhead = 0;
Start();
m_overhead = Stop();
}
CTimer::~CTimer(void)
{
}
void CTimer::Star
www.eeworm.com/read/197685/7978149
h timer.h
#pragma once
inline unsigned __int64 theCycleCount(void)
{
_asm _emit 0x0F
_asm _emit 0x31
}
class CTimer
{
public:
CTimer(void);
~CTimer(void);
void Start();
unsigned _
www.eeworm.com/read/398340/7993100