Home
last modified time | relevance | path

Searched refs:UTIL_STATIC (Results 1 – 3 of 3) sorted by relevance

/external/lz4/programs/
Dutil.h168 # define UTIL_STATIC static __attribute__((unused)) macro
170 # define UTIL_STATIC static inline macro
172 # define UTIL_STATIC static __inline macro
174 # define UTIL_STATIC static /* this version may generate warnings for unused static functions; di… macro
186 UTIL_STATIC void* UTIL_realloc(void* ptr, size_t size) in UTIL_realloc()
202 UTIL_STATIC int UTIL_sameString(const char* a, const char* b) in UTIL_sameString()
217UTIL_STATIC UTIL_time_t UTIL_getTime(void) { UTIL_time_t x; QueryPerformanceCounter(&x); return x;… in UTIL_getTime()
218 UTIL_STATIC U64 UTIL_getSpanTimeMicro(UTIL_time_t clockStart, UTIL_time_t clockEnd) in UTIL_getSpanTimeMicro()
229 UTIL_STATIC U64 UTIL_getSpanTimeNano(UTIL_time_t clockStart, UTIL_time_t clockEnd) in UTIL_getSpanTimeNano()
245 UTIL_STATIC UTIL_time_t UTIL_getTime(void) { return mach_absolute_time(); } in UTIL_getTime()
[all …]
/external/zstd/programs/
Dutil.h81 # define UTIL_STATIC static __attribute__((unused)) macro
83 # define UTIL_STATIC static inline
85 # define UTIL_STATIC static __inline
87 # define UTIL_STATIC static /* this version may generate warnings for unused static functions; di…
Dutil.c72 UTIL_STATIC void* UTIL_realloc(void *ptr, size_t size) in UTIL_realloc()