/aosp_15_r20/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/ |
H A D | SAX2DTM2.java | 1296 int nodeID = makeNodeIdentity(node); in setStartNode() local 1299 if (nodeID == DTM.NULL) { in setStartNode() 1308 nodeID = _parent2(nodeID); in setStartNode() 1309 node = makeNodeHandle(nodeID); in setStartNode() 1314 while (nodeID != END) { in setStartNode() 1324 nodeID = _parent2(nodeID); in setStartNode() 1325 node = makeNodeHandle(nodeID); in setStartNode() 1423 int nodeID = makeNodeIdentity(node); in setStartNode() local 1426 if (nodeID == DTM.NULL) { in setStartNode() 1435 nodeID = _parent2(nodeID); in setStartNode() [all …]
|
/aosp_15_r20/external/mesa3d/src/intel/vulkan/grl/gpu/morton/ |
H A D | phase0.cl | 34 …sg_children.nodeID = (lane == 0) ? bnodes[current.nodeID].leftChild : bnodes[current.nodeID].right… 37 … sg_children.items = BinaryMortonCodeHierarchy_getNumPrimitives( bnodes, sg_children.nodeID ); 48 uniform uint bestNodeID = sub_group_broadcast( sg_children.nodeID, bestChild ); 50 …varying uint nodeID = (lane == bestChild) ? bnodes[bestNodeID].leftChild : bnodes[bestNodeID].righ… 54 sg_children.nodeID = nodeID; 55 sg_children.items = BinaryMortonCodeHierarchy_getNumPrimitives( bnodes, nodeID ); 143 …sg_children.nodeID = (lane == 0) ? bnodes[current.nodeID].leftChild : bnodes[current.nodeID].right… 146 … sg_children.items = BinaryMortonCodeHierarchy_getNumPrimitives( bnodes, sg_children.nodeID ); 157 uniform uint bestNodeID = sub_group_broadcast( sg_children.nodeID, bestChild ); 159 …varying uint nodeID = (lane == bestChild) ? bnodes[bestNodeID].leftChild : bnodes[bestNodeID].righ… [all …]
|
H A D | post_sort.cl | 220 children[0].nodeID = bnodes[current->nodeID].leftChild; 221 children[0].items = BinaryMortonCodeHierarchy_getNumPrimitives(bnodes, children[0].nodeID); 222 children[1].nodeID = bnodes[current->nodeID].rightChild; 223 children[1].items = BinaryMortonCodeHierarchy_getNumPrimitives(bnodes, children[1].nodeID); 250 const uint bestNodeID = children[bestChild].nodeID; 253 lrecord->nodeID = bnodes[bestNodeID].leftChild; 254 lrecord->items = BinaryMortonCodeHierarchy_getNumPrimitives(bnodes, lrecord->nodeID); 255 rrecord->nodeID = bnodes[bestNodeID].rightChild; 256 rrecord->items = BinaryMortonCodeHierarchy_getNumPrimitives(bnodes, rrecord->nodeID); 331 const uint nodeID, [all …]
|
H A D | phase1.cl | 71 varying uint nodeID = (lane == bestChild) ? leftOfBest : rightOfBest; 75 … sg_children = TranslateToLocalRecord(BinaryMortonCodeHierarchy_getEntry(bnodes, nodeID)); 547 …rd = TranslateToLocalRecord(BinaryMortonCodeHierarchy_getEntry(bnodes, mortonGlobalRecord.nodeID)); 686 … const uint primrefID = BinaryMortonCodeHierarchy_getRangeStart( bnodes, current.nodeID );
|
/aosp_15_r20/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
H A D | DTMDefaultBaseIterators.java | 1661 int nodeID = makeNodeIdentity(node); in setStartNode() local 1664 nodeID = _parent(nodeID); in setStartNode() 1665 node = makeNodeHandle(nodeID); in setStartNode() 1670 while (nodeID != END) { in setStartNode() 1672 nodeID = _parent(nodeID); in setStartNode() 1673 node = makeNodeHandle(nodeID); in setStartNode() 1770 int nodeID = makeNodeIdentity(node); in setStartNode() local 1774 nodeID = _parent(nodeID); in setStartNode() 1780 while (nodeID != END) { in setStartNode() 1781 int eType = _exptype(nodeID); in setStartNode() [all …]
|
H A D | DTMDefaultBase.java | 1061 int nodeID = makeNodeIdentity(nodeHandle); in getFirstAttribute() local 1063 return makeNodeHandle(getFirstAttributeIdentity(nodeID)); in getFirstAttribute() 1188 int nodeID = makeNodeIdentity(nodeHandle); in getPreviousSibling() local 1189 int parent = _parent(nodeID); in getPreviousSibling() 1192 while (node != nodeID) in getPreviousSibling() 1211 int nodeID = makeNodeIdentity(nodeHandle); in getNextAttribute() local 1213 if (_type(nodeID) == DTM.ATTRIBUTE_NODE) { in getNextAttribute() 1214 return makeNodeHandle(getNextAttributeIdentity(nodeID)); in getNextAttribute()
|
/aosp_15_r20/external/mesa3d/src/intel/vulkan/grl/gpu/ |
H A D | common.h | 233 …ryMortonCodeHierarchy_getNumPrimitives(global struct BinaryMortonCodeHierarchy *nodes, uint nodeID) in BinaryMortonCodeHierarchy_getNumPrimitives() argument 236 if (nodeID & (uint)(1 << 31)) in BinaryMortonCodeHierarchy_getNumPrimitives() 241 return nodes[nodeID].range.end - nodes[nodeID].range.start + 1; in BinaryMortonCodeHierarchy_getNumPrimitives() 244 …chy BinaryMortonCodeHierarchy_getEntry(global struct BinaryMortonCodeHierarchy* nodes, uint nodeID) in BinaryMortonCodeHierarchy_getEntry() argument 248 if (nodeID & (uint)(1 << 31)) { in BinaryMortonCodeHierarchy_getEntry() 250 uint rangeStart = nodeID ^ (uint)(1 << 31); in BinaryMortonCodeHierarchy_getEntry() 255 entry = nodes[nodeID]; in BinaryMortonCodeHierarchy_getEntry() 261 …inaryMortonCodeHierarchy_getRangeStart(global struct BinaryMortonCodeHierarchy *nodes, uint nodeID) in BinaryMortonCodeHierarchy_getRangeStart() argument 264 if (nodeID & (uint)(1 << 31)) in BinaryMortonCodeHierarchy_getRangeStart() 265 return nodeID ^ (uint)(1 << 31); in BinaryMortonCodeHierarchy_getRangeStart() [all …]
|
H A D | shared.h | 131 unsigned int nodeID; member
|
H A D | bvh_build_DFS.cl | 423 GRL_INLINE ushort LocalBVH2_GetNodeArea( local struct LocalBVH2* tree, ushort nodeID ) 425 return (tree->nodes[nodeID] >> 18) & 0x1FFF; 428 GRL_INLINE bool LocalBVH2_IsInnerNode( local struct LocalBVH2* tree, ushort nodeID ) 430 return (tree->nodes[nodeID] & 0x80000000) != 0; 434 GRL_INLINE ushort2 LocalBVH2_GetChildIndices( local struct LocalBVH2* tree, ushort nodeID ) 436 ushort idx = ((tree->nodes[nodeID] >> 9) & 0x1FF);
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/ir/ |
D | scc.go | 35 nodeID map[*Func]uint32 member 55 v.nodeID = make(map[*Func]uint32) 64 if id := v.nodeID[n]; id > 0 { 71 v.nodeID[n] = id 113 v.nodeID[x] = ^uint32(0)
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/graph/ |
D | dotgraph.go | 141 func (b *builder) addNode(node *Node, nodeID int, maxFlat float64) { 190 label, nodeID, fontSize, shape, escapeForDot(node.Info.PrintableName()), cumValue, 212 fmt.Fprintf(b, "N%d [%s]\n", nodeID, attr) 216 func (b *builder) addNodelets(node *Node, nodeID int) bool { 250 … = "%s" id="N%d_%d" fontsize=8 shape=box3d tooltip="%s"]`+"\n", nodeID, i, t.Name, nodeID, i, weig… 251 …%d_%d [label=" %s" weight=100 tooltip="%s" labeltooltip="%s"]`+"\n", nodeID, nodeID, i, weight, we… 253 nodelets += b.numericNodelets(nts, maxNodelets, flatTags, fmt.Sprintf(`N%d_%d`, nodeID, i)) 258 nodelets += b.numericNodelets(nts, maxNodelets, flatTags, fmt.Sprintf(`N%d`, nodeID))
|
/aosp_15_r20/external/angle/src/libANGLE/renderer/vulkan/ |
H A D | CommandGraph.cpp | 1213 int nodeID = nodeIDMap[node]; in dumpGraphDotFile() local 1300 out << " " << nodeID << "[label =<" << label << "<BR/><FONT POINT-SIZE=\"10\">Node ID " in dumpGraphDotFile() 1301 << nodeID << node->dumpCommandsForDiagnostics("<BR/>") << "</FONT>>];" << std::endl; in dumpGraphDotFile() 1306 int nodeID = nodeIDMap[node]; in dumpGraphDotFile() local 1311 out << " " << parentID << " -> " << nodeID << ";" << std::endl; in dumpGraphDotFile()
|
/aosp_15_r20/out/soong/ndk/sysroot/usr/include/OMXAL/ |
D | OpenMAXAL.h | 1364 XAint32 nodeID, 1378 XAint32 nodeID, 1385 XAint32 nodeID, 1391 XAint32 nodeID, 1398 XAint32 nodeID, 1404 XAint32 nodeID,
|
/aosp_15_r20/frameworks/wilhelm/include/OMXAL/ |
H A D | OpenMAXAL.h | 1364 XAint32 nodeID, 1378 XAint32 nodeID, 1385 XAint32 nodeID, 1391 XAint32 nodeID, 1398 XAint32 nodeID, 1404 XAint32 nodeID,
|
/aosp_15_r20/external/skia/include/docs/ |
H A D | SkPDFDocument.h | 201 SK_API void SetNodeId(SkCanvas* dst, int nodeID);
|
/aosp_15_r20/external/python/cpython2/Mac/Modules/file/ |
D | _Filemodule.c | 242 return Py_BuildValue("l", self->ob_itself.nodeID); in FSCatalogInfo_get_nodeID() 247 return PyArg_Parse(v, "l", &self->ob_itself.nodeID)-1; in FSCatalogInfo_set_nodeID() 461 &((FSCatalogInfoObject *)_self)->ob_itself.nodeID, in FSCatalogInfo_tp_init()
|
/aosp_15_r20/out/soong/.intermediates/external/apache-xml/apache-xml/android_common_apex31/withres/ |
D | apache-xml.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |
/aosp_15_r20/out/target/common/obj/JAVA_LIBRARIES/apache-xml.com.android.art.debug_intermediates/ |
D | classes.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |
/aosp_15_r20/out/soong/.intermediates/external/apache-xml/apache-xml/android_common_apex31/javac/ |
D | apache-xml.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |
/aosp_15_r20/prebuilts/module_sdk/art/1/java/ |
D | apache-xml.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |
/aosp_15_r20/external/spdx-tools/rdfloader/parser2v3/ |
H A D | parse_license_test.go | 144 <spdx:LicenseException rdf:nodeID="A1">
|
/aosp_15_r20/external/spdx-tools/rdfloader/parser2v2/ |
H A D | parse_license_test.go | 144 <spdx:LicenseException rdf:nodeID="A1">
|
/aosp_15_r20/external/spdx-tools/examples/sample-docs/rdf/ |
H A D | SPDXRdfExample-v2.2.spdx.rdf | 533 <spdx:Checksum rdf:nodeID="A0"> 759 <spdx:Checksum rdf:nodeID="A1"> 776 <spdx:checksum rdf:nodeID="A1"/> 1163 <spdx:checksum rdf:nodeID="A0"/>
|
/aosp_15_r20/external/icu/tools/srcgen/currysrc/libs/ |
HD | org.eclipse.core.resources_3.13.0.v20180512-1138.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSE_.SF
META-INF/ECLIPSE_ ... |
/aosp_15_r20/prebuilts/jdk/jdk8/linux-x86/jre/lib/ |
D | rt.jar | META-INF/
META-INF/MANIFEST.MF
com/oracle/net/Sdp$ ... |