HomeSort by: relevance | last modified time | path
    Searched defs:Pointer (Results 1 - 25 of 42) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
PDBSymbolExe.cpp 22 auto Pointer = findOneChild<PDBSymbolTypePointer>();
23 if (Pointer)
24 return Pointer->getLength();
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
PrettyTypedefDumper.cpp 60 FunctionDumper::PointerType Pointer = FunctionDumper::PointerType::Pointer;
62 Pointer = FunctionDumper::PointerType::Reference;
64 NestedDumper.start(*FuncSig, nullptr, Pointer);
PrettyFunctionDumper.h 22 enum class PointerType { None, Pointer, Reference };
25 PointerType Pointer);
26 void start(const PDBSymbolFunc &Symbol, PointerType Pointer);
PrettyFunctionDumper.cpp 53 const char *Name, PointerType Pointer) {
72 if (Pointer == PointerType::None) {
90 if (Pointer == PointerType::Reference)
116 void FunctionDumper::start(const PDBSymbolFunc &Symbol, PointerType Pointer) {
154 if (Pointer == PointerType::Pointer)
156 else if (Pointer == FunctionDumper::PointerType::Reference)
167 if (Pointer != FunctionDumper::PointerType::None)
176 if (Pointer != FunctionDumper::PointerType::None) {
177 if (Pointer == PointerType::Pointer
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Pointer.cpp 1 //===--- Pointer.cpp - Types for the constexpr VM ---------------*- C++ -*-===//
9 #include "Pointer.h"
17 Pointer::Pointer(Block *Pointee) : Pointer(Pointee, 0, 0) {}
19 Pointer::Pointer(const Pointer &P) : Pointer(P.Pointee, P.Base, P.Offset) {}
21 Pointer::Pointer(Pointer &&P
    [all...]
Pointer.h 1 //===--- Pointer.h - Types for the constexpr VM -----------------*- C++ -*-===//
9 // Defines the classes responsible for pointer tracking.
31 class Pointer;
35 /// A pointer to a memory block, live or dead.
39 class Pointer {
45 Pointer() {}
46 Pointer(Block *B);
47 Pointer(const Pointer &P);
48 Pointer(Pointer &&P)
    [all...]
  /src/sys/external/bsd/acpica/dist/executer/
exregion.c 60 * Value - Pointer to in or out value
61 * HandlerContext - Pointer to Handler's context
62 * RegionContext - Pointer to context specific to the
226 * Generate a logical pointer corresponding to the address we want to
328 * Value - Pointer to in or out value
329 * HandlerContext - Pointer to Handler's context
330 * RegionContext - Pointer to context specific to the
393 * Value - Pointer to in or out value
394 * HandlerContext - Pointer to Handler's context
395 * RegionContext - Pointer to context specific to th
    [all...]
exconvrt.c 86 UINT8 *Pointer;
109 Pointer = ObjDesc->Buffer.Pointer;
145 Result = AcpiUtImplicitStrtoul64 (ACPI_CAST_PTR (char, Pointer));
149 Result = AcpiUtExplicitStrtoul64 (ACPI_CAST_PTR (char, Pointer));
180 Result |= (((UINT64) Pointer[i]) << (i * 8));
259 NewBuf = ReturnDesc->Buffer.Pointer;
282 NewBuf = ReturnDesc->Buffer.Pointer;
283 memcpy ((char *) NewBuf, (char *) ObjDesc->String.Pointer,
522 NewBuf = ReturnDesc->Buffer.Pointer;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
Address.h 9 // This class provides a simple wrapper for a pair of a pointer and an
25 llvm::Value *Pointer;
28 Address(llvm::Value *pointer, CharUnits alignment)
29 : Pointer(pointer), Alignment(alignment) {
30 assert((!alignment.isZero() || pointer == nullptr) &&
35 bool isValid() const { return Pointer != nullptr; }
39 return Pointer;
42 /// Return the type of the pointer value.
49 /// When IR pointer types lose their element type, we should simpl
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
ObjCARCAnalysisUtils.h 105 /// Thus this function strips off pointer casts and forwarding calls. *NOTE*
142 /// Test whether the given value is possible a retainable object pointer.
148 // Special arguments can not be a valid retainable object pointer.
153 // Only consider values with pointer types.
155 // It seemes intuitive to exclude function pointer types as well, since
157 // bitcasts retainable object pointers to function-pointer type temporarily.
162 // pointer.
193 const Value *Pointer =
195 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(Pointer)) {
196 // A constant pointer can't be pointing to an object on the heap. It ma
    [all...]
  /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
executionengine.go 56 return (*C.LLVMGenericValueRef)(unsafe.Pointer(t))
67 func NewGenericValueFromPointer(p unsafe.Pointer) (g GenericValue) {
82 func (g GenericValue) Pointer() unsafe.Pointer {
157 defer C.free(unsafe.Pointer(cname))
162 func (ee ExecutionEngine) RecompileAndRelinkFunction(f Value) unsafe.Pointer {
171 func (ee ExecutionEngine) AddGlobalMapping(global Value, addr unsafe.Pointer) {
175 func (ee ExecutionEngine) PointerToGlobal(global Value) unsafe.Pointer {
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Intrinsics.h 127 Pointer,
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
AliasSetTracker.cpp 59 // used to be must-alias sets, we can just check any pointer from each set
190 /// aliasesPointer - If the specified pointer "may" (or must) alias one of the
203 // If this is a set of MustAliases, only check to see if the pointer aliases
274 "where's the instruction which added this pointer?");
297 /// mergeAliasSetsForPointer - Given a pointer, merge all alias sets that may
298 /// alias the pointer. Return the unified set, or nullptr if no set that aliases
299 /// the pointer was found. MustAliasAll is updated to true/false if the pointer
348 Value * const Pointer = const_cast<Value*>(MemLoc.Ptr);
352 AliasSet::PointerRec &Entry = getEntryFor(Pointer);
    [all...]
  /src/external/gpl3/gdb/dist/gnulib/import/
select.c 92 PVOID Pointer;
  /src/external/gpl3/gdb.old/dist/gnulib/import/
select.c 92 PVOID Pointer;
  /src/sys/external/bsd/acpica/dist/include/
acresrc.h 135 const char **Pointer;
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_diag.h 157 AK_Pointer ///< A pointer argument, displayed in hexadecimal.
168 Arg(const void *Pointer) : Kind(AK_Pointer), Pointer(Pointer) {}
176 const void *Pointer;
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
TemplateBase.h 73 /// The template argument is a declaration that was provided for a pointer,
74 /// reference, or pointer to member non-type template parameter.
77 /// The template argument is a null pointer or null pointer to member that
418 Pointer;
421 return Pointer.get<TemplateTemplateArgLocInfo *>();
426 TemplateArgumentLocInfo(TypeSourceInfo *Declarator) { Pointer = Declarator; }
428 TemplateArgumentLocInfo(Expr *E) { Pointer = E; }
436 return Pointer.get<TypeSourceInfo *>();
439 Expr *getAsExpr() const { return Pointer.get<Expr *>();
    [all...]
VTableBuilder.h 39 /// A pointer to the complete destructor.
42 /// A pointer to the deleting destructor.
47 /// In some cases, a vtable function pointer will end up never being
206 assert((Ptr & 7) == 0 && "Pointer not sufficiently aligned!");
367 /// where the function pointer for a virtual function is stored.
392 Pointer,
400 VTableComponentLayout ComponentLayout = Pointer);
417 /// function pointer for the given virtual function is stored.
436 bool isPointerLayout() const { return ComponentLayout == Pointer; }
444 /// table pointer. A record may contain as many vfptrs or vbptrs as there ar
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/ubsan/
ubsan_diag.h 156 AK_Pointer ///< A pointer argument, displayed in hexadecimal.
167 Arg(const void *Pointer) : Kind(AK_Pointer), Pointer(Pointer) {}
175 const void *Pointer;
  /src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_diag.h 156 AK_Pointer ///< A pointer argument, displayed in hexadecimal.
167 Arg(const void *Pointer) : Kind(AK_Pointer), Pointer(Pointer) {}
175 const void *Pointer;
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
MveEmitter.cpp 127 // Pointer is used for pointer types (obviously), and comes with a flag
128 // indicating whether it's a pointer to a const or mutable instance of
130 Pointer,
196 : Type(TypeKind::Pointer), Pointee(Pointee), Const(Const) {}
203 // The syntax for a pointer in C is different when the pointee is
204 // itself a pointer. The MVE intrinsics don't contain any double
206 assert(!isa<PointerType>(Pointee) && "Pointer to pointer not supported");
217 return T->typeKind() == TypeKind::Pointer;
    [all...]
NeonEmitter.cpp 154 bool Immediate, Constant, Pointer;
164 Pointer(false), ScalarForMangling(false), NoManglingQ(false),
169 Constant(false), Pointer(false), ScalarForMangling(false),
186 bool isPointer() const { return Pointer; }
396 // Pointer arguments need to use macros to avoid hiding aligned attributes
397 // from the pointer type.
629 if (Pointer)
903 Pointer = true;
1003 // fashion, storing them to a pointer arg.
1252 // Do not create a temporary for pointer arguments. The inpu
    [all...]
SveEmitter.cpp 68 bool Float, Signed, Immediate, Void, Constant, Pointer, BFloat;
77 Constant(false), Pointer(false), BFloat(false), DefaultType(false),
85 bool isPointer() const { return Pointer; }
86 bool isVoidPointer() const { return Pointer && Void; }
93 bool isVoid() const { return Void & !Pointer; }
412 if (Pointer) S += "*";
457 if (Pointer)
528 Pointer = true;
714 Pointer = true;
720 Pointer = true
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
JSON.h 532 // FIXME: this is unneccesarily large (3 pointers). Pointer + length + owned
588 /// Exception: the root Path encodes a pointer to the Path::Root.
590 uintptr_t Pointer;
595 Segment(Root *R) : Pointer(reinterpret_cast<uintptr_t>(R)) {}
597 : Pointer(reinterpret_cast<uintptr_t>(Field.data())),
599 Segment(unsigned Index) : Pointer(0), Offset(Index) {}
601 bool isField() const { return Pointer != 0; }
603 return StringRef(reinterpret_cast<const char *>(Pointer), Offset);
606 Root *root() const { return reinterpret_cast<Root *>(Pointer); }

Completed in 165 milliseconds

1 2