Home | History | Annotate | Download | only in jni

Lines Matching full:children

84 		box_clipnodes[i].children[side] = CONTENTS_EMPTY;
86 box_clipnodes[i].children[side^1] = i + 1;
88 box_clipnodes[i].children[side^1] = CONTENTS_SOLID;
185 struct areanode_s *children[2];
217 anode->children[0] = anode->children[1] = NULL;
235 anode->children[0] = SV_CreateAreaNode (depth+1, mins2, maxs2);
236 anode->children[1] = SV_CreateAreaNode (depth+1, mins1, maxs1);
316 SV_TouchLinks ( ent, node->children[0] );
318 SV_TouchLinks ( ent, node->children[1] );
360 SV_FindTouchedLeafs (ent, node->children[0]);
363 SV_FindTouchedLeafs (ent, node->children[1]);
454 node = node->children[0];
456 node = node->children[1];
510 num = node->children[1];
512 num = node->children[0];
630 return SV_RecursiveHullCheck (hull, node->children[0], p1f, p2f, p1, p2, trace);
632 return SV_RecursiveHullCheck (hull, node->children[1], p1f, p2f, p1, p2, trace);
635 return SV_RecursiveHullCheck (hull, node->children[0], p1f, p2f, p1, p2, trace);
637 return SV_RecursiveHullCheck (hull, node->children[1], p1f, p2f, p1, p2, trace);
657 if (!SV_RecursiveHullCheck (hull, node->children[side], p1f, midf, p1, mid, trace) )
661 if (SV_HullPointContents (sv_hullmodel, mid, node->children[side])
669 if (SV_HullPointContents (hull, node->children[side^1], mid)
672 return SV_RecursiveHullCheck (hull, node->children[side^1], midf, p2f, mid, p2, trace);
882 SV_ClipToLinks ( node->children[0], clip );
884 SV_ClipToLinks ( node->children[1], clip );