Searched defs:leaf (Results 1 - 25 of 34) sorted by relevance

12

/external/quake/quake/src/QW/client/
H A Dgl_refrag.c59 prev = &ef->leaf->efrags;
94 mleaf_t *leaf; local
102 // add an efrag if the node is a leaf
109 leaf = (mleaf_t *)node;
127 // set the leaf links
128 ef->leaf = leaf;
129 ef->leafnext = leaf->efrags;
130 leaf->efrags = ef;
H A Dr_efrag.c60 prev = &ef->leaf->efrags;
95 mleaf_t *leaf; local
103 // add an efrag if the node is a leaf
110 leaf = (mleaf_t *)node;
128 // set the leaf links
129 ef->leaf = leaf;
130 ef->leafnext = leaf->efrags;
131 leaf->efrags = ef;
174 r_pefragtopnode = node; // we've reached a non-solid leaf, s
[all...]
H A Drender.h30 struct mleaf_s *leaf; member in struct:efrag_s
53 // found in an active leaf
H A Dgl_model.c156 byte *Mod_LeafPVS (mleaf_t *leaf, model_t *model) argument
158 if (leaf == model->leafs)
160 return Mod_DecompressVis (leaf->compressed_vis, model);
H A Dmodel.c154 byte *Mod_LeafPVS (mleaf_t *leaf, model_t *model) argument
156 if (leaf == model->leafs)
158 return Mod_DecompressVis (leaf->compressed_vis, model);
/external/quake/quake/src/WinQuake/
H A Dgl_refrag.cpp59 prev = &ef->leaf->efrags;
94 mleaf_t *leaf; local
102 // add an efrag if the node is a leaf
109 leaf = (mleaf_t *)node;
127 // set the leaf links
128 ef->leaf = leaf;
129 ef->leafnext = leaf->efrags;
130 leaf->efrags = ef;
H A Dr_efrag.cpp60 prev = &ef->leaf->efrags;
95 mleaf_t *leaf; local
103 // add an efrag if the node is a leaf
110 leaf = (mleaf_t *)node;
128 // set the leaf links
129 ef->leaf = leaf;
130 ef->leafnext = leaf->efrags;
131 leaf->efrags = ef;
174 r_pefragtopnode = node; // we've reached a non-solid leaf, s
[all...]
H A Drender.h32 struct mleaf_s *leaf; member in struct:efrag_s
60 // found in an active leaf
H A Dworld.cpp183 int axis; // -1 = leaf node
331 mleaf_t *leaf; local
338 // add an efrag if the node is a leaf
345 leaf = (mleaf_t *)node;
346 leafnum = leaf - sv.worldmodel->leafs - 1;
H A Dgl_model.cpp156 byte *Mod_LeafPVS (mleaf_t *leaf, model_t *model) argument
158 if (leaf == model->leafs)
160 return Mod_DecompressVis (leaf->compressed_vis, model);
H A Dmodel.cpp155 byte *Mod_LeafPVS (mleaf_t *leaf, model_t *model) argument
157 if (leaf == model->leafs)
159 return Mod_DecompressVis (leaf->compressed_vis, model);
H A Dpr_cmds.cpp691 mleaf_t *leaf; local
729 leaf = Mod_PointInLeaf (org, sv.worldmodel);
730 pvs = Mod_LeafPVS (leaf, sv.worldmodel);
756 mleaf_t *leaf; local
778 leaf = Mod_PointInLeaf (view, sv.worldmodel);
779 l = (leaf - sv.worldmodel->leafs) - 1;
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DRunnerController.java203 boolean selected, boolean expanded, boolean leaf, int row,
202 getTreeCellRendererComponent(JTree tree, Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_mutex.cc26 // The leaf mutexes can be locked under any other mutexes.
48 bool leaf[N] = {}; local
55 CHECK(!leaf[i]);
56 leaf[i] = true;
65 CHECK(!leaf[i] || cnt[i] == 0);
67 // Add leaf mutexes.
69 if (!leaf[i])
72 if (i == j || leaf[j] || j == MutexTypeInvalid)
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
H A DOctnode.java68 boolean leaf = false; field in class:Octnode
115 leaf = true;
/external/qemu/elff/
H A Ddwarf_die.cc113 * Lets iterate through child DIEs to find the leaf (last DIE) that contains
117 DIEObject* leaf = child->get_leaf_for_address(address); local
118 if (leaf != NULL) {
119 return leaf;
123 /* No child DIE contains this address. This DIE is the leaf. */
/external/quake/quake/src/QW/server/
H A Dsv_send.c259 mleaf_t *leaf; local
264 leaf = Mod_PointInLeaf (origin, sv.worldmodel);
265 if (!leaf)
268 leafnum = leaf - sv.worldmodel->leafs;
277 mask = sv.pvs; // leaf 0 is everything;
310 leaf = Mod_PointInLeaf (client->edict->v.origin, sv.worldmodel);
311 if (leaf)
314 leafnum = leaf - sv.worldmodel->leafs - 1;
H A Dworld.c321 mleaf_t *leaf; local
328 // add an efrag if the node is a leaf
335 leaf = (mleaf_t *)node;
336 leafnum = leaf - sv.worldmodel->leafs - 1;
H A Dmodel.c135 byte *Mod_LeafPVS (mleaf_t *leaf, model_t *model) argument
137 if (leaf == model->leafs)
139 return Mod_DecompressVis (leaf->compressed_vis, model);
H A Dpr_cmds.c568 mleaf_t *leaf; local
606 leaf = Mod_PointInLeaf (org, sv.worldmodel);
607 pvs = Mod_LeafPVS (leaf, sv.worldmodel);
633 mleaf_t *leaf; local
655 leaf = Mod_PointInLeaf (view, sv.worldmodel);
656 l = (leaf - sv.worldmodel->leafs) - 1;
/external/valgrind/main/gdbserver_tests/
H A Dt.c97 static void leaf(void) {} function
101 leaf(); // ensures not leaf, as ppc unwind implies VEX iropt precise exns
/external/webkit/Source/JavaScriptCore/wtf/
H A DTCPageMap.h104 // Put 32 entries in the root and (2^BITS)/32 entries in each leaf.
147 Leaf* leaf = reinterpret_cast<Leaf*>((*allocator_)(sizeof(Leaf))); local
148 if (leaf == NULL) return false;
149 memset(leaf, 0, sizeof(*leaf));
150 root_[i1] = leaf;
153 // Advance key past whatever is covered by this leaf node
196 // How many bits should we consume at leaf level
257 // Make leaf node if necessary
259 Leaf* leaf local
[all...]
/external/webkit/Source/WebCore/rendering/
H A DInlineBox.cpp246 InlineBox* leaf = 0; local
247 for (InlineBox* box = nextOnLine(); box && !leaf; box = box->nextOnLine())
248 leaf = box->isLeaf() ? box : static_cast<InlineFlowBox*>(box)->firstLeafChild();
249 if (!leaf && parent())
250 leaf = parent()->nextLeafChild();
251 return leaf;
256 InlineBox* leaf = 0; local
257 for (InlineBox* box = prevOnLine(); box && !leaf; box = box->prevOnLine())
258 leaf = box->isLeaf() ? box : static_cast<InlineFlowBox*>(box)->lastLeafChild();
259 if (!leaf
[all...]
H A DRootInlineBox.cpp456 static bool isEditableLeaf(InlineBox* leaf) argument
458 return leaf && leaf->renderer() && leaf->renderer()->node() && leaf->renderer()->node()->rendererIsEditable();
480 for (InlineBox* leaf = firstLeaf; leaf; leaf = leaf->nextLeafChild()) {
481 if (!leaf
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtree.rb213 [leaf] a node that does not have any children
250 def leaf?
444 alias leaf? empty?

Completed in 2937 milliseconds

12