Lines Matching refs:c_void
52 pub type once_fn = extern "C" fn() -> c_void;
62 pub type cmpfunc = extern "C" fn(x: *const c_void, y: *const c_void) -> c_int; constant
979 pub fn calloc(nobj: size_t, size: size_t) -> *mut c_void; in calloc() argument
981 pub fn malloc(size: size_t) -> *mut c_void; in malloc() argument
983 pub fn realloc(p: *mut c_void, size: size_t) -> *mut c_void; in realloc() argument
985 pub fn aligned_alloc(align: size_t, len: size_t) -> *mut c_void; in aligned_alloc() argument
987 pub fn free(p: *mut c_void); in free() argument
989 pub fn posix_memalign(memptr: *mut *mut c_void, align: size_t, size: size_t) -> c_int; in posix_memalign() argument
991 pub fn memchr(cx: *const c_void, c: c_int, n: size_t) -> *mut c_void; in memchr() argument
995 pub fn memcmp(cx: *const c_void, ct: *const c_void, n: size_t) -> c_int; in memcmp() argument
997 pub fn memcpy(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void; in memcpy() argument
999 pub fn memmove(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void; in memmove() argument
1001 pub fn memset(dest: *mut c_void, c: c_int, n: size_t) -> *mut c_void; in memset() argument
1006 pub fn pthread_join(native: pthread_t, value: *mut *mut c_void) -> c_int; in pthread_join()
1011 pub fn pthread_exit(value: *mut c_void) -> !; in pthread_exit() argument
1019 stackaddr: *mut *mut c_void, in pthread_attr_getstack() argument
1039 dtor: Option<unsafe extern "C" fn(*mut c_void)>, in pthread_key_create() argument
1044 pub fn pthread_getspecific(key: pthread_key_t) -> *mut c_void; in pthread_getspecific() argument
1046 pub fn pthread_setspecific(key: pthread_key_t, value: *const c_void) -> c_int; in pthread_setspecific()
1090 f: extern "C" fn(*mut c_void) -> *mut c_void, in pthread_create() argument
1091 value: *mut c_void, in pthread_create() argument
1114 stack: *mut c_void, in pthread_attr_setstack() argument
1152 addr: *mut c_void, in mmap() argument
1158 ) -> *mut c_void; in mmap() argument
1159 pub fn munmap(addr: *mut c_void, len: size_t) -> c_int; in munmap() argument
1173 pub fn gettimeofday(tv: *mut timeval, tz: *mut c_void) -> c_int; in gettimeofday()
1315 key: *const c_void, in bsearch() argument
1316 base: *const c_void, in bsearch() argument
1320 ) -> *mut c_void; in bsearch() argument
1330 pub fn qsort(base: *mut c_void, nel: size_t, width: size_t, cmp: cmpfunc); in qsort() argument