/prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/ |
CommentVisitor.h | 22 template<template <typename> class Ptr, typename ImplClass, typename RetTy=void> 25 #define PTR(CLASS) typename Ptr<CLASS>::type 27 return static_cast<ImplClass*>(this)->visit ## NAME(static_cast<PTR(CLASS)>(C)) 29 RetTy visit(PTR(Comment) C) { 48 RetTy visit ## CLASS(PTR(CLASS) C) { DISPATCH(PARENT, PARENT); } 53 RetTy visitComment(PTR(Comment) C) { return RetTy(); } 55 #undef PTR
|
DeclVisitor.h | 30 template<template <typename> class Ptr, typename ImplClass, typename RetTy=void> 34 #define PTR(CLASS) typename Ptr<CLASS>::type 36 return static_cast<ImplClass*>(this)->Visit##NAME(static_cast<PTR(CLASS)>(D)) 38 RetTy Visit(PTR(Decl) D) { 51 RetTy Visit##DERIVED##Decl(PTR(DERIVED##Decl) D) { DISPATCH(BASE, BASE); } 54 RetTy VisitDecl(PTR(Decl) D) { return RetTy(); } 56 #undef PTR
|
StmtVisitor.h | 32 template<template <typename> class Ptr, typename ImplClass, typename RetTy=void> 36 #define PTR(CLASS) typename Ptr<CLASS>::type 38 return static_cast<ImplClass*>(this)->Visit ## NAME(static_cast<PTR(CLASS)>(S)) 40 RetTy Visit(PTR(Stmt) S) { 45 if (PTR(BinaryOperator) BinOp = dyn_cast<BinaryOperator>(S)) { 82 } else if (PTR(UnaryOperator) UnOp = dyn_cast<UnaryOperator>(S)) { 114 RetTy Visit ## CLASS(PTR(CLASS) S) { DISPATCH(PARENT, PARENT); } 120 RetTy VisitBin ## NAME(PTR(BinaryOperator) S) { \ 140 RetTy VisitBin ## NAME(PTR(CompoundAssignOperator) S) { [all...] |
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/ |
CommentVisitor.h | 22 template<template <typename> class Ptr, typename ImplClass, typename RetTy=void> 25 #define PTR(CLASS) typename Ptr<CLASS>::type 27 return static_cast<ImplClass*>(this)->visit ## NAME(static_cast<PTR(CLASS)>(C)) 29 RetTy visit(PTR(Comment) C) { 48 RetTy visit ## CLASS(PTR(CLASS) C) { DISPATCH(PARENT, PARENT); } 53 RetTy visitComment(PTR(Comment) C) { return RetTy(); } 55 #undef PTR
|
DeclVisitor.h | 30 template<template <typename> class Ptr, typename ImplClass, typename RetTy=void> 34 #define PTR(CLASS) typename Ptr<CLASS>::type 36 return static_cast<ImplClass*>(this)->Visit##NAME(static_cast<PTR(CLASS)>(D)) 38 RetTy Visit(PTR(Decl) D) { 51 RetTy Visit##DERIVED##Decl(PTR(DERIVED##Decl) D) { DISPATCH(BASE, BASE); } 54 RetTy VisitDecl(PTR(Decl) D) { return RetTy(); } 56 #undef PTR
|
StmtVisitor.h | 32 template<template <typename> class Ptr, typename ImplClass, typename RetTy=void> 36 #define PTR(CLASS) typename Ptr<CLASS>::type 38 return static_cast<ImplClass*>(this)->Visit ## NAME(static_cast<PTR(CLASS)>(S)) 40 RetTy Visit(PTR(Stmt) S) { 45 if (PTR(BinaryOperator) BinOp = dyn_cast<BinaryOperator>(S)) { 82 } else if (PTR(UnaryOperator) UnOp = dyn_cast<UnaryOperator>(S)) { 114 RetTy Visit ## CLASS(PTR(CLASS) S) { DISPATCH(PARENT, PARENT); } 120 RetTy VisitBin ## NAME(PTR(BinaryOperator) S) { \ 140 RetTy VisitBin ## NAME(PTR(CompoundAssignOperator) S) { [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/ |
EfiZeroMem.c | 63 mov BYTE PTR [edi], 0
89 movq QWORD PTR ds:[edi], mm0
90 movq QWORD PTR ds:[edi+8], mm0
91 movq QWORD PTR ds:[edi+16], mm0
92 movq QWORD PTR ds:[edi+24], mm0
93 movq QWORD PTR ds:[edi+32], mm0
94 movq QWORD PTR ds:[edi+40], mm0
95 movq QWORD PTR ds:[edi+48], mm0
96 movq QWORD PTR ds:[edi+56], mm0
|
EfiCopyMem.c | 87 mov al, BYTE PTR [esi] ; get byte from Source
88 mov BYTE PTR [edi], al ; write byte to Destination
111 movq mm0, QWORD PTR ds:[esi]
112 movq QWORD PTR ds:[edi], mm0
113 movq mm0, QWORD PTR ds:[esi+8]
114 movq QWORD PTR ds:[edi+8], mm0
115 movq mm0, QWORD PTR ds:[esi+16]
116 movq QWORD PTR ds:[edi+16], mm0
117 movq mm0, QWORD PTR ds:[esi+24]
118 movq QWORD PTR ds:[edi+24], mm0 [all...] |
EfiCopyMemSSE2.c | 84 mov al, BYTE PTR [esi] ; get byte from Source
85 mov BYTE PTR [edi], al ; write byte to Destination
106 movdqu xmm0, OWORD PTR ds:[esi]
107 movdqu OWORD PTR ds:[edi], xmm0
108 movdqu xmm1, OWORD PTR ds:[esi+16]
109 movdqu OWORD PTR ds:[edi+16], xmm1
110 movdqu xmm2, OWORD PTR ds:[esi+32]
111 movdqu OWORD PTR ds:[edi+32], xmm2
112 movdqu xmm3, OWORD PTR ds:[esi+48]
113 movdqu OWORD PTR ds:[edi+48], xmm3 [all...] |
/external/clang/include/clang/AST/ |
StmtVisitor.h | 32 template<template <typename> class Ptr, typename ImplClass, typename RetTy=void> 36 #define PTR(CLASS) typename Ptr<CLASS>::type 38 return static_cast<ImplClass*>(this)->Visit ## NAME(static_cast<PTR(CLASS)>(S)) 40 RetTy Visit(PTR(Stmt) S) { 45 if (PTR(BinaryOperator) BinOp = dyn_cast<BinaryOperator>(S)) { 82 } else if (PTR(UnaryOperator) UnOp = dyn_cast<UnaryOperator>(S)) { 114 RetTy Visit ## CLASS(PTR(CLASS) S) { DISPATCH(PARENT, PARENT); } 120 RetTy VisitBin ## NAME(PTR(BinaryOperator) S) { \ 140 RetTy VisitBin ## NAME(PTR(CompoundAssignOperator) S) { [all...] |
/external/clang/test/CodeGen/ |
debug-info.c | 11 typedef struct OPAQUE *PTR; 12 PTR p;
|
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/ |
StmtVisitor.h | 32 template<template <typename> class Ptr, typename ImplClass, typename RetTy=void> 36 #define PTR(CLASS) typename Ptr<CLASS>::type 38 return static_cast<ImplClass*>(this)->Visit ## NAME(static_cast<PTR(CLASS)>(S)) 40 RetTy Visit(PTR(Stmt) S) { 45 if (PTR(BinaryOperator) BinOp = dyn_cast<BinaryOperator>(S)) { 82 } else if (PTR(UnaryOperator) UnOp = dyn_cast<UnaryOperator>(S)) { 114 RetTy Visit ## CLASS(PTR(CLASS) S) { DISPATCH(PARENT, PARENT); } 120 RetTy VisitBin ## NAME(PTR(BinaryOperator) S) { \ 140 RetTy VisitBin ## NAME(PTR(CompoundAssignOperator) S) { [all...] |
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/ |
StmtVisitor.h | 32 template<template <typename> class Ptr, typename ImplClass, typename RetTy=void> 36 #define PTR(CLASS) typename Ptr<CLASS>::type 38 return static_cast<ImplClass*>(this)->Visit ## NAME(static_cast<PTR(CLASS)>(S)) 40 RetTy Visit(PTR(Stmt) S) { 45 if (PTR(BinaryOperator) BinOp = dyn_cast<BinaryOperator>(S)) { 82 } else if (PTR(UnaryOperator) UnOp = dyn_cast<UnaryOperator>(S)) { 114 RetTy Visit ## CLASS(PTR(CLASS) S) { DISPATCH(PARENT, PARENT); } 120 RetTy VisitBin ## NAME(PTR(BinaryOperator) S) { \ 140 RetTy VisitBin ## NAME(PTR(CompoundAssignOperator) S) { [all...] |
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/ |
StmtVisitor.h | 32 template<template <typename> class Ptr, typename ImplClass, typename RetTy=void> 36 #define PTR(CLASS) typename Ptr<CLASS>::type 38 return static_cast<ImplClass*>(this)->Visit ## NAME(static_cast<PTR(CLASS)>(S)) 40 RetTy Visit(PTR(Stmt) S) { 45 if (PTR(BinaryOperator) BinOp = dyn_cast<BinaryOperator>(S)) { 82 } else if (PTR(UnaryOperator) UnOp = dyn_cast<UnaryOperator>(S)) { 114 RetTy Visit ## CLASS(PTR(CLASS) S) { DISPATCH(PARENT, PARENT); } 120 RetTy VisitBin ## NAME(PTR(BinaryOperator) S) { \ 140 RetTy VisitBin ## NAME(PTR(CompoundAssignOperator) S) { [all...] |
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/ |
StmtVisitor.h | 32 template<template <typename> class Ptr, typename ImplClass, typename RetTy=void> 36 #define PTR(CLASS) typename Ptr<CLASS>::type 38 return static_cast<ImplClass*>(this)->Visit ## NAME(static_cast<PTR(CLASS)>(S)) 40 RetTy Visit(PTR(Stmt) S) { 45 if (PTR(BinaryOperator) BinOp = dyn_cast<BinaryOperator>(S)) { 82 } else if (PTR(UnaryOperator) UnOp = dyn_cast<UnaryOperator>(S)) { 114 RetTy Visit ## CLASS(PTR(CLASS) S) { DISPATCH(PARENT, PARENT); } 120 RetTy VisitBin ## NAME(PTR(BinaryOperator) S) { \ 140 RetTy VisitBin ## NAME(PTR(CompoundAssignOperator) S) { [all...] |
/prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/ |
StmtVisitor.h | 32 template<template <typename> class Ptr, typename ImplClass, typename RetTy=void> 36 #define PTR(CLASS) typename Ptr<CLASS>::type 38 return static_cast<ImplClass*>(this)->Visit ## NAME(static_cast<PTR(CLASS)>(S)) 40 RetTy Visit(PTR(Stmt) S) { 45 if (PTR(BinaryOperator) BinOp = dyn_cast<BinaryOperator>(S)) { 82 } else if (PTR(UnaryOperator) UnOp = dyn_cast<UnaryOperator>(S)) { 114 RetTy Visit ## CLASS(PTR(CLASS) S) { DISPATCH(PARENT, PARENT); } 120 RetTy VisitBin ## NAME(PTR(BinaryOperator) S) { \ 140 RetTy VisitBin ## NAME(PTR(CompoundAssignOperator) S) { [all...] |
/prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/ |
StmtVisitor.h | 32 template<template <typename> class Ptr, typename ImplClass, typename RetTy=void> 36 #define PTR(CLASS) typename Ptr<CLASS>::type 38 return static_cast<ImplClass*>(this)->Visit ## NAME(static_cast<PTR(CLASS)>(S)) 40 RetTy Visit(PTR(Stmt) S) { 45 if (PTR(BinaryOperator) BinOp = dyn_cast<BinaryOperator>(S)) { 82 } else if (PTR(UnaryOperator) UnOp = dyn_cast<UnaryOperator>(S)) { 114 RetTy Visit ## CLASS(PTR(CLASS) S) { DISPATCH(PARENT, PARENT); } 120 RetTy VisitBin ## NAME(PTR(BinaryOperator) S) { \ 140 RetTy VisitBin ## NAME(PTR(CompoundAssignOperator) S) { [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Library/PiDxeS3BootScriptLib/ |
InternalBootScriptLib.h | 63 } PTR;
|
/external/python/cpython2/Modules/_ctypes/libffi_msvc/ |
ffi.c | 287 _asm fld DWORD PTR [eax] ; 293 _asm fld QWORD PTR [eax] ;
|
/device/linaro/bootloader/OpenPlatformPkg/Chips/TexasInstruments/Omap35xx/PciEmulation/ |
PciEmulation.h | 101 } PTR;
275 IN PTR In,
277 OUT PTR Out
|
/device/linaro/bootloader/edk2/ArmPlatformPkg/ArmJunoPkg/Drivers/ArmJunoDxe/ |
PciEmulation.h | 94 } PTR;
268 IN PTR In,
270 OUT PTR Out
|
/device/linaro/bootloader/edk2/Omap35xxPkg/PciEmulation/ |
PciEmulation.h | 101 } PTR;
275 IN PTR In,
277 OUT PTR Out
|
/device/linaro/bootloader/edk2/DuetPkg/PciRootBridgeNoEnumerationDxe/ |
PcatPciRootBridge.h | 111 } PTR;
|
/external/syslinux/lzo/src/ |
lzo_ptr.h | 59 #define PTR(a) ((lzo_uintptr_t) (a)) 60 #define PTR_LINEAR(a) PTR(a) 67 #define PTR_LT(a,b) (PTR(a) < PTR(b)) 68 #define PTR_GE(a,b) (PTR(a) >= PTR(b)) 69 #define PTR_DIFF(a,b) (PTR(a) - PTR(b)) 74 __lzo_ptr_linear(const lzo_voidp ptr); variable
|
/external/valgrind/coregrind/m_demangle/ |
ansidecl.h | 25 PTR `void *' `char *' 73 #define PTR void * 94 #define PTR char *
|