OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:INT_PTR
(Results
1 - 2
of
2
) sorted by null
/external/clang/test/SemaCXX/
conversion-function.cpp
42
typedef INT*
INT_PTR
;
49
operator
INT_PTR
*(); // expected-error{{conversion function cannot be redeclared}}
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
basetsd.h
47
__MINGW_EXTENSION typedef __int64
INT_PTR
,*PINT_PTR;
53
typedef int
INT_PTR
,*PINT_PTR;
71
static __inline void *LongToHandle(const __LONG32 h) { return((void *) (
INT_PTR
) h); }
76
static __inline int PtrToInt(const void *p) { return((int) (
INT_PTR
) p); }
78
static __inline void *IntToPtr(const int i) { return((void *)(
INT_PTR
)i); }
112
#define PtrToInt(p) ((INT)(
INT_PTR
) (p))
115
#define IntToPtr(i) ((VOID *)(
INT_PTR
)((int)i))
138
#define MAXINT_PTR ((
INT_PTR
)(MAXUINT_PTR >> 1))
Completed in 75 milliseconds