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

12

/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers_cxx.cc33 DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash,
35 if (checkDynamicType((void*)Pointer, Data->TypeInfo, Hash))
40 DynamicTypeInfo DTI = getDynamicTypeInfo((void*)Pointer);
52 << TypeCheckKinds[Data->TypeCheckKind] << (void*)Pointer << Data->Type;
56 Diag(Pointer, DL_Note, "object has invalid vptr")
58 << Range(Pointer, Pointer + sizeof(uptr), "invalid vptr");
60 Diag(Pointer, DL_Note, "object is of type %0")
62 << Range(Pointer, Pointer
32 HandleDynamicTypeCacheMiss( DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash, ReportOptions Opts) argument
74 __ubsan_handle_dynamic_type_cache_miss( DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash) argument
79 __ubsan_handle_dynamic_type_cache_miss_abort( DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash) argument
[all...]
H A Dubsan_handlers.cc41 static void handleTypeMismatchImpl(TypeMismatchData *Data, ValueHandle Pointer, argument
56 if (!Pointer)
59 else if (Data->Alignment && (Pointer & (Data->Alignment - 1)))
62 << TypeCheckKinds[Data->TypeCheckKind] << (void*)Pointer
67 << TypeCheckKinds[Data->TypeCheckKind] << (void*)Pointer << Data->Type;
68 if (Pointer)
69 Diag(Pointer, DL_Note, "pointer points here");
73 ValueHandle Pointer) {
75 handleTypeMismatchImpl(Data, Pointer, Opts);
78 ValueHandle Pointer) {
72 __ubsan_handle_type_mismatch(TypeMismatchData *Data, ValueHandle Pointer) argument
77 __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::__anon2916
/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/clang/test/SemaCXX/
H A Dwarn-bool-conversion.cpp95 namespace Pointer { namespace
H A Dtypo-correction-delayed.cpp162 struct Pointer { struct
166 void MovePointer(Pointer &Click, int x, int y) { // expected-note 2 {{'Click' declared here}}
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
H A DPointer.java43 public class Pointer { class
63 public Pointer(int pointerLevel, boolean function, BlenderContext blenderContext) { method in class:Pointer
99 Pointer p = new Pointer(pointerLevel - 1, this.function, blenderContext);
174 Pointer other = (Pointer) obj;
/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/lib/Transforms/ObjCARC/
H A DObjCARC.h236 const Value *Pointer = local
238 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(Pointer)) {
/external/llvm/lib/Transforms/Scalar/
H A DCorrelatedValuePropagation.cpp145 Value *Pointer = nullptr; local
147 Pointer = L->getPointerOperand();
149 Pointer = cast<StoreInst>(I)->getPointerOperand();
151 if (isa<Constant>(Pointer)) return false;
153 Constant *C = LVI->getConstant(Pointer, I->getParent(), I);
157 I->replaceUsesOfWith(Pointer, C);
H A DLoadCombine.cpp39 Value *Pointer; member in struct:__anon11027::PointerOffsetPair
90 POP.Pointer = LI.getPointerOperand();
92 while (isa<BitCastInst>(POP.Pointer) || isa<GetElementPtrInst>(POP.Pointer)) {
93 if (auto *GEP = dyn_cast<GetElementPtrInst>(POP.Pointer)) {
102 POP.Pointer = GEP->getPointerOperand();
103 } else if (auto *BC = dyn_cast<BitCastInst>(POP.Pointer))
104 POP.Pointer = BC->getOperand(0);
195 FirstLP.POP.Pointer->getType()->getPointerAddressSpace();
199 Builder->CreatePointerCast(Loads[0].POP.Pointer,
[all...]
/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.h78 Integer, Vector, Pointer, Struct, enumerator in enum:llvm::Intrinsic::IITDescriptor::IITDescriptorKind
/external/clang/test/CodeGen/
H A D2002-07-14-MiscTests3.c8 char *Pointer; member in struct:FunStructTest
/external/llvm/lib/Analysis/
H A DAliasSetTracker.cpp279 AliasSet &AliasSetTracker::getAliasSetForPointer(Value *Pointer, uint64_t Size, argument
282 AliasSet::PointerRec &Entry = getEntryFor(Pointer);
291 if (AliasSet *AS = findAliasSetForPointer(Pointer, Size, AAInfo)) {
H A DMemoryDependenceAnalysis.cpp926 /// Pointer/PointeeSize using either cached information in Cache or by doing a
1047 const PHITransAddr &Pointer,
1053 // Look up the cached info for Pointer.
1054 ValueIsLoadPair CacheKey(Pointer.getAddr(), isLoad);
1086 return getNonLocalPointerDepFromBB(QueryInst, Pointer,
1107 Pointer, Loc.getWithoutAATags(),
1127 if (VI == Visited.end() || VI->second == Pointer.getAddr())
1137 Value *Addr = Pointer.getAddr();
1203 // Analyze the dependency of *Pointer in FromBB. See if we already have
1207 // Get the dependency info for Pointer i
1046 getNonLocalPointerDepFromBB(Instruction *QueryInst, const PHITransAddr &Pointer, const AliasAnalysis::Location &Loc, bool isLoad, BasicBlock *StartBB, SmallVectorImpl<NonLocalDepResult> &Result, DenseMap<BasicBlock*, Value*> &Visited, bool SkipFirstBlock) argument
[all...]
/external/llvm/lib/ProfileData/
H A DCoverageMappingReader.cpp307 std::error_code get(uint64_t Pointer, size_t Size, StringRef &Result) { argument
308 if (Pointer < Address)
310 auto Offset = Pointer - Address;
313 Result = 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...]
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsio0.c43 cmsUInt32Number Pointer; // Points to current location member in struct:__anon13244
52 ResData -> Pointer += len;
63 ResData ->Pointer = offset;
71 return ResData -> Pointer;
79 ResData ->Pointer += size;
80 if (ResData ->Pointer > iohandler->UsedSpace)
81 iohandler->UsedSpace = ResData ->Pointer;
110 fm ->Pointer = 0;
140 cmsUInt32Number Pointer; // Points to current location member in struct:__anon13245
152 if (ResData -> Pointer
[all...]
/external/clang/lib/AST/
H A DType.cpp1001 case Type::Pointer:
2197 case Type::Pointer:
2280 case Type::Pointer:
2413 const PointerType *Pointer = getAs<PointerType>(); local
2414 if (!Pointer)
2417 QualType Pointee = Pointer->getPointeeType();

Completed in 1066 milliseconds

12