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

12

/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers_cxx.cc30 DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash,
32 if (checkDynamicType((void*)Pointer, Data->TypeInfo, Hash))
42 << TypeCheckKinds[Data->TypeCheckKind] << (void*)Pointer << Data->Type;
45 DynamicTypeInfo DTI = getDynamicTypeInfo((void*)Pointer);
47 Diag(Pointer, DL_Note, "object has invalid vptr")
49 << Range(Pointer, Pointer + sizeof(uptr), "invalid vptr");
51 Diag(Pointer, DL_Note, "object is of type %0")
53 << Range(Pointer, Pointer
29 HandleDynamicTypeCacheMiss( DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash, bool Abort) argument
67 __ubsan_handle_dynamic_type_cache_miss( DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash) argument
71 __ubsan_handle_dynamic_type_cache_miss_abort( DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash) argument
[all...]
H A Dubsan_handlers.cc29 static void handleTypeMismatchImpl(TypeMismatchData *Data, ValueHandle Pointer, argument
39 if (!Pointer)
42 else if (Data->Alignment && (Pointer & (Data->Alignment - 1)))
45 << TypeCheckKinds[Data->TypeCheckKind] << (void*)Pointer
50 << TypeCheckKinds[Data->TypeCheckKind] << (void*)Pointer << Data->Type;
51 if (Pointer)
52 Diag(Pointer, DL_Note, "pointer points here");
55 ValueHandle Pointer) {
56 handleTypeMismatchImpl(Data, Pointer, getCallerLocation());
59 ValueHandle Pointer) {
54 __ubsan_handle_type_mismatch(TypeMismatchData *Data, ValueHandle Pointer) argument
58 __ubsan_handle_type_mismatch_abort(TypeMismatchData *Data, ValueHandle Pointer) argument
[all...]
H A Dubsan_diag.h152 Arg(const void *Pointer) : Kind(AK_Pointer), Pointer(Pointer) {} argument
160 const void *Pointer; member in union:__ubsan::Diag::Arg::__anon19642
/external/chromium_org/ash/shelf/
H A Dshelf_button_host.h25 enum Pointer { enum in class:ash::ShelfButtonHost
34 Pointer pointer,
39 Pointer pointer,
44 Pointer pointer,
/external/chromium_org/base/
H A Dlazy_instance.h10 // and Pointer() will always return the same, completely initialized instance.
31 // MyClass* ptr = my_instance.Pointer();
138 return *Pointer();
141 Type* Pointer() { function in class:base::LazyInstance
/external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
H A Dmodel.py93 class Pointer(Node): class in inherits:Node
/external/clang/test/SemaCXX/
H A Dwarn-bool-conversion.cpp95 namespace Pointer { namespace
/external/mesa3d/src/gallium/tools/trace/
H A Dmodel.py93 class Pointer(Node): class in inherits:Node
/external/chromium_org/base/metrics/
H A Dstats_table_unittest.cc244 int* Pointer() { return GetPtr(); } function in class:base::MockStatsCounter
259 ASSERT_NE(foo.Pointer(), static_cast<int*>(0));
260 EXPECT_EQ(0, *(foo.Pointer()));
264 while (*(foo.Pointer()) < 123) foo.Increment();
/external/chromium_org/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/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/Scalar/
H A DCorrelatedValuePropagation.cpp142 Value *Pointer = nullptr; local
144 Pointer = L->getPointerOperand();
146 Pointer = cast<StoreInst>(I)->getPointerOperand();
148 if (isa<Constant>(Pointer)) return false;
150 Constant *C = LVI->getConstant(Pointer, I->getParent());
154 I->replaceUsesOfWith(Pointer, C);
H A DLoadCombine.cpp37 Value *Pointer; member in struct:__anon26289::PointerOffsetPair
94 POP.Pointer = LI.getPointerOperand();
96 while (isa<BitCastInst>(POP.Pointer) || isa<GetElementPtrInst>(POP.Pointer)) {
97 if (auto *GEP = dyn_cast<GetElementPtrInst>(POP.Pointer)) {
105 POP.Pointer = GEP->getPointerOperand();
106 } else if (auto *BC = dyn_cast<BitCastInst>(POP.Pointer))
107 POP.Pointer = BC->getOperand(0);
196 FirstLP.POP.Pointer->getType()->getPointerAddressSpace();
200 Builder->CreatePointerCast(Loads[0].POP.Pointer,
[all...]
/external/chromium_org/net/base/
H A Dpriority_queue.h34 // This section is up-front for Pointer only.
46 class Pointer { class in class:net::PriorityQueue
49 Pointer() : priority_(kNullPriority) { function in class:net::PriorityQueue::Pointer
60 Pointer(const Pointer& p) function in class:net::PriorityQueue::Pointer
68 Pointer& operator=(const Pointer& p) {
88 // Comparing to Pointer from a different PriorityQueue is undefined.
89 bool Equals(const Pointer& other) const {
94 *this = Pointer();
110 Pointer(Priority priority, const ListIterator& iterator) function in class:net::PriorityQueue::Pointer
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DCursor.h41 Pointer = 0, enumerator in enum:blink::Cursor::Type
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
H A Dcparse.py121 class Pointer(Node): class in inherits:Node
320 self.append( Pointer() )
H A Dgenpyx.py170 class Pointer(object): class in inherits:object
356 node[idx] = Pointer()
H A Dir.py287 class Pointer(genpyx.Pointer, Node): class in inherits:genpyx.Pointer, Node
339 node = Pointer()
527 if len(self)>1 and type(self[1])==Pointer: # isinstance ??
551 decl = Declarator(Identifier(), Pointer(self.get_rest().clone()))
1098 if isinstance(node,Pointer):
1142 cparse.Pointer : Pointer ,
/external/llvm/include/llvm/IR/
H A DIntrinsics.h84 Integer, Vector, Pointer, Struct, enumerator in enum:llvm::Intrinsic::IITDescriptor::IITDescriptorKind
/external/llvm/lib/Analysis/
H A DAliasSetTracker.cpp266 AliasSet &AliasSetTracker::getAliasSetForPointer(Value *Pointer, uint64_t Size, argument
269 AliasSet::PointerRec &Entry = getEntryFor(Pointer);
278 if (AliasSet *AS = findAliasSetForPointer(Pointer, Size, TBAAInfo)) {
H A DMemoryDependenceAnalysis.cpp795 /// Pointer/PointeeSize using either cached information in Cache or by doing a
913 getNonLocalPointerDepFromBB(const PHITransAddr &Pointer, argument
919 // Look up the cached info for Pointer.
920 ValueIsLoadPair CacheKey(Pointer.getAddr(), isLoad);
952 return getNonLocalPointerDepFromBB(Pointer,
972 return getNonLocalPointerDepFromBB(Pointer, Loc.getWithoutTBAATag(),
992 if (VI == Visited.end() || VI->second == Pointer.getAddr())
1002 Value *Addr = Pointer.getAddr();
1050 // Analyze the dependency of *Pointer in FromBB. See if we already have
1054 // Get the dependency info for Pointer i
[all...]
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARC.h373 const Value *Pointer = local
375 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(Pointer)) {
/external/chromium_org/ui/app_list/views/
H A Dapps_grid_view.h63 enum Pointer { enum in class:app_list::AppsGridView
101 Pointer pointer,
106 bool UpdateDragFromItem(Pointer pointer, const ui::LocatedEvent& event);
110 void UpdateDrag(Pointer pointer, const gfx::Point& point);
173 void UpdateDragFromReparentItem(Pointer pointer,
177 void DispatchDragEventForReparent(Pointer pointer,
435 void UpdateDragStateInsideFolder(Pointer pointer,
511 Pointer drag_pointer_;
/external/clang/test/CodeGen/
H A D2002-07-14-MiscTests3.c8 char *Pointer; member in struct:FunStructTest

Completed in 906 milliseconds

12