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

123456

/openbsd-current/gnu/llvm/clang/include/clang/AST/
H A DASTDiagnostic.h28 intptr_t Val,
34 ArrayRef<intptr_t> QualTypeVals);
/openbsd-current/gnu/usr.sbin/mkhybrid/src/
H A Dmatch.h16 intptr_t i_ishidden __PR((void));
19 intptr_t j_ishidden __PR((void));
29 intptr_t hfs_ishidden __PR((void));
H A Dmatch.c111 intptr_t i_ishidden()
113 return((intptr_t)i_mat[0]);
157 intptr_t j_ishidden()
159 return((intptr_t)j_mat[0]);
227 intptr_t hfs_ishidden()
229 return((intptr_t)hfs_mat[0]);
/openbsd-current/gnu/llvm/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)
/openbsd-current/gnu/llvm/llvm/include/llvm/ADT/
H A DPointerIntPair.h49 intptr_t Value = 0;
69 Value = Info::updateInt(Value, static_cast<intptr_t>(IntVal));
78 static_cast<intptr_t>(IntVal));
86 assert(Value == reinterpret_cast<intptr_t>(getPointer()) &&
95 Value = reinterpret_cast<intptr_t>(Val);
141 ~(uintptr_t)(((intptr_t)1 << PtrTraits::NumLowBitsAvailable) - 1),
148 IntMask = (uintptr_t)(((intptr_t)1 << IntBits) - 1),
154 static PointerT getPointer(intptr_t Value) {
159 static intptr_t getInt(intptr_t Valu
[all...]
H A DSTLFunctionalExtras.h40 Ret (*callback)(intptr_t callable, Params ...params) = nullptr;
41 intptr_t callable;
44 static Ret callback_fn(intptr_t callable, Params ...params) {
65 callable(reinterpret_cast<intptr_t>(&callable)) {}
H A DEquivalenceClasses.h80 : Leader(this), Next((ECValue*)(intptr_t)1), Data(Elt) {}
96 Next = (const ECValue*)((intptr_t)NewNext | (intptr_t)isLeader());
100 ECValue(const ECValue &RHS) : Leader(this), Next((ECValue*)(intptr_t)1),
106 bool isLeader() const { return (intptr_t)Next & 1; }
110 return (ECValue*)((intptr_t)Next & ~(intptr_t)1);
/openbsd-current/gnu/llvm/clang/lib/Basic/
H A DStack.cpp54 intptr_t StackDiff = (intptr_t)getStackPointer() - (intptr_t)BottomOfStack;
/openbsd-current/gnu/gcc/gcc/config/i386/
H A Dnetware-crt0.c33 = (void(*)(void))(intptr_t)-1;
37 = (void(*)(void))(intptr_t)-1;
/openbsd-current/gnu/llvm/llvm/lib/Passes/
H A DPassPlugin.cpp29 intptr_t getDetailsFn =
30 (intptr_t)Library.getAddressOfSymbol("llvmGetPassPluginInfo");
/openbsd-current/gnu/llvm/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileWrapper.cpp79 OpenAgentFunc = (op_open_agent_ptr_t)(intptr_t)
81 CloseAgentFunc = (op_close_agent_ptr_t)(intptr_t)
83 WriteNativeCodeFunc = (op_write_native_code_ptr_t)(intptr_t)
85 WriteDebugLineInfoFunc = (op_write_debug_line_info_ptr_t)(intptr_t)
87 UnloadNativeCodeFunc = (op_unload_native_code_ptr_t)(intptr_t)
89 MajorVersionFunc = (op_major_version_ptr_t)(intptr_t)
91 MinorVersionFunc = (op_major_version_ptr_t)(intptr_t)
/openbsd-current/gnu/llvm/compiler-rt/lib/profile/
H A DInstrProfilingBuffer.c56 intptr_t BeginI = (intptr_t)Begin, EndI = (intptr_t)End;
75 intptr_t BeginI = (intptr_t)Begin, EndI = (intptr_t)End;
/openbsd-current/gnu/llvm/llvm/include/llvm/Transforms/Scalar/
H A DSROA.h61 explicit operator intptr_t() const { return static_cast<intptr_t>(Storage); }
62 explicit SelectHandSpeculativity(intptr_t Storage_) : Storage(Storage_) {}
/openbsd-current/gnu/llvm/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_test.cpp36 __tsan_func_entry((void*)((intptr_t)&run_tests + 1));
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dpr15296.c6 typedef int __attribute__ ((mode (__pointer__))) intptr_t; typedef
7 typedef intptr_t W;
/openbsd-current/usr.sbin/npppd/l2tp/
H A Dl2tp_subr.h86 return ((intptr_t)m - (intptr_t)n);
/openbsd-current/gnu/llvm/libunwind/src/
H A DUnwindLevel1-gcc-ext.c44 (void *)exception_object, (intptr_t)exception_object->PRIVATE_1);
122 __unw_set_reg(&cursor, UNW_REG_IP, (unw_word_t)(intptr_t)pc);
124 return (void *)(intptr_t) info.start_ip;
221 __unw_set_reg(&cursor, UNW_REG_IP, (unw_word_t)(intptr_t)pc);
227 (void *)(intptr_t) info.unwind_info);
228 return (void *)(intptr_t) info.unwind_info;
/openbsd-current/gnu/llvm/llvm/lib/Support/Unix/
H A DMemory.inc229 const intptr_t Mask = ~(LineSize - 1);
230 const intptr_t StartLine = ((intptr_t)Addr) & Mask;
231 const intptr_t EndLine = ((intptr_t)Addr + Len + LineSize - 1) & Mask;
233 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
237 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
/openbsd-current/gnu/llvm/lldb/source/Host/windows/
H A DPipeWindows.cpp48 m_read_fd = _open_osfhandle((intptr_t)read, _O_RDONLY);
55 m_write_fd = _open_osfhandle((intptr_t)write, _O_WRONLY);
74 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY);
78 m_write_fd = _open_osfhandle((intptr_t)m_write, _O_WRONLY);
116 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY);
192 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY);
202 m_write_fd = _open_osfhandle((intptr_t)m_write, _O_WRONLY);
/openbsd-current/gnu/llvm/lldb/include/lldb/Target/
H A DStatistics.h101 intptr_t identifier;
111 std::vector<intptr_t> symfile_modules;
154 std::vector<intptr_t> m_module_identifiers;
/openbsd-current/gnu/llvm/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp537 (int(*)(int, char **, const char **))(intptr_t)FPtr;
550 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr;
563 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr;
579 rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
581 rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
583 rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
585 rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
587 rv.IntVal = APInt(BitWidth, ((int64_t(*)())(intptr_t)FPtr)());
593 rv.IntVal = APInt(32, ((int(*)())(intptr_t)FPtr)());
596 rv.FloatVal = ((float(*)())(intptr_t)FPt
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Support/
H A DFoldingSet.cpp59 if (!((intptr_t)Base & 3)) {
149 if (reinterpret_cast<intptr_t>(NextInBucketPtr) & 1)
158 intptr_t Ptr = reinterpret_cast<intptr_t>(NextInBucketPtr);
160 return reinterpret_cast<void**>(Ptr & ~intptr_t(1));
325 Next = reinterpret_cast<void*>(reinterpret_cast<intptr_t>(Bucket)|1);
/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DChrootChecker.cpp32 bool isRootChanged(intptr_t k) { return k == ROOT_CHANGED; }
33 //bool isJailEntered(intptr_t k) { return k == JAIL_ENTERED; }
125 if (isRootChanged((intptr_t) *k))
/openbsd-current/gnu/llvm/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp255 return (void*)(intptr_t)gv.IntVal.getZExtValue();
310 std::cout << "Add1 returned " << intptr_t(returnValue) << std::endl;
317 std::cout << "Fib1 returned " << intptr_t(returnValue) << std::endl;
324 std::cout << "Fib2 returned " << intptr_t(returnValue) << std::endl;
/openbsd-current/gnu/llvm/compiler-rt/include/sanitizer/
H A Dhwasan_interface.h74 intptr_t __hwasan_test_shadow(const volatile void *x, size_t size);

Completed in 213 milliseconds

123456