HomeSort by relevance Sort by last modified time
    Searched refs:LSH (Results 1 - 15 of 15) sorted by null

  /frameworks/base/include/utils/
Debug.h 38 template<bool C, typename LSH, typename RHS> struct CompileTimeIfElse;
  /bionic/libc/kernel/common/linux/
jiffies.h 44 #define SH_DIV(NOM,DEN,LSH) ( (((NOM) / (DEN)) << (LSH)) + ((((NOM) % (DEN)) << (LSH)) + (DEN) / 2) / (DEN))
  /development/ndk/platforms/android-3/include/linux/
jiffies.h 44 #define SH_DIV(NOM,DEN,LSH) ( (((NOM) / (DEN)) << (LSH)) + ((((NOM) % (DEN)) << (LSH)) + (DEN) / 2) / (DEN))
  /prebuilt/ndk/android-ndk-r4/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))
  /prebuilt/ndk/android-ndk-r4/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))
  /prebuilt/ndk/android-ndk-r4/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))
  /prebuilt/ndk/android-ndk-r4/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))
  /prebuilt/ndk/android-ndk-r4/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))
  /prebuilt/ndk/android-ndk-r4/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/libpcap/
tokdefs.h 83 LSH = 309,
187 #define LSH 309
grammar.y 179 %token LSH RSH
205 %left LSH RSH
427 | arth LSH arth { $$ = gen_arth(BPF_LSH, $1, $3); }
grammar.c 118 LSH = 309,
222 #define LSH 309
788 "LINK", "GEQ", "LEQ", "NEQ", "ID", "EID", "HID", "HID6", "AID", "LSH",
    [all...]
scanner.l 306 "<<" return LSH;
scanner.c     [all...]
  /external/kernel-headers/original/linux/
jiffies.h 42 * improve accuracy by shifting LSH bits, hence calculating:
43 * (NOM << LSH) / DEN
44 * This however means trouble for large NOM, because (NOM << LSH) may no
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))

Completed in 160 milliseconds