• Home
  • Raw
  • Download

Lines Matching defs:s

16 #define bjam_malloc_x(s) malloc(s)  argument
17 #define bjam_calloc_x(n,s) calloc(n,s) argument
18 #define bjam_realloc_x(p,s) realloc(p,s) argument
22 #define bjam_malloc_atomic_x(s) bjam_malloc_x(s) argument
25 #define bjam_calloc_atomic_x(n,s) bjam_calloc_x(n,s) argument
34 #define bjam_malloc_raw_x(s) bjam_malloc_x(s) argument
37 #define bjam_calloc_raw_x(n,s) bjam_calloc_x(n,s) argument
40 #define bjam_realloc_raw_x(p,s) bjam_realloc_x(p,s) argument
50 #define BJAM_MALLOC(s) (profile_memory(s), bjam_malloc_x(s)) argument
51 #define BJAM_MALLOC_ATOMIC(s) (profile_memory(s), bjam_malloc_atomic_x(s)) argument
52 #define BJAM_CALLOC(n,s) (profile_memory(n*s), bjam_calloc_x(n,s)) argument
53 #define BJAM_CALLOC_ATOMIC(n,s) (profile_memory(n*s), bjam_calloc_atomic_x(n,s)) argument
54 #define BJAM_REALLOC(p,s) (profile_memory(s), bjam_realloc_x(p,s)) argument
56 #define BJAM_MALLOC_RAW(s) (profile_memory(s), bjam_malloc_raw_x(s)) argument
57 #define BJAM_CALLOC_RAW(n,s) (profile_memory(n*s), bjam_calloc_raw_x(n,s)) argument
58 #define BJAM_REALLOC_RAW(p,s) (profile_memory(s), bjam_realloc_raw_x(p,s)) argument
61 #define BJAM_MALLOC(s) bjam_malloc_x(s) argument
62 #define BJAM_MALLOC_ATOMIC(s) bjam_malloc_atomic_x(s) argument
63 #define BJAM_CALLOC(n,s) bjam_calloc_x(n,s) argument
64 #define BJAM_CALLOC_ATOMIC(n,s) bjam_calloc_atomic_x(n,s) argument
65 #define BJAM_REALLOC(p,s) bjam_realloc_x(p,s) argument
67 #define BJAM_MALLOC_RAW(s) bjam_malloc_raw_x(s) argument
68 #define BJAM_CALLOC_RAW(n,s) bjam_calloc_raw_x(n,s) argument
69 #define BJAM_REALLOC_RAW(p,s) bjam_realloc_raw_x(p,s) argument