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

  /external/libffi/include/
ffi_common.h 53 void ffi_assert(char *expr, char *file, int line);
57 #define FFI_ASSERT(x) ((x) ? (void)0 : ffi_assert(#x, __FILE__,__LINE__))
58 #define FFI_ASSERT_AT(x, f, l) ((x) ? 0 : ffi_assert(#x, (f), (l)))
61 #define FFI_ASSERT(x)
  /external/libffi/src/
debug.c 39 /* This function should only be called via the FFI_ASSERT() macro */
41 void ffi_assert(char *expr, char *file, int line) function

Completed in 1236 milliseconds