Searched refs:intptr_t (Results 1 - 25 of 421) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DASTDiagnostic.h27 intptr_t Val,
33 ArrayRef<intptr_t> QualTypeVals);
/freebsd-11-stable/lib/libc/i386/gen/
H A Dsignalcontext.c55 p = (register_t *)(void *)(intptr_t)ucp->uc_mcontext.mc_esp;
56 *--p = (register_t)(intptr_t)ucp;
62 sfp->sf_siginfo = (register_t)(intptr_t)&sfp->sf_si;
63 sfp->sf_ucontext = (register_t)(intptr_t)&sfp->sf_uc;
67 *--p = (register_t)(intptr_t)func;
73 ucp->uc_mcontext.mc_esp = (register_t)(intptr_t)p;
74 ucp->uc_mcontext.mc_eip = (register_t)(intptr_t)_ctx_start;
H A Dmakecontext.c70 intptr_t *argp;
113 ucp->uc_stack.ss_size - sizeof(intptr_t));
121 stack_top = stack_top - (sizeof(intptr_t) * (1 + argc));
123 stack_top = stack_top - (2 * sizeof(intptr_t));
124 argp = (intptr_t *)stack_top;
133 *argp = (intptr_t)_ctx_start; /* overwritten with same value */
135 *argp = (intptr_t)start;
141 *argp = va_arg(ap, intptr_t);
147 *argp = (intptr_t)ucp;
/freebsd-11-stable/sys/kern/
H A Dsystrace_args.c35 uarg[1] = (intptr_t) p->buf; /* void * */
44 uarg[1] = (intptr_t) p->buf; /* const void * */
52 uarg[0] = (intptr_t) p->path; /* char * */
69 uarg[1] = (intptr_t) p->status; /* int * */
71 uarg[3] = (intptr_t) p->rusage; /* struct rusage * */
78 uarg[0] = (intptr_t) p->path; /* char * */
79 uarg[1] = (intptr_t) p->link; /* char * */
86 uarg[0] = (intptr_t) p->path; /* char * */
93 uarg[0] = (intptr_t) p->path; /* char * */
107 uarg[0] = (intptr_t)
[all...]
/freebsd-11-stable/sys/compat/freebsd32/
H A Dfreebsd32_systrace_args.c38 uarg[1] = (intptr_t) p->buf; /* void * */
47 uarg[1] = (intptr_t) p->buf; /* const void * */
55 uarg[0] = (intptr_t) p->path; /* char * */
72 uarg[1] = (intptr_t) p->status; /* int * */
74 uarg[3] = (intptr_t) p->rusage; /* struct rusage32 * */
81 uarg[0] = (intptr_t) p->path; /* char * */
82 uarg[1] = (intptr_t) p->link; /* char * */
89 uarg[0] = (intptr_t) p->path; /* char * */
96 uarg[0] = (intptr_t) p->path; /* char * */
110 uarg[0] = (intptr_t)
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerRandom.h29 intptr_t operator()(intptr_t From, intptr_t To) {
31 intptr_t RangeSize = To - From + 1;
/freebsd-11-stable/sys/sys/
H A Dintr.h109 struct intr_pic *intr_pic_register(device_t, intptr_t);
110 int intr_pic_deregister(device_t, intptr_t);
111 int intr_pic_claim_root(device_t, intptr_t, intr_irq_filter_t *, void *, u_int);
132 u_int intr_map_irq(device_t, intptr_t, struct intr_map_data *);
137 int intr_msi_register(device_t, intptr_t);
138 int intr_alloc_msi(device_t, device_t, intptr_t, int, int, int *);
139 int intr_release_msi(device_t, device_t, intptr_t, int, int *);
140 int intr_map_msi(device_t, device_t, intptr_t, int, uint64_t *, uint32_t *);
141 int intr_alloc_msix(device_t, device_t, intptr_t, int *);
142 int intr_release_msix(device_t, device_t, intptr_t, in
[all...]
/freebsd-11-stable/sys/amd64/linux/
H A Dlinux_systrace_args.c19 uarg[1] = (intptr_t) p->buf; /* char * */
28 uarg[1] = (intptr_t) p->buf; /* char * */
36 uarg[0] = (intptr_t) p->path; /* char * */
52 uarg[0] = (intptr_t) p->path; /* char * */
53 uarg[1] = (intptr_t) p->buf; /* struct l_newstat * */
61 uarg[1] = (intptr_t) p->buf; /* struct l_newstat * */
68 uarg[0] = (intptr_t) p->path; /* char * */
69 uarg[1] = (intptr_t) p->buf; /* struct l_newstat * */
76 uarg[0] = (intptr_t) p->fds; /* struct pollfd * */
106 uarg[0] = (intptr_t)
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_powerpc64.cpp33 const intptr_t Mask = ~(LineSize - 1);
34 const intptr_t StartLine = ((intptr_t)Addr) & Mask;
35 const intptr_t EndLine = ((intptr_t)Addr + Len + LineSize - 1) & Mask;
37 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
41 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/stdlib/
H A Dt_hsearch.c101 e.data = (void *)(intptr_t)i;
107 ATF_REQUIRE_EQ((intptr_t)ep->data, i);
121 ATF_REQUIRE_EQ((intptr_t)ep->data, i);
146 e.data = (void *)(intptr_t) 0;
152 ATF_REQUIRE_EQ((intptr_t)ep->data, 0);
154 e.data = (void *)(intptr_t)12345;
161 ATF_REQUIRE_EQ((intptr_t)ep->data, 0);
202 e.data = (void*)(intptr_t)0;
208 ATF_REQUIRE_EQ((intptr_t)ep->data, 0);
211 e.data = (void*)(intptr_t)
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DPointerIntPair.h48 intptr_t Value = 0;
68 Value = Info::updateInt(Value, static_cast<intptr_t>(IntVal));
77 static_cast<intptr_t>(IntVal));
85 assert(Value == reinterpret_cast<intptr_t>(getPointer()) &&
94 Value = reinterpret_cast<intptr_t>(Val);
153 ~(uintptr_t)(((intptr_t)1 << PtrTraits::NumLowBitsAvailable) - 1),
160 IntMask = (uintptr_t)(((intptr_t)1 << IntBits) - 1),
166 static PointerT getPointer(intptr_t Value) {
171 static intptr_t getInt(intptr_t Valu
[all...]
/freebsd-11-stable/sys/dev/sound/pcm/
H A Dvchan.h63 ((void *)((intptr_t)(((((x) + 1) & 0xfff) << 2) | \
67 #define VCHAN_SYSCTL_UNIT(x) ((int)(((intptr_t)(x) >> 2) & 0xfff) - 1)
68 #define VCHAN_SYSCTL_DIR(x) ((int)((intptr_t)(x) & 0x3) - 1)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DOrcMCJITReplacement.cpp50 (int (*)(int, char **, const char **))(intptr_t)FPtr;
63 int (*PF)(int, char **) = (int (*)(int, char **))(intptr_t)FPtr;
75 int (*PF)(int) = (int (*)(int))(intptr_t)FPtr;
92 rv.IntVal = APInt(BitWidth, ((bool (*)())(intptr_t)FPtr)());
94 rv.IntVal = APInt(BitWidth, ((char (*)())(intptr_t)FPtr)());
96 rv.IntVal = APInt(BitWidth, ((short (*)())(intptr_t)FPtr)());
98 rv.IntVal = APInt(BitWidth, ((int (*)())(intptr_t)FPtr)());
100 rv.IntVal = APInt(BitWidth, ((int64_t (*)())(intptr_t)FPtr)());
106 rv.IntVal = APInt(32, ((int (*)())(intptr_t)FPtr)());
109 rv.FloatVal = ((float (*)())(intptr_t)FPt
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DStack.cpp55 intptr_t StackDiff = (intptr_t)getStackPointer() - (intptr_t)BottomOfStack;
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/types/
H A Dtst.inttypes.d43 printf("sizeof (intptr_t) = %u\n", sizeof (intptr_t));
/freebsd-11-stable/sys/i386/linux/
H A Dlinux_systrace_args.c31 uarg[1] = (intptr_t) p->buf; /* char * */
40 uarg[1] = (intptr_t) p->buf; /* char * */
48 uarg[0] = (intptr_t) p->path; /* char * */
65 uarg[1] = (intptr_t) p->status; /* l_int * */
73 uarg[0] = (intptr_t) p->path; /* char * */
81 uarg[0] = (intptr_t) p->path; /* char * */
82 uarg[1] = (intptr_t) p->to; /* char * */
89 uarg[0] = (intptr_t) p->path; /* char * */
96 uarg[0] = (intptr_t) p->path; /* char * */
97 uarg[1] = (intptr_t)
[all...]
/freebsd-11-stable/sys/compat/cloudabi32/
H A Dcloudabi32_systrace_args.c32 uarg[0] = (intptr_t) p->condvar; /* cloudabi_condvar_t * */
77 uarg[1] = (intptr_t) p->iovs; /* const cloudabi32_iovec_t * */
87 uarg[1] = (intptr_t) p->iovs; /* const cloudabi32_ciovec_t * */
97 uarg[1] = (intptr_t) p->iovs; /* const cloudabi32_iovec_t * */
123 uarg[1] = (intptr_t) p->buf; /* cloudabi_fdstat_t * */
131 uarg[1] = (intptr_t) p->buf; /* const cloudabi_fdstat_t * */
147 uarg[1] = (intptr_t) p->iovs; /* const cloudabi32_ciovec_t * */
175 uarg[1] = (intptr_t) p->path; /* const char * */
185 uarg[1] = (intptr_t) p->path1; /* const char * */
188 uarg[4] = (intptr_t)
[all...]
/freebsd-11-stable/sys/compat/cloudabi64/
H A Dcloudabi64_systrace_args.c32 uarg[0] = (intptr_t) p->condvar; /* cloudabi_condvar_t * */
77 uarg[1] = (intptr_t) p->iovs; /* const cloudabi64_iovec_t * */
87 uarg[1] = (intptr_t) p->iovs; /* const cloudabi64_ciovec_t * */
97 uarg[1] = (intptr_t) p->iovs; /* const cloudabi64_iovec_t * */
123 uarg[1] = (intptr_t) p->buf; /* cloudabi_fdstat_t * */
131 uarg[1] = (intptr_t) p->buf; /* const cloudabi_fdstat_t * */
147 uarg[1] = (intptr_t) p->iovs; /* const cloudabi64_ciovec_t * */
175 uarg[1] = (intptr_t) p->path; /* const char * */
185 uarg[1] = (intptr_t) p->path1; /* const char * */
188 uarg[4] = (intptr_t)
[all...]
/freebsd-11-stable/sys/cddl/compat/opensolaris/sys/
H A Ddnlc.h32 #define DNLC_NO_VNODE ((void *)(intptr_t)0xdeadc0de)
/freebsd-11-stable/sys/amd64/linux32/
H A Dlinux32_systrace_args.c31 uarg[1] = (intptr_t) p->buf; /* char * */
40 uarg[1] = (intptr_t) p->buf; /* char * */
48 uarg[0] = (intptr_t) p->path; /* char * */
65 uarg[1] = (intptr_t) p->status; /* l_int * */
73 uarg[0] = (intptr_t) p->path; /* char * */
81 uarg[0] = (intptr_t) p->path; /* char * */
82 uarg[1] = (intptr_t) p->to; /* char * */
89 uarg[0] = (intptr_t) p->path; /* char * */
96 uarg[0] = (intptr_t) p->path; /* char * */
97 uarg[1] = (intptr_t)
[all...]
/freebsd-11-stable/sys/mips/mips/
H A Dstack_machdep.c45 ((u_register_t *)(intptr_t)sp + (size_t)stack_pos/sizeof(u_register_t));
61 if (pc <= (u_register_t)(intptr_t)btext)
63 for (i = pc; i >= (u_register_t)(intptr_t)btext; i -= sizeof (insn)) {
64 bcopy((void *)(intptr_t)i, &insn, sizeof insn);
93 bcopy((void *)(intptr_t)i, &insn, sizeof insn);
99 if (ra >= (u_register_t)(intptr_t)btext)
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/inline/
H A Dtst.InlineDataAssign.d52 inline intptr_t new_intptr = 0x12345;
/freebsd-11-stable/contrib/gcc/config/i386/
H A Dnetware-crt0.c33 = (void(*)(void))(intptr_t)-1;
37 = (void(*)(void))(intptr_t)-1;
/freebsd-11-stable/sys/dev/extres/hwreset/
H A Dhwreset.h44 pcell_t *cells, intptr_t *id);
52 int hwreset_get_by_id(device_t consumer_dev, device_t provider_dev, intptr_t id,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Passes/
H A DPassPlugin.cpp26 intptr_t getDetailsFn =
27 (intptr_t)Library.SearchForAddressOfSymbol("llvmGetPassPluginInfo");

Completed in 505 milliseconds

1234567891011>>