OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:counts_per_usec
(Results
1 - 4
of
4
) sorted by relevancy
/src/sys/arch/arm/arm32/
cortex_pmc.c
60
#define
COUNTS_PER_USEC
(curcpu()->ci_data.cpu_cc_freq / (1000*1000))
89
const uint32_t
counts_per_usec
=
COUNTS_PER_USEC
;
local in function:delay
90
const uint32_t delay_arg_limit = ~0UL /
counts_per_usec
; /* about 10 sec */
117
if (delta >=
counts_per_usec
) {
118
usecs += delta /
counts_per_usec
;
119
delta %=
counts_per_usec
;
/src/sys/arch/arm/gemini/
gemini_timer.c
110
static const uint32_t
counts_per_usec
= (GEMINI_TIMER_CLOCK_FREQ / 1000000);
variable in typeref:typename:const uint32_t
356
if (delta >=
counts_per_usec
) {
357
usecs += delta /
counts_per_usec
;
358
delta %=
counts_per_usec
;
/src/sys/arch/arm/cortex/
a9ptmr.c
196
const uint64_t
counts_per_usec
= freq / 1000000;
local in function:a9ptmr_delay
215
if (delta >=
counts_per_usec
) {
216
usecs += delta /
counts_per_usec
;
217
delta %=
counts_per_usec
;
/src/sys/arch/arm/broadcom/
bcm2835_tmr.c
67
static const uint32_t
counts_per_usec
= (BCM2835_STIMER_HZ / 1000000);
variable in typeref:typename:const uint32_t
208
if (delta >=
counts_per_usec
) {
209
usecs += delta /
counts_per_usec
;
210
delta %=
counts_per_usec
;
Completed in 12 milliseconds
Indexes created Sun Sep 21 16:09:51 GMT 2025