HomeSort by relevance Sort by last modified time
    Searched refs:intptr_t (Results 76 - 100 of 409) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/clang/test/Parser/
recovery.c 84 typedef int intptr_t; // expected-note {{'intptr_t' declared here}}
85 void bar(intptr y); // expected-error {{unknown type name 'intptr'; did you mean 'intptr_t'?}}
  /external/clang/test/Sema/
i-c-e.c 62 char pbcp[__builtin_constant_p(4) ? (intptr_t)&expr : 0]; // expected-error {{variable length array declaration not allowed at file scope}}
  /external/llvm/lib/ExecutionEngine/JIT/
JITDwarfEmitter.h 43 void EmitFrameMoves(intptr_t BaseLabelPtr,
JIT.cpp 411 (int(*)(int, char **, const char **))(intptr_t)FPtr;
424 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr;
437 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr;
453 rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
455 rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
457 rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
459 rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
461 rv.IntVal = APInt(BitWidth, ((int64_t(*)())(intptr_t)FPtr)());
467 rv.IntVal = APInt(32, ((int(*)())(intptr_t)FPtr)());
470 rv.FloatVal = ((float(*)())(intptr_t)FPtr)()
    [all...]
  /external/webkit/Source/JavaScriptCore/heap/
ConservativeRoots.cpp 33 return !((intptr_t)(p) & (sizeof(char*) - 1));
  /external/webkit/Source/JavaScriptCore/interpreter/
CallFrame.h 138 bool hasHostCallFrameFlag() const { return reinterpret_cast<intptr_t>(this) & HostCallFrameFlag; }
139 CallFrame* addHostCallFrameFlag() const { return reinterpret_cast<CallFrame*>(reinterpret_cast<intptr_t>(this) | HostCallFrameFlag); }
140 CallFrame* removeHostCallFrameFlag() { return reinterpret_cast<CallFrame*>(reinterpret_cast<intptr_t>(this) & ~HostCallFrameFlag); }
148 static const intptr_t HostCallFrameFlag = 1;
  /external/webkit/Source/JavaScriptCore/runtime/
StructureTransitionTable.h 41 static const intptr_t UsingSingleSlotFlag = 1;
133 m_data = reinterpret_cast<intptr_t>(map);
162 m_data = reinterpret_cast<intptr_t>(slot) | UsingSingleSlotFlag;
168 intptr_t m_data;
  /external/webkit/Source/JavaScriptCore/wtf/
PageBlock.h 32 inline bool isPageAligned(void* address) { return !(reinterpret_cast<intptr_t>(address) & (pageSize() - 1)); }
  /bionic/libc/include/
termios.h 61 return ioctl(fd, TCXONC, (void *)(intptr_t)action);
66 return ioctl(fd, TCFLSH, (void *)(intptr_t)__queue);
  /development/ndk/platforms/android-3/include/
termios.h 61 return ioctl(fd, TCXONC, (void *)(intptr_t)action);
66 return ioctl(fd, TCFLSH, (void *)(intptr_t)__queue);
  /external/clang/test/CodeGen/
const-init.c 14 intptr_t b = a; // expected-warning {{incompatible pointer to integer conversion}}
17 intptr_t e = c; // expected-warning {{incompatible pointer to integer conversion}}
  /frameworks/compile/libbcc/lib/CodeGen/
CodeMemoryManager.h 187 virtual uint8_t *allocateSpace(intptr_t Size, unsigned Alignment);
227 intptr_t getFreeCodeMemSize() const {
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
termios.h 61 return ioctl(fd, TCXONC, (void *)(intptr_t)action);
66 return ioctl(fd, TCFLSH, (void *)(intptr_t)__queue);
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
termios.h 61 return ioctl(fd, TCXONC, (void *)(intptr_t)action);
66 return ioctl(fd, TCFLSH, (void *)(intptr_t)__queue);
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
termios.h 61 return ioctl(fd, TCXONC, (void *)(intptr_t)action);
66 return ioctl(fd, TCFLSH, (void *)(intptr_t)__queue);
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
termios.h 61 return ioctl(fd, TCXONC, (void *)(intptr_t)action);
66 return ioctl(fd, TCFLSH, (void *)(intptr_t)__queue);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/
termios.h 61 return ioctl(fd, TCXONC, (void *)(intptr_t)action);
66 return ioctl(fd, TCFLSH, (void *)(intptr_t)__queue);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
termios.h 61 return ioctl(fd, TCXONC, (void *)(intptr_t)action);
66 return ioctl(fd, TCFLSH, (void *)(intptr_t)__queue);
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/
termios.h 61 return ioctl(fd, TCXONC, (void *)(intptr_t)action);
66 return ioctl(fd, TCFLSH, (void *)(intptr_t)__queue);
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/
termios.h 61 return ioctl(fd, TCXONC, (void *)(intptr_t)action);
66 return ioctl(fd, TCFLSH, (void *)(intptr_t)__queue);
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/
termios.h 61 return ioctl(fd, TCXONC, (void *)(intptr_t)action);
66 return ioctl(fd, TCFLSH, (void *)(intptr_t)__queue);
  /external/harfbuzz/contrib/
harfbuzz-unicode.c 67 const uint32_t key = (uint32_t) (intptr_t) vkey;
81 const void *vprop = bsearch((void *) (intptr_t) cp, script_properties,
205 const uint32_t key = (uint32_t) (intptr_t) vkey;
219 const void *vprop = bsearch((void *) (intptr_t) ch, grapheme_break_properties,
249 const uint32_t key = (uint32_t) (intptr_t) vkey;
263 const void *mprop = bsearch((void *) (intptr_t) ch, mirroring_properties,
  /external/llvm/lib/Target/X86/
X86CodeEmitter.cpp 50 intptr_t PICBaseOffset;
82 intptr_t Disp = 0, intptr_t PCAdj = 0,
85 void emitConstPoolAddress(unsigned CPI, unsigned Reloc, intptr_t Disp = 0,
86 intptr_t PCAdj = 0);
88 intptr_t PCAdj = 0);
91 intptr_t Adj = 0, bool IsPCRel = true);
100 intptr_t PCAdj = 0);
262 intptr_t Disp /* = 0 */,
263 intptr_t PCAdj /* = 0 */
    [all...]
  /external/v8/src/
globals.h 199 const int kIntptrSize = sizeof(intptr_t); // NOLINT
204 const intptr_t kIntptrSignBit = V8_INT64_C(0x8000000000000000);
208 const intptr_t kIntptrSignBit = 0x80000000;
244 (reinterpret_cast<intptr_t>(&(reinterpret_cast<type*>(4)->field)) - 4)
264 (reinterpret_cast<v8::internal::Address>(reinterpret_cast<intptr_t>(f)))
271 return reinterpret_cast<F>(reinterpret_cast<intptr_t>(addr));
  /external/webkit/Source/WebKit/mac/WebView/
WebScriptDebugger.mm 144 void WebScriptDebugger::callEvent(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber)
163 void WebScriptDebugger::atStatement(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber)
182 void WebScriptDebugger::returnEvent(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber)
204 void WebScriptDebugger::exception(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineNumber, bool hasHandler)
226 void WebScriptDebugger::willExecuteProgram(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineno)
231 void WebScriptDebugger::didExecuteProgram(const DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, int lineno)
236 void WebScriptDebugger::didReachBreakpoint(const DebuggerCallFrame&, intptr_t, int)

Completed in 154 milliseconds

1 2 34 5 6 7 8 91011>>