HomeSort by relevance Sort by last modified time
    Searched refs:leaf (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/quake/quake/src/QW/client/
gl_refrag.c 59 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;
r_efrag.c 60 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, so it'
    [all...]
render.h 30 struct mleaf_s *leaf; member in struct:efrag_s
53 // found in an active leaf
model.h 141 // common with leaf
169 // leaf specific
175 int key; // BSP sequence number for leaf's contents
400 byte *Mod_LeafPVS (mleaf_t *leaf, model_t *model);
  /external/quake/quake/src/WinQuake/
gl_refrag.cpp 59 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;
r_efrag.cpp 60 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, so it's
    [all...]
render.h 32 struct mleaf_s *leaf; member in struct:efrag_s
60 // found in an active leaf
model.h 130 // common with leaf
158 // leaf specific
164 int key; // BSP sequence number for leaf's contents
380 byte *Mod_LeafPVS (mleaf_t *leaf, model_t *model);
  /external/webkit/WebCore/rendering/
InlineBox.cpp 242 InlineBox* leaf = 0; local
243 for (InlineBox* box = nextOnLine(); box && !leaf; box = box->nextOnLine())
244 leaf = box->isLeaf() ? box : static_cast<InlineFlowBox*>(box)->firstLeafChild();
245 if (!leaf && parent())
246 leaf = parent()->nextLeafChild();
247 return leaf;
252 InlineBox* leaf = 0; local
253 for (InlineBox* box = prevOnLine(); box && !leaf; box = box->prevOnLine())
254 leaf = box->isLeaf() ? box : static_cast<InlineFlowBox*>(box)->lastLeafChild();
255 if (!leaf && parent()
    [all...]
RootInlineBox.cpp 359 static bool isEditableLeaf(InlineBox* leaf)
361 return leaf && leaf->renderer() && leaf->renderer()->node() && leaf->renderer()->node()->isContentEditable();
383 for (InlineBox* leaf = firstLeaf; leaf; leaf = leaf->nextLeafChild()) {
384 if (!leaf->renderer()->isListMarker() && (!onlyEditableLeaves || isEditableLeaf(leaf)))
    [all...]
InlineFlowBox.cpp 1048 InlineBox* leaf = 0; local
1056 InlineBox* leaf = 0; local
    [all...]
  /external/webkit/JavaScriptCore/wtf/
TCPageMap.h 104 // Put 32 entries in the root and (2^BITS)/32 entries in each leaf.
111 // Leaf node
112 struct Leaf {
116 Leaf* root_[ROOT_LENGTH]; // Pointers to 32 child nodes
147 Leaf* leaf = reinterpret_cast<Leaf*>((*allocator_)(sizeof(Leaf))); local
148 if (leaf == NULL) return false;
149 memset(leaf, 0, sizeof(*leaf))
259 Leaf* leaf = reinterpret_cast<Leaf*>((*allocator_)(sizeof(Leaf))); local
    [all...]
  /frameworks/base/include/utils/
String8.h 289 * If leaf is a fully qualified path (i.e. starts with '/', it
292 String8& appendPath(const char* leaf);
293 String8& appendPath(const String8& leaf) { return appendPath(leaf.string()); }
298 String8 appendPathCopy(const char* leaf) const
299 { String8 p(*this); p.appendPath(leaf); return p; }
300 String8 appendPathCopy(const String8& leaf) const { return appendPathCopy(leaf.string()); }
  /device/samsung/crespo/alsa-utils/alsactl/
state.c 60 snd_config_t *leaf; local
61 err = snd_config_make_integer(&leaf, id);
64 err = snd_config_add(father, leaf);
66 snd_config_delete(leaf);
69 err = snd_config_set_integer(leaf, integer);
71 snd_config_delete(leaf);
80 snd_config_t *leaf; local
81 err = snd_config_make_integer64(&leaf, id);
84 err = snd_config_add(father, leaf);
86 snd_config_delete(leaf);
100 snd_config_t *leaf; local
121 snd_config_t *leaf; local
    [all...]
  /external/junit/src/junit/swingui/
TestSuitePanel.java 56 boolean sel, boolean expanded, boolean leaf, int row, boolean hasFocus) {
58 Component c= super.getTreeCellRendererComponent(tree, value, sel, expanded, leaf, row, hasFocus);
  /device/samsung/crespo/alsa-lib/include/
search.h 124 leaf enumerator in enum:__anon1375
150 or leaf. */
158 /* Destroy the whole tree, call FREEFCT for each node or leaf. */
conf.h 111 int snd_config_add(snd_config_t *config, snd_config_t *leaf);
  /external/qemu/elff/
dwarf_die.cc 113 * 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/
sv_send.c 259 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;
pr_cmds.c 568 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/grub/netboot/
tulip.c 841 struct medialeaf *leaf = &mtable->mleaf[i];
844 leaf->type = 0;
845 leaf->media = p[0] & 0x3f;
846 leaf->leafdata = p;
851 switch(leaf->type = p[1]) {
854 leaf->media = p[2] & 0x0f;
858 leaf->media = 11;
835 struct medialeaf *leaf = &mtable->mleaf[i]; local
    [all...]
  /frameworks/base/cmds/runtime/
main_runtime.cpp 310 String8 leaf(path.getPathLeaf());
312 args.insertAt(leaf.string(), 0);
318 LOGE("*** fork of child %s failed: %s", leaf.string(), strerror(err));
  /external/chromium/base/
file_path_unittest.cc 299 FilePath::StringType leaf(cases[i].inputs[1]);
300 FilePath observed_str = root.Append(leaf);
302 "i: " << i << ", root: " << root.value() << ", leaf: " << leaf;
303 FilePath observed_path = root.Append(FilePath(leaf));
305 "i: " << i << ", root: " << root.value() << ", leaf: " << leaf;
310 std::string ascii = WideToASCII(leaf);
312 std::string ascii = leaf;
316 "i: " << i << ", root: " << root.value() << ", leaf: " << leaf
    [all...]
  /build/tools/atree/
files.cpp 23 path_append(const string& base, const string& leaf)
26 if (base.length() > 0 && leaf.length() > 0) {
29 full += leaf;
  /frameworks/base/tools/aapt/
AaptAssets.h 202 AaptGroup(const String8& leaf, const String8& path)
203 : mLeaf(leaf), mPath(path) { }
235 AaptDir(const String8& leaf, const String8& path)
236 : mLeaf(leaf), mPath(path) { }

Completed in 369 milliseconds

1 2 3