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

1234567891011>>

/freebsd-10.3-release/lib/libkse/arch/arm/include/
H A Datomic_ops.h39 * void atomic_swap32(intptr_t *dst, intptr_t val, intptr_t *res);
42 atomic_swap32(volatile intptr_t *dst, intptr_t val, intptr_t *res)
48 atomic_swap32((volatile intptr_t *)d, (intptr_t)v, (intptr_t *)r)
51 atomic_swap32((volatile intptr_t *)
[all...]
/freebsd-10.3-release/lib/libkse/arch/i386/include/
H A Datomic_ops.h36 * void atomic_swap32(intptr_t *dst, intptr_t val, intptr_t *res);
39 atomic_swap32(volatile intptr_t *dst, intptr_t val, intptr_t *res)
47 atomic_swap32((volatile intptr_t *)d, (intptr_t)v, (intptr_t *)r)
50 atomic_swap32((volatile intptr_t *)
[all...]
/freebsd-10.3-release/lib/libkse/arch/powerpc/include/
H A Datomic_ops.h37 * void atomic_swap32(intptr_t *dst, intptr_t val, intptr_t *res);
40 atomic_swap32(volatile intptr_t *dst, intptr_t val, intptr_t *res)
58 atomic_swap32((volatile intptr_t *)d, (intptr_t)v, (intptr_t *)r)
61 atomic_swap32((volatile intptr_t *)
[all...]
/freebsd-10.3-release/lib/libkse/arch/amd64/include/
H A Datomic_ops.h36 * void atomic_swap64(intptr_t *dst, intptr_t val, intptr_t *res);
39 atomic_swap64(volatile intptr_t *dst, intptr_t val, intptr_t *res)
55 atomic_swap64((volatile intptr_t *)(d), (intptr_t)(v), (intptr_t *)(r))
/freebsd-10.3-release/sys/contrib/ia64/libuwx/src/
H A Duwx_step.h28 extern int uwx_lookupip_hook(int request, uint64_t ip, intptr_t tok,
/freebsd-10.3-release/contrib/llvm/lib/Target/ARM/
H A DARMJITInfo.cpp116 extern "C" void ARMCompilationCallbackC(intptr_t StubAddr) {
118 intptr_t NewVal = (intptr_t)JITCompilerFunction((void*)StubAddr);
128 *(intptr_t *)StubAddr = 0xe51ff004; // ldr pc, [pc, #-4]
129 *(intptr_t *)(StubAddr+4) = NewVal;
145 MachineCodeEmitter::emitWordLEInto(Cur, (intptr_t)Ptr);
148 addIndirectSymAddr(Ptr, (intptr_t)PtrAddr);
164 if (Fn != (void*)(intptr_t)ARMCompilationCallback) {
168 intptr_t LazyPtr = getIndirectSymAddr(Fn);
171 LazyPtr= (intptr_t)emitGlobalValueIndirectSy
[all...]
H A DARMJITInfo.h31 SmallVector<intptr_t, 16> ConstPoolId2AddrMap;
35 SmallVector<intptr_t, 16> JumpTableId2AddrMap;
38 DenseMap<unsigned, intptr_t> PCLabelMap;
42 DenseMap<void*, intptr_t> Sym2IndirectSymMap;
116 intptr_t getConstantPoolEntryAddr(unsigned CPI) const {
124 void addConstantPoolEntryAddr(unsigned CPI, intptr_t Addr) {
132 intptr_t getJumpTableBaseAddr(unsigned JTI) const {
141 void addJumpTableBaseAddr(unsigned JTI, intptr_t Addr) {
148 intptr_t getPCLabelAddr(unsigned Id) const {
149 DenseMap<unsigned, intptr_t>
[all...]
/freebsd-10.3-release/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-10.3-release/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-10.3-release/contrib/llvm/lib/Target/Mips/
H A DMipsJITInfo.cpp30 unsigned NewAddr = (intptr_t)New;
31 unsigned OldAddr = (intptr_t)Old;
164 extern "C" void MipsCompilationCallbackC(intptr_t StubAddr) {
166 intptr_t NewVal = (intptr_t) JITCompilerFunction((void*) StubAddr);
181 *(intptr_t *)(StubAddr) = 0xf << 26 | 25 << 16 | Hi;
182 *(intptr_t *)(StubAddr + 4) = 9 << 26 | 25 << 21 | 25 << 16 | Lo;
183 *(intptr_t *)(StubAddr + 8) = 25 << 21 | 8;
184 *(intptr_t *)(StubAddr + 12) = 0;
209 intptr_t EmittedAdd
[all...]
/freebsd-10.3-release/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-10.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DASTDiagnostic.h38 intptr_t Val,
47 ArrayRef<intptr_t> QualTypeVals);
/freebsd-10.3-release/contrib/libpcap/
H A Dpcap-stdinc.h81 typedef __int64 intptr_t; typedef
83 typedef _W64 int intptr_t; typedef
/freebsd-10.3-release/contrib/llvm/lib/Target/X86/
H A DX86JITInfo.cpp38 unsigned NewAddr = (intptr_t)New;
39 unsigned OldAddr = (intptr_t)OldWord;
303 void LLVMX86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr);
343 LLVM_LIBRARY_VISIBILITY void LLVMX86CompilationCallback2(intptr_t *StackPtr,
344 intptr_t RetAddr) {
345 intptr_t *RetAddrLoc = &StackPtr[1];
377 intptr_t NewVal = (intptr_t)JITCompilerFunction((void*)RetAddr);
386 *(intptr_t *)RetAdd
[all...]
/freebsd-10.3-release/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-10.3-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCJITInfo.cpp50 intptr_t Offset = ((intptr_t)To - (intptr_t)At) >> 2;
51 unsigned *AtI = (unsigned*)(intptr_t)At;
311 intptr_t Offset = ((intptr_t)Target - (intptr_t)OrigCallAddr) >> 2;
334 EmitBranchToAt((intptr_t)StubCallAddr, (intptr_t)Target, false, is64Bit);
370 if (Fn != (void*)(intptr_t)PPC32CompilationCallbac
[all...]
/freebsd-10.3-release/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-10.3-release/sys/powerpc/wii/
H A Dwii_ipcreg.h66 intptr_t pathname;
70 intptr_t data;
79 intptr_t ibuf;
81 intptr_t obuf;
88 intptr_t iovec;
/freebsd-10.3-release/contrib/netbsd-tests/lib/libc/stdlib/
H A Dt_hsearch.c102 e.data = (void *)(intptr_t)i;
108 ATF_REQUIRE_EQ((intptr_t)ep->data, i);
122 ATF_REQUIRE_EQ((intptr_t)ep->data, i);
144 e.data = (void *)(intptr_t) 0;
150 ATF_REQUIRE_EQ((intptr_t)ep->data, 0);
152 e.data = (void *)(intptr_t)12345;
159 ATF_REQUIRE_EQ((intptr_t)ep->data, 0);
200 e.data = (void*)(intptr_t)0;
206 ATF_REQUIRE_EQ((intptr_t)ep->data, 0);
209 e.data = (void*)(intptr_t)
[all...]
/freebsd-10.3-release/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-10.3-release/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-10.3-release/lib/libc/ia64/gen/
H A Dsignalcontext.c50 if (((intptr_t)bsp & 0x1ff) == 0x1f8)
97 args[1] = (intptr_t)sig_si;
98 args[2] = (intptr_t)sig_uc;
105 bsp = spill(bsp, (intptr_t)ucp);
106 bsp = spill(bsp, (intptr_t)func);
107 bsp = spill(bsp, (intptr_t)args);
115 ucp->uc_mcontext.mc_special.sp = (intptr_t)args - 16;
116 ucp->uc_mcontext.mc_special.bspstore = (intptr_t)bsp;
/freebsd-10.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/types/
H A Dtst.inttypes.d43 printf("sizeof (intptr_t) = %u\n", sizeof (intptr_t));
/freebsd-10.3-release/contrib/llvm/lib/Target/Sparc/
H A DSparcJITInfo.cpp123 static void emitInstrForIndirectJump(intptr_t Addr,
187 extern "C" void *SparcCompilationCallbackC(intptr_t StubAddr) {
189 intptr_t NewVal = (intptr_t) JITCompilerFunction((void*) StubAddr);
196 intptr_t diff = (NewVal - StubAddr) >> 2;
233 intptr_t CurrentAddr = (intptr_t)Addr;
234 intptr_t EmittedAddr;
236 if (Fn != (void*)(intptr_t)SparcCompilationCallback) {
237 EmittedAddr = (intptr_t)F
[all...]

Completed in 258 milliseconds

1234567891011>>