| /src/sys/arch/aarch64/aarch64/ |
| disasm.h | 33 uint32_t (*di_readword)(uintptr_t); /* disasm_insn() doesn't use */ 34 void (*di_printaddr)(uintptr_t); 38 void disasm_insn(const disasm_interface_t *, uintptr_t, uint32_t); 39 uintptr_t disasm(const disasm_interface_t *, uintptr_t);
|
| /src/usr.sbin/lockstat/ |
| extern.h | 48 int findsym32(findsym_t, char *, uintptr_t *, uintptr_t *); 49 int findsym64(findsym_t, char *, uintptr_t *, uintptr_t *);
|
| /src/lib/libexecinfo/ |
| symbol_hppa.c | 37 #define HPPA_IS_PLABEL(addr) (((uintptr_t)(addr)) & (1 << 1)) 38 #define HPPA_GET_PLABEL(addr) ((hppa_plabel *) (((uintptr_t)addr) & ~3)) 41 uintptr_t pl_pc; 42 uintptr_t pl_sl; 46 uintptr_t 50 HPPA_GET_PLABEL(addr)->pl_pc : (uintptr_t)addr;
|
| symbol.h | 41 uintptr_t symbol_canonicalize_md(const void *); 44 #define SYMBOL_CANONICALIZE(x) ((uintptr_t)(x))
|
| /src/libexec/ld.elf_so/ |
| compat.c | 68 const uintptr_t _rtld_compat_obj[] = { 79 [(RTLD_OBJ_DLOPEN_OFFSET / sizeof(uintptr_t)) + 0] = (uintptr_t)dlopen, 80 [(RTLD_OBJ_DLOPEN_OFFSET / sizeof(uintptr_t)) + 1] = (uintptr_t)dlsym, 81 [(RTLD_OBJ_DLOPEN_OFFSET / sizeof(uintptr_t)) + 2] = (uintptr_t)dlerror, 82 [(RTLD_OBJ_DLOPEN_OFFSET / sizeof(uintptr_t)) + 3] = (uintptr_t)dlclose, 83 [(RTLD_OBJ_DLOPEN_OFFSET / sizeof(uintptr_t)) + 4] = (uintptr_t)dladdr [all...] |
| /src/sys/external/bsd/compiler_rt/dist/include/sanitizer/ |
| coverage_interface.h | 30 void __sanitizer_dump_coverage(const uintptr_t *pcs, uintptr_t len);
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/include/sanitizer/ |
| coverage_interface.h | 29 void __sanitizer_dump_coverage(const uintptr_t *pcs, uintptr_t len);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
| FuzzerValueBitMap.h | 23 static const size_t kBitsInWord = (sizeof(uintptr_t) * 8); 33 inline bool AddValue(uintptr_t Value) { 34 uintptr_t Idx = Value % kMapSizeInBits; 35 uintptr_t WordIdx = Idx / kBitsInWord; 36 uintptr_t BitIdx = Idx % kBitsInWord; 37 uintptr_t Old = Map[WordIdx]; 38 uintptr_t New = Old | (1UL << BitIdx); 44 inline bool AddValueModPrime(uintptr_t Value) { 48 inline bool Get(uintptr_t Idx) { 50 uintptr_t WordIdx = Idx / kBitsInWord [all...] |
| /src/external/cddl/osnet/dist/common/nvpair/ |
| nvpair_alloc_fixed.c | 50 uintptr_t nvb_buf; /* address of pre-allocated buffer */ 51 uintptr_t nvb_lim; /* limit address in the buffer */ 52 uintptr_t nvb_cur; /* current address in the buffer */ 66 uintptr_t base = va_arg(valist, uintptr_t); 67 uintptr_t lim = base + va_arg(valist, size_t); 68 nvbuf_t *nvb = (nvbuf_t *)P2ROUNDUP(base, sizeof (uintptr_t)); 70 if (base == 0 || (uintptr_t)&nvb[1] > lim) 73 nvb->nvb_buf = (uintptr_t)&nvb[0]; 74 nvb->nvb_cur = (uintptr_t)&nvb[1] [all...] |
| /src/sys/arch/sh3/include/ |
| sysarch.h | 37 uintptr_t addr; /* Virtual start address */ 45 int sh3_sync_icache(uintptr_t, size_t);
|
| /src/sys/sys/ |
| selinfo.h | 78 uintptr_t sel_fdinfo; /* selected descriptor by first LWP */ 80 uintptr_t sel_reserved[2];/* reserved for future expansion */
|
| thmap.h | 43 uintptr_t (*alloc)(size_t); 44 void (*free)(uintptr_t, size_t); 47 thmap_t * thmap_create(uintptr_t, const thmap_ops_t *, unsigned); 57 int thmap_setroot(thmap_t *, uintptr_t); 58 uintptr_t thmap_getroot(const thmap_t *);
|
| /src/external/gpl3/gcc/dist/libsanitizer/include/sanitizer/ |
| coverage_interface.h | 29 void SANITIZER_CDECL __sanitizer_dump_coverage(const uintptr_t *pcs, 30 uintptr_t len);
|
| /src/sys/ddb/ |
| db_lwp.h | 37 void db_lwp_whatis(uintptr_t,
|
| /src/sys/lib/libunwind/ |
| unwind.h | 45 uintptr_t private_1; 46 uintptr_t private_2; 75 uintptr_t _Unwind_GetGR(struct _Unwind_Context *, int); 76 void _Unwind_SetGR(struct _Unwind_Context *, int, uintptr_t); 77 uintptr_t _Unwind_GetIP(struct _Unwind_Context *); 78 uintptr_t _Unwind_GetIPInfo(struct _Unwind_Context *, int *); 79 uintptr_t _Unwind_GetCFA(struct _Unwind_Context *); 80 void _Unwind_SetIP(struct _Unwind_Context *, uintptr_t); 81 uintptr_t _Unwind_GetRegionStart(struct _Unwind_Context *); 82 uintptr_t _Unwind_GetLanguageSpecificData(struct _Unwind_Context *) [all...] |
| /src/sys/arch/powerpc/include/ |
| mutex.h | 46 volatile uintptr_t mtxm_owner; 52 uintptr_t mtxp_a; 69 int _lock_cas(volatile uintptr_t *, uintptr_t, uintptr_t);
|
| /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/ |
| hook.h | 94 uintptr_t result_raw, uintptr_t args_raw[3]); 97 void *extra, hook_dalloc_t type, void *address, uintptr_t args_raw[3]); 100 size_t old_usize, size_t new_usize, uintptr_t result_raw, 101 uintptr_t args_raw[4]); 139 uintptr_t args[4]; 154 void hook_invoke_alloc(hook_alloc_t type, void *result, uintptr_t result_raw, 155 uintptr_t args_raw[3]); 158 hook_dalloc_t type, void *address, uintptr_t args_raw[3]); 161 size_t new_usize, uintptr_t result_raw, uintptr_t args_raw[4]) [all...] |
| /src/external/bsd/jemalloc.old/include/jemalloc/internal/ |
| hook.h | 94 uintptr_t result_raw, uintptr_t args_raw[3]); 97 void *extra, hook_dalloc_t type, void *address, uintptr_t args_raw[3]); 100 size_t old_usize, size_t new_usize, uintptr_t result_raw, 101 uintptr_t args_raw[4]); 139 uintptr_t args[4]; 154 void hook_invoke_alloc(hook_alloc_t type, void *result, uintptr_t result_raw, 155 uintptr_t args_raw[3]); 158 hook_dalloc_t type, void *address, uintptr_t args_raw[3]); 161 size_t new_usize, uintptr_t result_raw, uintptr_t args_raw[4]) [all...] |
| /src/external/gpl3/gcc/dist/libbacktrace/ |
| testlib.h | 74 uintptr_t *addrs; 85 uintptr_t val, size; 101 extern int callback_one (void *, uintptr_t, const char *, int, const char *); 103 extern int callback_two (void *, uintptr_t); 105 extern void callback_three (void *, uintptr_t, const char *, uintptr_t, 106 uintptr_t);
|
| /src/external/gpl3/gcc.old/dist/libbacktrace/ |
| testlib.h | 74 uintptr_t *addrs; 85 uintptr_t val, size; 101 extern int callback_one (void *, uintptr_t, const char *, int, const char *); 103 extern int callback_two (void *, uintptr_t); 105 extern void callback_three (void *, uintptr_t, const char *, uintptr_t, 106 uintptr_t);
|
| /src/external/gpl3/gdb/dist/libbacktrace/ |
| testlib.h | 74 uintptr_t *addrs; 85 uintptr_t val, size; 101 extern int callback_one (void *, uintptr_t, const char *, int, const char *); 103 extern int callback_two (void *, uintptr_t); 105 extern void callback_three (void *, uintptr_t, const char *, uintptr_t, 106 uintptr_t);
|
| /src/external/gpl3/gdb.old/dist/libbacktrace/ |
| testlib.h | 74 uintptr_t *addrs; 85 uintptr_t val, size; 101 extern int callback_one (void *, uintptr_t, const char *, int, const char *); 103 extern int callback_two (void *, uintptr_t); 105 extern void callback_three (void *, uintptr_t, const char *, uintptr_t, 106 uintptr_t);
|
| /src/sys/kern/ |
| kern_sdt.c | 76 void sdt_probe_stub(u_int32_t, uintptr_t, uintptr_t, 77 uintptr_t, uintptr_t, uintptr_t); 95 sdt_probe_stub(u_int32_t id, uintptr_t arg0, uintptr_t arg1, 96 uintptr_t arg2, uintptr_t arg3, uintptr_t arg4 [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/builtins/ |
| clear_cache.c | 101 arg.addr = (uintptr_t)start; 102 arg.len = (uintptr_t)end - (uintptr_t)start; 119 const uintptr_t start_int = (uintptr_t) start; 120 const uintptr_t end_int = (uintptr_t) end; 123 const uintptr_t address_range_limit = 256; 133 uint64_t xstart = (uint64_t)(uintptr_t) start; 134 uint64_t xend = (uint64_t)(uintptr_t) end [all...] |
| /src/common/lib/libc/string/ |
| bcmp.c | 92 const uintptr_t *b1, *b2; 98 if ((((uintptr_t)b1 | (uintptr_t)b2) & (sizeof(uintptr_t) - 1)) == 0) 101 while (n >= sizeof(uintptr_t)) { 104 n -= sizeof(uintptr_t);
|