Searched refs:LZO_ICAST (Results 1 – 4 of 4) sorted by relevance
/external/syslinux/lzo/src/ |
D | lzo_supp.h | 960 #define lzo_ascii_isdigit(c) ((LZO_ICAST(unsigned, c) - 48) < 10) 961 #define lzo_ascii_islower(c) ((LZO_ICAST(unsigned, c) - 97) < 26) 962 #define lzo_ascii_isupper(c) ((LZO_ICAST(unsigned, c) - 65) < 26) 963 #define lzo_ascii_tolower(c) (LZO_ICAST(int, c) + (lzo_ascii_isupper(c) << 5)) 964 #define lzo_ascii_toupper(c) (LZO_ICAST(int, c) - (lzo_ascii_islower(c) << 5)) 2877 return LZO_ICAST(long, r); in lzo_pclock_syscall_clock_gettime() 2888 return LZO_ICAST(long, r); in lzo_pclock_syscall_clock_gettime() 3603 else if ((p[0] >= '0' && p[0] <= '9') && p[1] == 0) r = LZO_ICAST(unsigned, p[0]) - '0'; in LZOLIB_PUBLIC_NOINLINE()
|
/external/syslinux/lzo/include/lzo/ |
D | lzodefs.h | 1327 #if !defined(LZO_ICAST) 1328 # define LZO_ICAST(t,e) LZO_STATIC_CAST(t, e) macro
|
/external/libvncserver/common/ |
D | lzodefs.h | 1327 #if !defined(LZO_ICAST) 1328 # define LZO_ICAST(t,e) LZO_STATIC_CAST(t, e) macro
|
D | minilzo.c | 1347 #if !defined(LZO_ICAST) 1348 # define LZO_ICAST(t,e) LZO_STATIC_CAST(t, e) macro
|