HomeSort by relevance Sort by last modified time
    Searched defs:subtree (Results 1 - 25 of 26) sorted by null

1 2

  /external/jemalloc/src/
rtree.c 35 rtree->levels[0].subtree = NULL;
41 rtree->levels[i].subtree = NULL;
48 rtree->levels[height-1].subtree = NULL;
85 rtree_node_elm_t *subtree = rtree->levels[i].subtree; local
86 if (subtree != NULL)
87 rtree_delete_subtree(rtree, subtree, i);
119 return (rtree_node_init(rtree, level, &rtree->levels[level].subtree));
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreePatternParser.java 75 Object subtree = parseTree(); local
76 adaptor.addChild(root, subtree);
  /libcore/ojluni/src/main/java/sun/security/x509/
DNSName.java 169 * <li>NAME_NARROWS = 1: input name narrows name (is lower in the naming subtree)
170 * <li>NAME_WIDENS = 2: input name widens name (is higher in the naming subtree)
227 * Return subtree depth of this name for purposes of determining
235 String subtree=name; local
239 for (; subtree.lastIndexOf('.') >= 0; i++) {
240 subtree=subtree.substring(0,subtree.lastIndexOf('.'));
RFC822Name.java 232 * Return subtree depth of this name for purposes of determining
239 String subtree=name; local
243 int atNdx = subtree.lastIndexOf('@');
246 subtree=subtree.substring(atNdx+1);
250 for (; subtree.lastIndexOf('.') >= 0; i++) {
251 subtree=subtree.substring(0,subtree.lastIndexOf('.'));
NameConstraintsExtension.java 94 GeneralSubtree subtree = excluded.get(i); local
95 if (subtree.getMinimum() != 0)
97 if (subtree.getMaximum() != -1)
104 GeneralSubtree subtree = permitted.get(i); local
105 if (subtree.getMinimum() != 0)
107 if (subtree.getMaximum() != -1)
509 // if name matches or narrows any excluded subtree,
540 // and Name does not match or narrow some permitted subtree,
  /external/jemalloc/include/jemalloc/internal/
rtree.h 47 * A non-NULL subtree points to a subtree rooted along the hypothetical
50 * subtree pointers may remain NULL.
54 * accessed via subtrees[2], the subtree prefixed by 0x0000 (excluding
70 rtree_node_elm_t *subtree; member in union:rtree_level_s::__anon12812
87 * bits to which subtree level to start at.
214 rtree_node_elm_t *subtree; local
217 subtree = rtree->levels[level].subtree;
218 if (!rtree_node_valid(subtree))
226 rtree_node_elm_t *subtree; local
    [all...]
  /external/ipsec-tools/src/racoon/
isakmp_xauth.h 138 int subtree; member in struct:xauth_ldap_config
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/BroadphaseCollision/
btQuantizedBvh.cpp 59 ///if the entire tree is small then subtree size, we need to create a header info for the tree
62 btBvhSubtreeInfo& subtree = m_SubtreeHeaders.expand(); local
63 subtree.setAabbFromQuantizeNode(m_quantizedContiguousNodes[0]);
64 subtree.m_rootNodeIndex = 0;
65 subtree.m_subtreeSize = m_quantizedContiguousNodes[0].isLeafNode() ? 1 : m_quantizedContiguousNodes[0].getEscapeIndex();
199 //escapeIndex is the number of nodes of this subtree
229 btBvhSubtreeInfo& subtree = m_SubtreeHeaders.expand(); local
230 subtree.setAabbFromQuantizeNode(leftChildNode);
231 subtree.m_rootNodeIndex = leftChildNodexIndex;
232 subtree.m_subtreeSize = leftSubTreeSize
237 btBvhSubtreeInfo& subtree = m_SubtreeHeaders.expand(); local
    [all...]
  /external/llvm/include/llvm/ADT/
IntervalMap.h 514 /// subtree - Access the i'th subtree reference in a branch node.
517 NodeRef &subtree(unsigned i) const { function in class:llvm::IntervalMapImpl::NodeRef
684 // The key array in a branch node holds the rightmost stop key of each subtree.
688 // It is unusual for a branch node to only have one subtree, but it can happen
701 const NodeRef &subtree(unsigned i) const { return this->first[i]; }
704 NodeRef &subtree(unsigned i) { return this->first[i]; }
706 /// findFrom - Find the first subtree after i that may contain x.
711 /// This is the first subtree that can possibly contain x.
720 /// safeFind - Find a subtree that is known to exist. This is the same a
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
PKIXNameConstraintValidator.java 119 * with the given subtree.
130 GeneralSubtree subtree = permitted[i]; local
131 Integer tagNo = Integers.valueOf(subtree.getBase().getTagNo());
136 ((Set)subtreesMap.get(tagNo)).add(subtree);
143 // go through all subtree groups
191 * Adds a subtree to the excluded set of these name constraints.
193 * @param subtree A subtree with an excluded GeneralName.
195 public void addExcludedSubtree(GeneralSubtree subtree)
197 GeneralName base = subtree.getBase()
368 ASN1Sequence subtree = (ASN1Sequence)it.next(); local
392 ASN1Sequence subtree = (ASN1Sequence)it.next(); local
421 ASN1Sequence subtree = (ASN1Sequence)_iter.next(); local
456 ASN1Sequence subtree = (ASN1Sequence)it.next(); local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXNameConstraintValidator.java 48 ASN1Sequence subtree)
50 if (subtree.size() < 1)
55 if (subtree.size() > dns.size())
60 for (int j = subtree.size() - 1; j >= 0; j--)
62 if (!subtree.getObjectAt(j).equals(dns.getObjectAt(j)))
99 ASN1Sequence subtree = (ASN1Sequence)it.next(); local
101 if (withinDNSubtree(dns, subtree))
108 "Subject distinguished name is not from a permitted subtree");
123 ASN1Sequence subtree = (ASN1Sequence)it.next(); local
125 if (withinDNSubtree(dns, subtree))
152 ASN1Sequence subtree = (ASN1Sequence)_iter.next(); local
187 ASN1Sequence subtree = (ASN1Sequence)it.next(); local
1544 GeneralSubtree subtree = permitted[i]; local
    [all...]
  /external/dbus/dbus/
dbus-object-tree.c 51 static DBusObjectSubtree* _dbus_object_subtree_ref (DBusObjectSubtree *subtree);
52 static void _dbus_object_subtree_unref (DBusObjectSubtree *subtree);
66 * Struct representing a single registered subtree handler, or node
67 * that's a parent of a registered subtree handler. If
158 * subtree nodes
163 find_subtree_recurse (DBusObjectSubtree *subtree,
180 subtree->name);
184 return subtree;
189 subtree->name, path[0]);
193 j = subtree->n_subtrees
327 DBusObjectSubtree *subtree; local
398 DBusObjectSubtree *subtree; local
448 DBusObjectSubtree *subtree; local
576 DBusObjectSubtree *subtree; local
756 DBusObjectSubtree *subtree; local
923 DBusObjectSubtree *subtree; local
950 DBusObjectSubtree *subtree; local
972 DBusObjectSubtree *subtree; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasViewInfo.java 1163 CanvasViewInfo subtree = createSubtree(parent, viewInfo, parentX, parentY); local
    [all...]
  /external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/
X509CertSelectorTest.java 1784 GeneralSubtree subtree = local
1936 GeneralSubtree subtree = local
    [all...]
  /external/libgdx/gdx/jni/gdx2d/
jpgd.cpp 2221 uint subtree; local
    [all...]
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.core.resources_3.10.0.v20150423-0755.jar 
  /prebuilts/tools/common/m2/repository/org/antlr/antlr-runtime/3.5.2/
antlr-runtime-3.5.2.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr-runtime/3.5.2/
antlr-runtime-3.5.2.jar 
  /prebuilts/tools/common/m2/repository/org/antlr/antlr4/4.5.3/
antlr4-4.5.3.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr4/4.5.3/
antlr4-4.5.3.jar 
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 
  /prebuilts/sdk/tools/jacks/
jack-3.36.CANDIDATE.jar 

Completed in 1851 milliseconds

1 2