Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:UDELAY_MULT
(Results
1 - 6
of
6
) sorted by relevance
/kernel/linux/linux-5.10/arch/arm/include/asm/
H
A
D
delay.h
28
* loops = (loops_per_jiffy * delay_us *
UDELAY_MULT
) >> 31
32
*
UDELAY_MULT
= 2^31 * HZ / 1000000
38
* delay_us *
UDELAY_MULT
assuming HZ <= 1000 and delay_us <= 2000.
41
#define
UDELAY_MULT
UL(2147 * HZ + 483648 * HZ / 1000000)
macro
85
__const_udelay((n) *
UDELAY_MULT
)) : \
/kernel/linux/linux-6.6/arch/arm/include/asm/
H
A
D
delay.h
28
* loops = (loops_per_jiffy * delay_us *
UDELAY_MULT
) >> 31
32
*
UDELAY_MULT
= 2^31 * HZ / 1000000
38
* delay_us *
UDELAY_MULT
assuming HZ <= 1000 and delay_us <= 2000.
41
#define
UDELAY_MULT
UL(2147 * HZ + 483648 * HZ / 1000000)
macro
85
__const_udelay((n) *
UDELAY_MULT
)) : \
/kernel/linux/linux-5.10/arch/riscv/lib/
H
A
D
delay.c
28
* loops = (loops_per_jiffy * delay_us *
UDELAY_MULT
) >> 31
32
*
UDELAY_MULT
= 2^31 * HZ / 1000000
38
* delay_us *
UDELAY_MULT
assuming HZ <= 1000 and delay_us <= 2000.
42
#define
UDELAY_MULT
(2147UL * HZ + 483648UL * HZ / 1000000UL)
macro
83
u64 ucycles = (u64)usecs * lpj_fine *
UDELAY_MULT
;
in udelay()
/kernel/linux/linux-6.6/arch/riscv/lib/
H
A
D
delay.c
32
* loops = (loops_per_jiffy * delay_us *
UDELAY_MULT
) >> 31
36
*
UDELAY_MULT
= 2^31 * HZ / 1000000
42
* delay_us *
UDELAY_MULT
assuming HZ <= 1000 and delay_us <= 2000.
46
#define
UDELAY_MULT
(2147UL * HZ + 483648UL * HZ / 1000000UL)
macro
87
u64 ucycles = (u64)usecs * lpj_fine *
UDELAY_MULT
;
in udelay()
/kernel/linux/linux-5.10/arch/arm/lib/
H
A
D
delay.c
62
__timer_const_udelay(usecs *
UDELAY_MULT
);
in __timer_udelay()
/kernel/linux/linux-6.6/arch/arm/lib/
H
A
D
delay.c
62
__timer_const_udelay(usecs *
UDELAY_MULT
);
in __timer_udelay()
Completed in 3 milliseconds