HomeSort by relevance Sort by last modified time
    Searched refs:intptr_t (Results 1 - 25 of 1245) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
static-init.c 3 typedef __typeof((int*) 0 - (int*) 0) intptr_t; typedef
8 float r = (float) (intptr_t) &r; // expected-error {{initializer element is not a compile-time constant}}
9 intptr_t s = (intptr_t) &s;
22 struct foo x = {(intptr_t) u}; // expected-error {{initializer element is not a compile-time constant}}
24 intptr_t z = (intptr_t) u; // no-error
  /external/clang/test/CodeGen/
2008-12-23-AsmIntPointerTie.c 4 typedef long intptr_t; typedef
6 intptr_t a;
  /external/libchrome/sandbox/linux/seccomp-bpf/
syscall.cc 270 intptr_t SyscallAsm(intptr_t nr, const intptr_t args[6]);
274 intptr_t SyscallAsm(intptr_t nr, const intptr_t args[8]);
280 intptr_t Syscall::InvalidCall() {
285 intptr_t Syscall::Call(int nr,
286 intptr_t p0,
287 intptr_t p1
    [all...]
syscall.h 26 static intptr_t InvalidCall();
48 static inline intptr_t
51 (intptr_t)p0,
52 (intptr_t)p1,
53 (intptr_t)p2,
54 (intptr_t)p3,
55 (intptr_t)p4,
56 (intptr_t)p5,
57 (intptr_t)p6,
58 (intptr_t)p7)
    [all...]
  /external/clang/test/CodeGenCXX/
vla-lambda-capturing.cpp 8 typedef __INTPTR_TYPE__ intptr_t; typedef
10 // CHECK-DAG: [[CAP_TYPE1:%.+]] = type { [[INTPTR_T:i.+]], [[INTPTR_T]]*, [[INTPTR_T]]* }
11 // CHECK-DAG: [[CAP_TYPE2:%.+]] = type { [[INTPTR_T]], [[INTPTR_T]]* }
12 // CHECK-DAG: [[CAP_TYPE3:%.+]] = type { [[INTPTR_T]]*, [[INTPTR_T]], [[INTPTR_T]], [[INTPTR_T]]*, [[INTPTR_T]]*
    [all...]
  /toolchain/binutils/binutils-2.25/gold/testsuite/
script_test_1.cc 36 assert(reinterpret_cast<intptr_t>(&a) == 123);
37 assert(reinterpret_cast<intptr_t>(&b) == reinterpret_cast<intptr_t>(&a) * 2);
38 assert(reinterpret_cast<intptr_t>(&c)
39 == reinterpret_cast<intptr_t>(&b) + 3 * 6);
40 assert(reinterpret_cast<intptr_t>(&d)
41 == (reinterpret_cast<intptr_t>(&b) + 3) * 6);
43 assert(reinterpret_cast<intptr_t>(&f)
44 == reinterpret_cast<intptr_t>(&sym) + 10);
  /system/nfc/halimpl/pn54x/tml/
phDal4Nfc_messageQueueLib.h 27 intptr_t phDal4Nfc_msgget(key_t key, int msgflg);
28 void phDal4Nfc_msgrelease(intptr_t msqid);
29 int phDal4Nfc_msgctl(intptr_t msqid, int cmd, void* buf);
30 intptr_t phDal4Nfc_msgsnd(intptr_t msqid, phLibNfc_Message_t* msg, int msgflg);
31 int phDal4Nfc_msgrcv(intptr_t msqid, phLibNfc_Message_t* msg, long msgtyp,
  /external/clang/test/Analysis/
complex.c 9 if (!p && __imag__ (intptr_t) p)
13 if (__real__ (intptr_t) p)
stackaddrleak.c 4 typedef __INTPTR_TYPE__ intptr_t; typedef
38 intptr_t returnAsNonLoc() {
40 return (intptr_t)&x; // expected-warning{{Address of stack memory associated with local variable 'x' returned to caller}}
49 extern intptr_t ip;
51 ip = (intptr_t)&x;
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_capture_types.h 22 // - On Windows: HWND cast to intptr_t.
23 // - On Linux (with X11): X11 Window (unsigned long) type cast to intptr_t.
25 typedef intptr_t WindowId;
31 // - On OSX: CGDirectDisplayID cast to intptr_t.
33 typedef intptr_t ScreenId;
  /external/bison/lib/
msvc-nothrow.c 32 intptr_t
35 intptr_t result;
43 result = (intptr_t) INVALID_HANDLE_VALUE;
msvc-nothrow.h 36 extern intptr_t _gl_nothrow_get_osfhandle (int fd);
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMJITInfo.h 31 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>::const_iterator I = PCLabelMap.find(Id)
    [all...]
ARMJITInfo.cpp 116 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)emitGlobalValueIndirectSym((GlobalValue*)F, Fn, JCE)
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
rotate_gcc.cc 103 : "r"((intptr_t)(src_stride)), // %3
104 "r"((intptr_t)(dst_stride)) // %4
243 : "r"((intptr_t)(src_stride)), // %3
244 "r"((intptr_t)(dst_stride)) // %4
354 : "r"((intptr_t)(src_stride)), // %4
355 "r"((intptr_t)(dst_stride_a)), // %5
356 "r"((intptr_t)(dst_stride_b)) // %6
  /external/libyuv/files/source/
rotate_gcc.cc 106 : "r"((intptr_t)(src_stride)), // %3
107 "r"((intptr_t)(dst_stride)) // %4
248 : "r"((intptr_t)(src_stride)), // %3
249 "r"((intptr_t)(dst_stride)) // %4
362 : "r"((intptr_t)(src_stride)), // %4
363 "r"((intptr_t)(dst_stride_a)), // %5
364 "r"((intptr_t)(dst_stride_b)) // %6
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/MCJIT/
Intercept.cpp 64 sys::DynamicLibrary::AddSymbol("stat", (void*)(intptr_t)stat);
65 sys::DynamicLibrary::AddSymbol("fstat", (void*)(intptr_t)fstat);
66 sys::DynamicLibrary::AddSymbol("lstat", (void*)(intptr_t)lstat);
67 sys::DynamicLibrary::AddSymbol("stat64", (void*)(intptr_t)stat64);
68 sys::DynamicLibrary::AddSymbol("\x1stat64", (void*)(intptr_t)stat64);
69 sys::DynamicLibrary::AddSymbol("\x1open64", (void*)(intptr_t)open64);
70 sys::DynamicLibrary::AddSymbol("\x1lseek64", (void*)(intptr_t)lseek64);
71 sys::DynamicLibrary::AddSymbol("fstat64", (void*)(intptr_t)fstat64);
72 sys::DynamicLibrary::AddSymbol("lstat64", (void*)(intptr_t)lstat64);
73 sys::DynamicLibrary::AddSymbol("atexit", (void*)(intptr_t)atexit)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
process.h 60 _CRTIMP intptr_t __cdecl _cwait(int *_TermStat,intptr_t _ProcHandle,int _Action);
61 _CRTIMP intptr_t __cdecl _execl(const char *_Filename,const char *_ArgList,...);
62 _CRTIMP intptr_t __cdecl _execle(const char *_Filename,const char *_ArgList,...);
63 _CRTIMP intptr_t __cdecl _execlp(const char *_Filename,const char *_ArgList,...);
64 _CRTIMP intptr_t __cdecl _execlpe(const char *_Filename,const char *_ArgList,...);
65 _CRTIMP intptr_t __cdecl _execv(const char *_Filename,const char *const *_ArgList);
66 _CRTIMP intptr_t __cdecl _execve(const char *_Filename,const char *const *_ArgList,const char *const *_Env);
67 _CRTIMP intptr_t __cdecl _execvp(const char *_Filename,const char *const *_ArgList);
68 _CRTIMP intptr_t __cdecl _execvpe(const char *_Filename,const char *const *_ArgList,const char *const *_Env)
    [all...]
  /external/clang/test/OpenMP/
parallel_proc_bind_codegen.cpp 8 typedef __INTPTR_TYPE__ intptr_t; typedef
17 intptr_t a, b, c;
18 S(intptr_t a) : a(a) {}
  /external/libvpx/libvpx/vpx_dsp/
vpx_filter.h 32 return (const InterpKernel *)(((intptr_t)filter) & ~((intptr_t)0xFF));
37 return (int)((const InterpKernel *)(intptr_t)f - base);
  /prebuilts/clang/host/linux-x86/clang-3859424/prebuilt_include/llvm/lib/Fuzzer/
FuzzerRandom.h 24 intptr_t operator()(intptr_t From, intptr_t To) {
26 intptr_t RangeSize = To - From + 1;
  /system/extras/tests/pftest/
pftest.c 48 intptr_t *p;
53 mem = (char *) ((intptr_t) (mem + 4096) & ~0xfff);
76 *(intptr_t *) (mem + 4096 * pageIdx + entryOffset) =
77 (intptr_t) (mem + 4096 * nextPageIdx + nextEntryOffset);
80 *(intptr_t *) (mem + 4096 * pageIdx + entryOffset) =
81 (intptr_t) &mem[0];
89 p = (intptr_t *) &mem[0];
93 p = (intptr_t *) *p;
99 p = (intptr_t *) *p;
  /external/swiftshader/third_party/LLVM/lib/Target/Mips/
MipsJITInfo.cpp 119 extern "C" void MipsCompilationCallbackC(intptr_t StubAddr) {
121 intptr_t NewVal = (intptr_t) JITCompilerFunction((void*) StubAddr);
136 *(intptr_t *)(StubAddr) = 0xf << 26 | 25 << 16 | Hi;
137 *(intptr_t *)(StubAddr + 4) = 9 << 26 | 25 << 21 | 25 << 16 | Lo;
138 *(intptr_t *)(StubAddr + 8) = 25 << 21 | 8;
139 *(intptr_t *)(StubAddr + 12) = 0;
164 intptr_t EmittedAddr;
165 if (Fn != (void*)(intptr_t)MipsCompilationCallback)
166 EmittedAddr = (intptr_t)Fn
    [all...]
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
Intercept.cpp 64 sys::DynamicLibrary::AddSymbol("stat", (void*)(intptr_t)stat);
65 sys::DynamicLibrary::AddSymbol("fstat", (void*)(intptr_t)fstat);
66 sys::DynamicLibrary::AddSymbol("lstat", (void*)(intptr_t)lstat);
67 sys::DynamicLibrary::AddSymbol("stat64", (void*)(intptr_t)stat64);
68 sys::DynamicLibrary::AddSymbol("fstat64", (void*)(intptr_t)fstat64);
69 sys::DynamicLibrary::AddSymbol("lstat64", (void*)(intptr_t)lstat64);
70 sys::DynamicLibrary::AddSymbol("atexit", (void*)(intptr_t)atexit);
71 sys::DynamicLibrary::AddSymbol("mknod", (void*)(intptr_t)mknod);
104 // we cast to intptr_t here to silence a -pedantic warning that complains
106 if (Name == "exit") return (void*)(intptr_t)&jit_exit
    [all...]
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderUtils.h 39 intptr_t getValue() {return mValue;}
43 void setValue(intptr_t value) {mValue = value;}
52 Encode_Status MappingSurfaceID(intptr_t value);
53 Encode_Status MappingGfxHandle(intptr_t value);
54 Encode_Status MappingKbufHandle(intptr_t value);
55 Encode_Status MappingMallocPTR(intptr_t value);
56 VASurfaceID CreateSurfaceFromExternalBuf(intptr_t value, ValueInfo& vinfo);
60 intptr_t mValue;

Completed in 3926 milliseconds

1 2 3 4 5 6 7 8 91011>>