Lines Matching defs: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()
981 pub fn malloc(size: size_t) -> *mut c_void; in malloc()
983 pub fn realloc(p: *mut c_void, size: size_t) -> *mut c_void; in realloc()
985 pub fn aligned_alloc(align: size_t, len: size_t) -> *mut c_void; in aligned_alloc()
987 pub fn free(p: *mut c_void); in free()
989 pub fn posix_memalign(memptr: *mut *mut c_void, align: size_t, size: size_t) -> c_int; in posix_memalign()
991 pub fn memchr(cx: *const c_void, c: c_int, n: size_t) -> *mut c_void; in memchr()
995 pub fn memcmp(cx: *const c_void, ct: *const c_void, n: size_t) -> c_int; in memcmp()
997 pub fn memcpy(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void; in memcpy()
999 pub fn memmove(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void; in memmove()
1001 pub fn memset(dest: *mut c_void, c: c_int, n: size_t) -> *mut c_void; in memset()
1011 pub fn pthread_exit(value: *mut c_void) -> !; in pthread_exit()
1019 stackaddr: *mut *mut c_void, in pthread_attr_getstack()
1039 dtor: Option<unsafe extern "C" fn(*mut c_void)>, in pthread_key_create()
1044 pub fn pthread_getspecific(key: pthread_key_t) -> *mut c_void; in pthread_getspecific()
1090 f: extern "C" fn(*mut c_void) -> *mut c_void, in pthread_create()
1091 value: *mut c_void, in pthread_create()
1114 stack: *mut c_void, in pthread_attr_setstack()
1152 addr: *mut c_void, in mmap()
1158 ) -> *mut c_void; in mmap()
1159 pub fn munmap(addr: *mut c_void, len: size_t) -> c_int; in munmap()
1315 key: *const c_void, in bsearch()
1316 base: *const c_void, in bsearch()
1320 ) -> *mut c_void; in bsearch()
1330 pub fn qsort(base: *mut c_void, nel: size_t, width: size_t, cmp: cmpfunc); in qsort()