Home
last modified time | relevance | path

Searched refs:Id (Results 1 – 25 of 1095) sorted by relevance

12345678910>>...44

/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DSValVisitor.h38 #define BASIC_SVAL(Id, Parent) case SVal::Id ## Kind: DISPATCH(Id, Id); in Visit() argument
42 #define LOC_SVAL(Id, Parent) \ in Visit() argument
43 case loc::Id ## Kind: DISPATCH(Loc ## Id, loc :: Id); in Visit()
49 #define NONLOC_SVAL(Id, Parent) \ in Visit() argument
50 case nonloc::Id ## Kind: DISPATCH(NonLoc ## Id, nonloc :: Id); in Visit()
58 #define BASIC_SVAL(Id, Parent) \ argument
59 RetTy Visit ## Id(Id V) { DISPATCH(Parent, Id); }
60 #define ABSTRACT_SVAL(Id, Parent) \ argument
61 BASIC_SVAL(Id, Parent)
62 #define LOC_SVAL(Id, Parent) \ argument
[all …]
DSVals.def16 // BASIC_SVAL(Id, Parent) - for specific SVal sub-kinds, which are
20 // ABSTRACT_SVAL(Id, Parent) - for abstract SVal classes which are
23 // ABSTRACT_SVAL_WITH_KIND(Id, Parent) - for SVal classes which are also
27 // LOC_SVAL(Id, Parent) - for values in loc:: namespace, which occupy a sub-kind
30 // NONLOC_SVAL(Id, Parent) - for values in nonloc:: namespace, which occupy a
36 #define BASIC_SVAL(Id, Parent)
40 #define ABSTRACT_SVAL(Id, Parent)
44 #define ABSTRACT_SVAL_WITH_KIND(Id, Parent) ABSTRACT_SVAL(Id, Parent)
48 #define LOC_SVAL(Id, Parent)
52 #define NONLOC_SVAL(Id, Parent)
/external/clang/lib/Driver/
DTypes.cpp39 const char *types::getTypeName(ID Id) { in getTypeName() argument
40 return getInfo(Id).Name; in getTypeName()
43 types::ID types::getPreprocessedType(ID Id) { in getPreprocessedType() argument
44 return getInfo(Id).PreprocessedType; in getPreprocessedType()
47 const char *types::getTypeTempSuffix(ID Id, bool CLMode) { in getTypeTempSuffix() argument
48 if (Id == TY_Object && CLMode) in getTypeTempSuffix()
50 if (Id == TY_Image && CLMode) in getTypeTempSuffix()
52 if (Id == TY_PP_Asm && CLMode) in getTypeTempSuffix()
54 return getInfo(Id).TempSuffix; in getTypeTempSuffix()
57 bool types::onlyAssembleType(ID Id) { in onlyAssembleType() argument
[all …]
/external/clang/include/clang/Driver/
DTypes.h28 const char *getTypeName(ID Id);
33 ID getPreprocessedType(ID Id);
37 const char *getTypeTempSuffix(ID Id, bool CLMode = false);
40 bool onlyAssembleType(ID Id);
43 bool onlyPrecompileType(ID Id);
48 bool canTypeBeUserSpecified(ID Id);
53 bool appendSuffixForType(ID Id);
58 bool canLipoType(ID Id);
61 bool isAcceptedByClang(ID Id);
64 bool isCXX(ID Id);
[all …]
/external/clang/include/clang/Basic/
DOpenCLImageTypes.def11 // GENERIC_IMAGE_TYPE(Type, Id) - a generic image with its Id without an
13 // IMAGE_TYPE(Type, Id, SingletonId, AccessType, CGSuffix) - an image type
18 #define IMAGE_READ_TYPE(Type, Id) GENERIC_IMAGE_TYPE(Type, Id)
19 #define IMAGE_WRITE_TYPE(Type, Id)
20 #define IMAGE_READ_WRITE_TYPE(Type, Id)
25 #define IMAGE_READ_TYPE(Type, Id) \
26 IMAGE_TYPE(Type, Id##RO, Id##ROTy, read_only, ro)
29 #define IMAGE_WRITE_TYPE(Type, Id) \
30 IMAGE_TYPE(Type, Id##WO, Id##WOTy, write_only, wo)
33 #define IMAGE_READ_WRITE_TYPE(Type, Id) \
[all …]
/external/webrtc/talk/app/webrtc/
Dstatstypes.h250 typedef rtc::scoped_refptr<IdBase> Id; typedef
268 Value(StatsValueName name, const Id& value);
288 bool operator==(const Id& value) const;
298 const Id& id_val() const;
321 Id* id_;
334 explicit StatsReport(const Id& id);
337 static Id NewBandwidthEstimationId();
338 static Id NewTypedId(StatsType type, const std::string& id);
339 static Id NewTypedIntId(StatsType type, int id);
340 static Id NewIdWithDirection(
[all …]
Dstatstypes.cc258 StatsReport::Value::Value(StatsValueName name, const Id& value) in Value()
260 value_.id_ = new Id(value); in Value()
347 bool StatsReport::Value::operator==(const Id& value) const { in operator ==()
623 StatsReport::StatsReport(const Id& id) : id_(id), timestamp_(0.0) { in StatsReport()
628 StatsReport::Id StatsReport::NewBandwidthEstimationId() { in NewBandwidthEstimationId()
629 return Id(new RefCountedObject<BandwidthEstimationId>()); in NewBandwidthEstimationId()
633 StatsReport::Id StatsReport::NewTypedId(StatsType type, const std::string& id) { in NewTypedId()
634 return Id(new RefCountedObject<TypedId>(type, id)); in NewTypedId()
638 StatsReport::Id StatsReport::NewTypedIntId(StatsType type, int id) { in NewTypedIntId()
639 return Id(new RefCountedObject<TypedIntId>(type, id)); in NewTypedIntId()
[all …]
/external/llvm/include/llvm/ExecutionEngine/Orc/
DOrcRemoteTargetClient.h59 RCMemoryManager(OrcRemoteTargetClient &Client, ResourceIdMgr::ResourceId Id) in RCMemoryManager() argument
60 : Client(Client), Id(Id) { in RCMemoryManager()
61 DEBUG(dbgs() << "Created remote allocator " << Id << "\n"); in RCMemoryManager()
65 : Client(std::move(Other.Client)), Id(std::move(Other.Id)), in RCMemoryManager()
71 Id = std::move(Other.Id);
78 Client.destroyRemoteAllocator(Id); in ~RCMemoryManager()
79 DEBUG(dbgs() << "Destroyed remote allocator " << Id << "\n"); in ~RCMemoryManager()
88 DEBUG(dbgs() << "Allocator " << Id << " allocated code for " in allocateCodeSection()
101 DEBUG(dbgs() << "Allocator " << Id << " allocated ro-data for " in allocateDataSection()
110 DEBUG(dbgs() << "Allocator " << Id << " allocated rw-data for " in allocateDataSection()
[all …]
DOrcRemoteTargetServer.h59 Error handleKnownFunction(JITFuncId Id) { in handleKnownFunction() argument
62 DEBUG(dbgs() << "Handling known proc: " << getJITFuncIdName(Id) << "\n"); in handleKnownFunction()
64 switch (Id) { in handleKnownFunction()
122 auto Listen = [&](RPCChannel &C, uint32_t Id) { in requestCompile()
123 return handleKnownFunction(static_cast<JITFuncId>(Id)); in requestCompile()
226 Error handleCreateRemoteAllocator(ResourceIdMgr::ResourceId Id) { in handleCreateRemoteAllocator() argument
227 auto I = Allocators.find(Id); in handleCreateRemoteAllocator()
230 DEBUG(dbgs() << " Created allocator " << Id << "\n"); in handleCreateRemoteAllocator()
231 Allocators[Id] = Allocator(); in handleCreateRemoteAllocator()
235 Error handleCreateIndirectStubsOwner(ResourceIdMgr::ResourceId Id) { in handleCreateIndirectStubsOwner() argument
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DPacketDispatcher.java232 Integer Id = new Integer(replyPacket.getId()); in notifyThread() local
235 CommandPacket command = commands.remove(Id); in notifyThread()
241 + Id); in notifyThread()
278 Integer Id = new Integer(getNextId()); in waitForReply() local
279 command.setId(Id.intValue()); in waitForReply()
283 commands.put(Id, command); in waitForReply()
289 if (Id.intValue() >= begCommandId) { in waitForReply()
290 if ((Id.intValue() - begCommandId) < commandsNumberForTrace) { in waitForReply()
293 + Id.intValue() in waitForReply()
316 currentReply = replies.remove(Id); in waitForReply()
[all …]
/external/tcpdump/tests/
Dahcp-vv.out2 …count 1, Original Hopcount 1, Nonce 0x7ce31135, Source Id 6a:a3:c4:ff:fe:f4:84:1e, Destination Id
11 …count 1, Original Hopcount 1, Nonce 0x9dccbd40, Source Id 08:4b:37:1e:f3:6e:1e:dc, Destination Id
21 …count 1, Original Hopcount 1, Nonce 0x7de31135, Source Id 6a:a3:c4:ff:fe:f4:84:1e, Destination Id
30 …count 1, Original Hopcount 1, Nonce 0x9eccbd40, Source Id 08:4b:37:1e:f3:6e:1e:dc, Destination Id
40 …count 1, Original Hopcount 1, Nonce 0x7ee31135, Source Id 6a:a3:c4:ff:fe:f4:84:1e, Destination Id
49 …count 1, Original Hopcount 1, Nonce 0x9fccbd40, Source Id 08:4b:37:1e:f3:6e:1e:dc, Destination Id
59 …count 1, Original Hopcount 1, Nonce 0x7fe31135, Source Id 6a:a3:c4:ff:fe:f4:84:1e, Destination Id
68 …count 1, Original Hopcount 1, Nonce 0xa0ccbd40, Source Id 08:4b:37:1e:f3:6e:1e:dc, Destination Id
Dbabel1v.out33 …count 1, Original Hopcount 1, Nonce 0xde3e5127, Source Id 02:18:f3:ff:fe:a9:91:4e, Destination Id
36 …count 2, Original Hopcount 2, Nonce 0xdf3e5127, Source Id 02:18:f3:ff:fe:a9:91:4e, Destination Id
39 …count 1, Original Hopcount 1, Nonce 0xc9b83d0d, Source Id 79:40:14:7f:b6:6d:c3:29, Destination Id
42 …count 1, Original Hopcount 1, Nonce 0xe03e5127, Source Id 02:18:f3:ff:fe:a9:91:4e, Destination Id
45 …count 1, Original Hopcount 2, Nonce 0xdf3e5127, Source Id 02:18:f3:ff:fe:a9:91:4e, Destination Id
52 …count 2, Original Hopcount 2, Nonce 0xcab83d0d, Source Id 79:40:14:7f:b6:6d:c3:29, Destination Id
55 …count 1, Original Hopcount 1, Nonce 0xe13e5127, Source Id 02:18:f3:ff:fe:a9:91:4e, Destination Id
65 …count 1, Original Hopcount 1, Nonce 0xcbb83d0d, Source Id 79:40:14:7f:b6:6d:c3:29, Destination Id
/external/llvm/lib/Target/Hexagon/
DRDFGraph.cpp89 OS << Print<NodeId>(RA.Id, G) << '<' in printRefHeader()
162 OS << Print<NodeId>(I.Id, P.G); in operator <<()
203 OS << Print<NodeId>(P.Obj.Id, P.G) << ": phi [" in operator <<()
212 OS << Print<NodeId>(P.Obj.Id, P.G) << ": " << P.G.getTII().getName(Opc) in operator <<()
228 OS << "instr? " << Print<NodeId>(P.Obj.Id, P.G); in operator <<()
249 OS << Print<NodeId>(P.Obj.Id, P.G) << ": === BB#" << BB->getNumber() in operator <<()
271 OS << "DFG dump:[\n" << Print<NodeId>(P.Obj.Id, P.G) << ": Function: " in operator <<()
292 OS << Print<NodeId>(I->Id, P.G) in operator <<()
369 if (Next != NA.Id) { in append()
370 Next = NA.Id; in append()
[all …]
DRDFDeadCode.cpp78 if (!LiveNodes.count(RA.Id)) in scanInstr()
79 WorkQ.push_back(RA.Id); in scanInstr()
87 if (!LiveNodes.count(UA.Id)) in processDef()
88 WorkQ.push_back(UA.Id); in processDef()
91 LiveNodes.insert(TA.Id); in processDef()
97 if (!LiveNodes.count(DA.Id)) in processUse()
98 WorkQ.push_back(DA.Id); in processUse()
141 if (LiveNodes.count(DA.Id)) in collect()
149 if (!LiveNodes.count(RA.Id)) in collect()
150 DeadNodes.insert(RA.Id); in collect()
[all …]
DRDFCopy.cpp78 CopyMap.insert(std::make_pair(SA.Id, EM)); in recordCopy()
79 Copies.push_back(SA.Id); in recordCopy()
85 RDefMap[I.second][SA.Id] = FS->second.top()->Id; in recordCopy()
112 R.second[IA.Id] = F->second.top()->Id; in updateMap()
120 DFG.markBlock(BA.Id, DefM); in scanBlock()
138 DFG.releaseBlock(BA.Id, DefM); in scanBlock()
177 auto FS = CopyMap.find(SA.Id); in run()
192 NodeId RDefSR_SA = RDefSR[SA.Id]; in run()
205 if (RDefSR[IA.Id] != RDefSR_SA) in run()
221 UA.Addr->linkToDef(UA.Id, DFG.addr<DefNode*>(RDefSR_SA)); in run()
[all …]
/external/clang/unittests/ASTMatchers/
DASTMatchersTest.h295 explicit VerifyIdIsBoundTo(llvm::StringRef Id) in VerifyIdIsBoundTo() argument
296 : Id(Id), ExpectedCount(-1), Count(0) {} in VerifyIdIsBoundTo()
300 VerifyIdIsBoundTo(llvm::StringRef Id, int ExpectedCount) in VerifyIdIsBoundTo() argument
301 : Id(Id), ExpectedCount(ExpectedCount), Count(0) {} in VerifyIdIsBoundTo()
306 VerifyIdIsBoundTo(llvm::StringRef Id, llvm::StringRef ExpectedName,
308 : Id(Id), ExpectedCount(ExpectedCount), Count(0), in Id() function
327 if (Nodes->getNodeAs<T>(Id)) { in run()
329 if (const NamedDecl *Named = Nodes->getNodeAs<NamedDecl>(Id)) { in run()
332 Nodes->getNodeAs<NestedNameSpecifier>(Id)) { in run()
336 BoundNodes::IDToNodeMap::const_iterator I = M.find(Id); in run()
[all …]
/external/tensorflow/tensorflow/core/graph/
Dcostmodel.cc57 const int local_id = cm.Id(n); in MergeFromLocal()
58 const int global_id = Id(n); in MergeFromLocal()
154 const int id = Id(node); in SetNumOutputs()
168 const int id = Id(node); in RecordCount()
175 const int id = Id(node); in TotalCount()
181 const int id = Id(node); in RecordSize()
195 const int id = Id(node); in TotalBytes()
210 const int id = Id(node); in RecordTime()
219 const int id = Id(node); in TotalTime()
253 const int id = Id(node); in RecordMaxMemorySize()
[all …]
/external/tensorflow/tensorflow/stream_executor/
Dplugin_registry.h65 port::Status RegisterFactory(Platform::Id platform_id, PluginId plugin_id,
78 Platform::Id platform_id);
84 bool SetDefaultFactory(Platform::Id platform_id, PluginKind plugin_kind,
89 bool HasFactory(Platform::Id platform_id, PluginKind plugin_kind,
95 port::StatusOr<FactoryT> GetFactory(Platform::Id platform_id,
146 std::map<PlatformKind, Platform::Id> platform_id_by_kind_;
149 std::map<Platform::Id, PluginFactories> factories_;
155 std::map<Platform::Id, DefaultFactories> default_factories_;
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DTrie.h57 bool operator() (Node* N, char Id) { in operator()
58 return (N->Label[0] < Id); in operator()
82 char Id = N->Label[0]; in setEdge() local
84 Id, NodeCmp()); in setEdge()
131 inline Node* getEdge(char Id) { in getEdge() argument
134 Id, NodeCmp()); in getEdge()
135 if (I != Children.end() && (*I)->Label[0] == Id) in getEdge()
165 inline Node* splitEdge(Node* N, char Id, size_t index) { in splitEdge() argument
166 Node* eNode = N->getEdge(Id); in splitEdge()
211 char Id = s1[0]; in addString() local
[all …]
/external/nos/host/generic/nugget/include/
Dapplication.h172 #define DECLARE_APPLICATION_DATAGRAM(Id, Name, Version, From_fn, To_fn) \ argument
173 const struct app_info __keep CONCAT2(app_, Id) \
175 = { .api = { .id = Id, \
277 #define DECLARE_APPLICATION_TRANSPORT(Id, Name, Version, State, To_fn) \ argument
278 const struct app_info __keep CONCAT2(app_, Id) \
280 = { .api = { .id = Id, \
284 { .id = Id, .to_fn = To_fn, \
/external/llvm/lib/DebugInfo/PDB/DIA/
DDIALineNumber.cpp64 DWORD Id = 0; in getSourceFileId() local
65 return (S_OK == LineNumber->get_sourceFileId(&Id)) ? Id : 0; in getSourceFileId()
69 DWORD Id = 0; in getCompilandId() local
70 return (S_OK == LineNumber->get_compilandId(&Id)) ? Id : 0; in getCompilandId()
/external/lzma/CPP/7zip/Common/
DCreateCoder.cpp93 info.Id = prop.uhVal.QuadPart; in Load()
130 info.Id = prop.uhVal.QuadPart; in Load()
162 methodId = codec.Id; in FindMethod()
178 methodId = codec.Id; in FindMethod()
200 if (methodId == codec.Id) in FindMethod()
215 if (methodId == codec.Id) in FindMethod()
238 methodId = codec.Id; in FindHashMethod()
253 methodId = codec.Id; in FindHashMethod()
270 methods[i] = (*g_Hashers[i]).Id; in GetHashMethods()
278 methods.Add(__externalCodecs->Hashers[i].Id); in GetHashMethods()
[all …]
/external/ImageMagick/Magick++/demo/
Dsmile_anim.miff1 Id=ImageMagick
10 …�������������������������������������������������������������������������������������Id=ImageMagick
18 …�������������������������������������������������������������������������������������Id=ImageMagick
26 …�������������������������������������������������������������������������������������Id=ImageMagick
34 …�������������������������������������������������������������������������������������Id=ImageMagick
42 …�������������������������������������������������������������������������������������Id=ImageMagick
/external/mesa3d/src/mesa/drivers/dri/radeon/
Dradeon_queryobj.c43 __func__, query->Base.Id, (int) query->Base.Result); in radeonQueryGetResult()
63 query->Base.Id = id; in radeonNewQueryObject()
68 radeon_print(RADEON_STATE, RADEON_VERBOSE,"%s: query id %d\n", __func__, query->Base.Id); in radeonNewQueryObject()
77 radeon_print(RADEON_STATE, RADEON_NORMAL, "%s: query id %d\n", __func__, q->Id); in radeonDeleteQuery()
95 …radeon_print(RADEON_STATE, RADEON_VERBOSE, "%s: query id %d, bo %p, offset %d\n", __func__, q->Id,… in radeonWaitQuery()
108 radeon_print(RADEON_STATE, RADEON_NORMAL, "%s: query id %d\n", __func__, q->Id); in radeonBeginQuery()
137 …ADEON_NORMAL, "%s: query id %d, bo %p, offset %d\n", __func__, query->Base.Id, query->bo, query->c… in radeonEmitQueryEnd()
150 radeon_print(RADEON_STATE, RADEON_NORMAL, "%s: query id %d\n", __func__, q->Id); in radeonEndQuery()
161 radeon_print(RADEON_STATE, RADEON_TRACE, "%s: query id %d\n", __func__, q->Id); in radeonCheckQuery()
/external/mesa3d/src/mesa/drivers/dri/r200/
Dradeon_queryobj.c43 __func__, query->Base.Id, (int) query->Base.Result); in radeonQueryGetResult()
63 query->Base.Id = id; in radeonNewQueryObject()
68 radeon_print(RADEON_STATE, RADEON_VERBOSE,"%s: query id %d\n", __func__, query->Base.Id); in radeonNewQueryObject()
77 radeon_print(RADEON_STATE, RADEON_NORMAL, "%s: query id %d\n", __func__, q->Id); in radeonDeleteQuery()
95 …radeon_print(RADEON_STATE, RADEON_VERBOSE, "%s: query id %d, bo %p, offset %d\n", __func__, q->Id,… in radeonWaitQuery()
108 radeon_print(RADEON_STATE, RADEON_NORMAL, "%s: query id %d\n", __func__, q->Id); in radeonBeginQuery()
137 …ADEON_NORMAL, "%s: query id %d, bo %p, offset %d\n", __func__, query->Base.Id, query->bo, query->c… in radeonEmitQueryEnd()
150 radeon_print(RADEON_STATE, RADEON_NORMAL, "%s: query id %d\n", __func__, q->Id); in radeonEndQuery()
161 radeon_print(RADEON_STATE, RADEON_TRACE, "%s: query id %d\n", __func__, q->Id); in radeonCheckQuery()

12345678910>>...44