OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DEN
(Results
1 - 8
of
8
) sorted by null
/bionic/libc/kernel/common/linux/
jiffies.h
44
#define SH_DIV(NOM,
DEN
,LSH) ( (((NOM) / (
DEN
)) << (LSH)) + ((((NOM) % (
DEN
)) << (LSH)) + (
DEN
) / 2) / (
DEN
))
/ndk/build/platforms/android-3/arch-arm/usr/include/linux/
jiffies.h
44
#define SH_DIV(NOM,
DEN
,LSH) ( (((NOM) / (
DEN
)) << (LSH)) + ((((NOM) % (
DEN
)) << (LSH)) + (
DEN
) / 2) / (
DEN
))
/ndk/build/platforms/android-4/arch-arm/usr/include/linux/
jiffies.h
44
#define SH_DIV(NOM,
DEN
,LSH) ( (((NOM) / (
DEN
)) << (LSH)) + ((((NOM) % (
DEN
)) << (LSH)) + (
DEN
) / 2) / (
DEN
))
/ndk/build/platforms/android-5/arch-arm/usr/include/linux/
jiffies.h
44
#define SH_DIV(NOM,
DEN
,LSH) ( (((NOM) / (
DEN
)) << (LSH)) + ((((NOM) % (
DEN
)) << (LSH)) + (
DEN
) / 2) / (
DEN
))
/ndk/build/platforms/android-5/arch-x86/usr/include/linux/
jiffies.h
44
#define SH_DIV(NOM,
DEN
,LSH) ( (((NOM) / (
DEN
)) << (LSH)) + ((((NOM) % (
DEN
)) << (LSH)) + (
DEN
) / 2) / (
DEN
))
/ndk/build/platforms/android-8/arch-arm/usr/include/linux/
jiffies.h
44
#define SH_DIV(NOM,
DEN
,LSH) ( (((NOM) / (
DEN
)) << (LSH)) + ((((NOM) % (
DEN
)) << (LSH)) + (
DEN
) / 2) / (
DEN
))
/ndk/build/platforms/android-8/arch-x86/usr/include/linux/
jiffies.h
44
#define SH_DIV(NOM,
DEN
,LSH) ( (((NOM) / (
DEN
)) << (LSH)) + ((((NOM) % (
DEN
)) << (LSH)) + (
DEN
) / 2) / (
DEN
))
/external/kernel-headers/original/linux/
jiffies.h
41
/* Suppose we want to devide two numbers NOM and
DEN
: NOM/
DEN
, the we can
43
* (NOM << LSH) /
DEN
47
* - (NOM /
DEN
) fits in (32 - LSH) bits.
48
* - (NOM %
DEN
) fits in (32 - LSH) bits.
50
#define SH_DIV(NOM,
DEN
,LSH) ( (((NOM) / (
DEN
)) << (LSH)) \
51
+ ((((NOM) % (
DEN
)) << (LSH)) + (
DEN
) / 2) / (
DEN
))
[
all
...]
Completed in 407 milliseconds