Searched defs:Pointer (Results 1 - 25 of 51) sorted by relevance

123

/external/llvm/tools/llvm-pdbdump/
H A DFunctionDumper.h23 enum class PointerType { None, Pointer, Reference }; member in class:llvm::FunctionDumper::PointerType
26 PointerType Pointer);
27 void start(const PDBSymbolFunc &Symbol, PointerType Pointer);
H A DTypedefDumper.cpp60 FunctionDumper::PointerType Pointer = FunctionDumper::PointerType::Pointer; local
62 Pointer = FunctionDumper::PointerType::Reference;
64 NestedDumper.start(*FuncSig, nullptr, Pointer);
H A DVariableDumper.cpp105 FunctionDumper::PointerType Pointer = local
107 : FunctionDumper::PointerType::Pointer;
108 NestedDumper.start(*Func, Pointer);
161 FunctionDumper::PointerType PT = FunctionDumper::PointerType::Pointer;
H A DFunctionDumper.cpp51 const char *Name, PointerType Pointer) {
67 if (Pointer == PointerType::None) {
85 if (Pointer == PointerType::Reference)
111 void FunctionDumper::start(const PDBSymbolFunc &Symbol, PointerType Pointer) { argument
143 if (Pointer == PointerType::Pointer)
145 else if (Pointer == FunctionDumper::PointerType::Reference)
156 if (Pointer != FunctionDumper::PointerType::None)
165 if (Pointer != FunctionDumper::PointerType::None) {
166 if (Pointer
50 start(const PDBSymbolTypeFunctionSig &Symbol, const char *Name, PointerType Pointer) argument
239 PointerType Pointer = local
[all...]
/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers_cxx.cc34 DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash,
36 if (checkDynamicType((void*)Pointer, Data->TypeInfo, Hash))
41 DynamicTypeInfo DTI = getDynamicTypeInfoFromObject((void*)Pointer);
54 << TypeCheckKinds[Data->TypeCheckKind] << (void*)Pointer << Data->Type;
58 Diag(Pointer, DL_Note, "object has invalid vptr")
60 << Range(Pointer, Pointer + sizeof(uptr), "invalid vptr");
62 Diag(Pointer, DL_Note, "object is of type %0")
64 << Range(Pointer, Pointer
33 HandleDynamicTypeCacheMiss( DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash, ReportOptions Opts) argument
77 __ubsan_handle_dynamic_type_cache_miss( DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash) argument
82 __ubsan_handle_dynamic_type_cache_miss_abort( DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash) argument
[all...]
H A Dubsan_handlers.cc44 static void handleTypeMismatchImpl(TypeMismatchData *Data, ValueHandle Pointer, argument
49 if (!Pointer)
51 else if (Data->Alignment && (Pointer & (Data->Alignment - 1)))
77 << TypeCheckKinds[Data->TypeCheckKind] << (void *)Pointer
83 << TypeCheckKinds[Data->TypeCheckKind] << (void *)Pointer << Data->Type;
89 if (Pointer)
90 Diag(Pointer, DL_Note, "pointer points here");
94 ValueHandle Pointer) {
96 handleTypeMismatchImpl(Data, Pointer, Opts);
99 ValueHandle Pointer) {
93 __ubsan_handle_type_mismatch(TypeMismatchData *Data, ValueHandle Pointer) argument
98 __ubsan_handle_type_mismatch_abort(TypeMismatchData *Data, ValueHandle Pointer) argument
[all...]
H A Dubsan_diag.h159 Arg(const void *Pointer) : Kind(AK_Pointer), Pointer(Pointer) {} argument
167 const void *Pointer; member in union:__ubsan::Diag::Arg::__anon3359
/external/clang/lib/CodeGen/
H A DAddress.h26 llvm::Value *Pointer; member in class:clang::CodeGen::Address
30 : Pointer(pointer), Alignment(alignment) {
36 bool isValid() const { return Pointer != nullptr; }
40 return Pointer;
/external/clang/test/SemaCXX/
H A Dwarn-bool-conversion.cpp95 namespace Pointer { namespace
H A Dtypo-correction-delayed.cpp166 struct Pointer { struct
170 void MovePointer(Pointer &Click, int x, int y) { // expected-note 2 {{'Click' declared here}}
/external/libchrome/base/
H A Dlazy_instance.h10 // and Pointer() will always return the same, completely initialized instance.
31 // MyClass* ptr = my_instance.Pointer();
139 return *Pointer();
142 Type* Pointer() { function in class:base::LazyInstance
/external/mesa3d/src/gallium/tools/trace/
H A Dmodel.py93 class Pointer(Node): class in inherits:Node
/external/jmdns/src/javax/jmdns/impl/
H A DDNSQuestion.java85 * Pointer question.
87 private static class Pointer extends DNSQuestion { class in class:DNSQuestion
88 Pointer(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) { method in class:DNSQuestion.Pointer
101 answers.add(new DNSRecord.Pointer("_services._dns-sd._udp.local.", DNSRecordClass.CLASS_IN, DNSRecordClass.NOT_UNIQUE, DNSConstants.DNS_TTL, typeEntry.getType()));
142 DNSQuestion question = new Pointer(this.getName(), DNSRecordType.TYPE_PTR, this.getRecordClass(), this.isUnique());
203 DNSQuestion question = new Pointer(this.getName(), DNSRecordType.TYPE_PTR, this.getRecordClass(), this.isUnique());
249 return new Pointer(name, type, recordClass, unique);
H A DDNSRecord.java423 * Pointer record.
425 public static class Pointer extends DNSRecord { class in class:DNSRecord
426 // private static Logger logger = Logger.getLogger(Pointer.class.getName());
429 public Pointer(String name, DNSRecordClass recordClass, boolean unique, int ttl, String alias) { method in class:DNSRecord.Pointer
440 return super.isSameEntry(entry) && (entry instanceof Pointer) && this.sameValue((Pointer) entry);
450 if (! (other instanceof Pointer) ) {
453 Pointer pointer = (Pointer) other;
/external/llvm/include/llvm/Analysis/
H A DObjCARCAnalysisUtils.h209 const Value *Pointer = local
211 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(Pointer)) {
/external/v8/src/base/
H A Dlazy-instance.h10 // and Pointer() will always return the same, completely initialized instance.
30 // MyClass* ptr = my_instance.Pointer();
187 T* Pointer() { function in struct:v8::base::LazyInstanceImpl
/external/llvm/include/llvm/IR/
H A DIntrinsics.h83 Integer, Vector, Pointer, Struct, enumerator in enum:llvm::Intrinsic::IITDescriptor::IITDescriptorKind
/external/llvm/lib/Transforms/Scalar/
H A DCorrelatedValuePropagation.cpp173 Value *Pointer = nullptr; local
175 Pointer = L->getPointerOperand();
177 Pointer = cast<StoreInst>(I)->getPointerOperand();
179 if (isa<Constant>(Pointer)) return false;
181 Constant *C = LVI->getConstant(Pointer, I->getParent(), I);
185 I->replaceUsesOfWith(Pointer, C);
H A DLoadCombine.cpp40 Value *Pointer; member in struct:__anon12930::PointerOffsetPair
91 POP.Pointer = LI.getPointerOperand();
93 while (isa<BitCastInst>(POP.Pointer) || isa<GetElementPtrInst>(POP.Pointer)) {
94 if (auto *GEP = dyn_cast<GetElementPtrInst>(POP.Pointer)) {
103 POP.Pointer = GEP->getPointerOperand();
104 } else if (auto *BC = dyn_cast<BitCastInst>(POP.Pointer))
105 POP.Pointer = BC->getOperand(0);
196 FirstLP.POP.Pointer->getType()->getPointerAddressSpace();
200 Builder->CreatePointerCast(Loads[0].POP.Pointer,
[all...]
/external/v8/src/
H A Dmachine-type.h74 static MachineType Pointer() { function in class:v8::internal::MachineType
/external/clang/test/CodeGen/
H A D2002-07-14-MiscTests3.c8 char *Pointer; member in struct:FunStructTest
/external/llvm/lib/Analysis/
H A DAliasSetTracker.cpp270 AliasSet &AliasSetTracker::getAliasSetForPointer(Value *Pointer, uint64_t Size, argument
273 AliasSet::PointerRec &Entry = getEntryFor(Pointer);
282 if (AliasSet *AS = findAliasSetForPointer(Pointer, Size, AAInfo)) {
H A DMemoryDependenceAnalysis.cpp1004 /// Pointer/PointeeSize using either cached information in Cache or by doing a
1122 Instruction *QueryInst, const PHITransAddr &Pointer,
1126 // Look up the cached info for Pointer.
1127 ValueIsLoadPair CacheKey(Pointer.getAddr(), isLoad);
1159 return getNonLocalPointerDepFromBB(QueryInst, Pointer,
1180 Pointer, Loc.getWithoutAATags(),
1200 if (VI == Visited.end() || VI->second == Pointer.getAddr())
1210 Value *Addr = Pointer.getAddr();
1276 // Analyze the dependency of *Pointer in FromBB. See if we already have
1280 // Get the dependency info for Pointer i
1121 getNonLocalPointerDepFromBB( Instruction *QueryInst, const PHITransAddr &Pointer, const MemoryLocation &Loc, bool isLoad, BasicBlock *StartBB, SmallVectorImpl<NonLocalDepResult> &Result, DenseMap<BasicBlock *, Value *> &Visited, bool SkipFirstBlock) argument
[all...]
/external/llvm/lib/ProfileData/
H A DCoverageMappingReader.cpp300 StringRef InstrProfSymtab::getFuncName(uint64_t Pointer, size_t Size) { argument
301 if (Pointer < Address)
303 auto Offset = Pointer - Address;
306 return Data.substr(Pointer - Address, Size);
/external/vboot_reference/utility/
H A Defidecompress.c210 UINT16 *Pointer; local
281 Pointer = &Table[Index3 >> JuBits];
285 if (*Pointer == 0) {
287 *Pointer = Avail++;
291 Pointer = &Sd->mRight[*Pointer];
293 Pointer = &Sd->mLeft[*Pointer];
300 *Pointer = Char;
653 // Process a Pointer
[all...]

Completed in 639 milliseconds

123