Searched defs:AK_FORCE_INLINE (Results 1 - 1 of 1) sorted by relevance

/packages/inputmethods/LatinIME/native/jni/src/
H A Ddefines.h21 #define AK_FORCE_INLINE __attribute__((always_inline)) __inline__ macro
23 #define AK_FORCE_INLINE inline macro
27 #undef AK_FORCE_INLINE macro
28 #define AK_FORCE_INLINE inline macro
40 AK_FORCE_INLINE static int intArrayToCharArray(const int *const source, const int sourceSize,
119 static AK_FORCE_INLINE void dumpWord(const int *word, const int length) {
337 template<typename T> AK_FORCE_INLINE const T &min(const T &a, const T &b) { return a < b ? a : b; }
338 template<typename T> AK_FORCE_INLINE const T &max(const T &a, const T &b) { return a > b ? a : b; }

Completed in 61 milliseconds