Home
last modified time | relevance | path

Searched refs:FLOATSIGNBITNOTSET (Results 1 – 9 of 9) sorted by relevance

/dports/games/dhewm3/dhewm3-1.5.1/neo/idlib/geometry/
H A DWinding2D.cpp536 if ( FLOATSIGNBITSET( min ) & FLOATSIGNBITNOTSET( max ) ) { in PlaneDistance()
542 if ( FLOATSIGNBITSET( min ) & FLOATSIGNBITNOTSET( max ) ) { in PlaneDistance()
547 if ( FLOATSIGNBITNOTSET( min ) ) { in PlaneDistance()
666 if ( FLOATSIGNBITNOTSET( d1 ) & FLOATSIGNBITNOTSET( d2 ) ) { in LineIntersection()
671 if ( FLOATSIGNBITNOTSET( d1 ) & FLOATSIGNBITNOTSET( d2 ) ) { in LineIntersection()
H A DSurface.cpp711 if ( FLOATSIGNBITSET( min ) & FLOATSIGNBITNOTSET( max ) ) { in PlaneDistance()
717 if ( FLOATSIGNBITSET( min ) & FLOATSIGNBITNOTSET( max ) ) { in PlaneDistance()
722 if ( FLOATSIGNBITNOTSET( min ) ) { in PlaneDistance()
H A DWinding.cpp1269 if ( FLOATSIGNBITSET( min ) & FLOATSIGNBITNOTSET( max ) ) { in PlaneDistance()
1275 if ( FLOATSIGNBITSET( min ) & FLOATSIGNBITNOTSET( max ) ) { in PlaneDistance()
1280 if ( FLOATSIGNBITNOTSET( min ) ) { in PlaneDistance()
/dports/games/dhewm3/dhewm3-1.5.1/neo/idlib/bv/
H A DBox.cpp798 planeBits = FLOATSIGNBITNOTSET( f ); in GetProjectionSilhouetteVerts()
802 planeBits |= FLOATSIGNBITNOTSET( f ) << 2; in GetProjectionSilhouetteVerts()
806 planeBits |= FLOATSIGNBITNOTSET( f ) << 4; in GetProjectionSilhouetteVerts()
H A DFrustum.cpp986 y = ( 1 + FLOATSIGNBITNOTSET( p.y ) ); in IntersectsSphere()
989 z = ( 1 + FLOATSIGNBITNOTSET( p.z ) ); in IntersectsSphere()
2432 index = FLOATSIGNBITNOTSET( cornerVecs[i].x ); in ClipFrustumToBox()
2437 index = FLOATSIGNBITNOTSET( cornerVecs[i].y ); in ClipFrustumToBox()
2444 index = FLOATSIGNBITNOTSET( cornerVecs[i].z ); in ClipFrustumToBox()
/dports/games/dhewm3/dhewm3-1.5.1/neo/game/ai/
H A DAI_pathing.cpp289 bounds[FLOATSIGNBITNOTSET(delta.x)].x += delta.x; in GetFirstBlockingObstacle()
290 bounds[FLOATSIGNBITNOTSET(delta.y)].y += delta.y; in GetFirstBlockingObstacle()
786 bounds[FLOATSIGNBITNOTSET(curDelta.x)].x += curDelta.x; in OptimizePath()
787 bounds[FLOATSIGNBITNOTSET(curDelta.y)].y += curDelta.y; in OptimizePath()
/dports/games/dhewm3/dhewm3-1.5.1/neo/d3xp/ai/
H A DAI_pathing.cpp287 bounds[FLOATSIGNBITNOTSET(delta.x)].x += delta.x; in GetFirstBlockingObstacle()
288 bounds[FLOATSIGNBITNOTSET(delta.y)].y += delta.y; in GetFirstBlockingObstacle()
783 bounds[FLOATSIGNBITNOTSET(curDelta.x)].x += curDelta.x; in OptimizePath()
784 bounds[FLOATSIGNBITNOTSET(curDelta.y)].y += curDelta.y; in OptimizePath()
/dports/games/dhewm3/dhewm3-1.5.1/neo/idlib/math/
H A DMath.h68 #define FLOATSIGNBITNOTSET(f) ((~(*(const unsigned int *)&(f))) >> 31) macro
/dports/games/dhewm3/dhewm3-1.5.1/neo/cm/
H A DCollisionModel_translate.cpp371 if ( FLOATSIGNBITNOTSET(d2eps) ) { in CM_TranslationPlaneFraction()