library of assembled shared sources |
http://lass.cocamware.com |
#include "common_macros.inl"
Go to the source code of this file.
Defines | |
#define | LASS_WRAP(x) x |
#define | LASS_STRINGIFY(iA) LASS_STRINGIFY_IMPL(iA) |
convert to string at preprocessor time. | |
#define | LASS_STRINGIFY_IMPL(iA) #iA |
#define | LASS_CONCATENATE(iA, iB) LASS_CONCATENATE_IMPL(iA, iB) |
concatenate two words at preprocessor time. | |
#define | LASS_CONCATENATE_IMPL(iA, iB) iA##iB |
#define | LASS_CONCATENATE_3(iA, iB, iC) LASS_CONCATENATE_3_IMPL(iA, iB, iC) |
concatenate three words at preprocessor time. | |
#define | LASS_CONCATENATE_3_IMPL(iA, iB, iC) iA##iB##iC |
#define | LASS_BREAK_HERE __asm__("int3") |
user breakpoint | |
#define | LASS_UNIQUENAME(iPrefix) LASS_CONCATENATE(iPrefix,LASS_LINE) |
create a unique name based on a prefix and line number | |
#define | LASS_FILE __FILE__ |
current file | |
#define | LASS_LINE __LINE__ |
current line (stringified!) | |
#define | LASS_HERE LASS_FILE "(" LASS_STRINGIFY(LASS_LINE) ")" |
#define | LASS_FUNCTION "??" |
current function | |
#define | LASS_PRETTY_FUNCTION LASS_HERE |
#define | LASS_ASSERT(iExpression) LASS_ASSERT_IMPL( iExpression ) |
#define | LASS_ASSERT_UNREACHABLE LASS_ASSERT_UNREACHABLE_IMPL |
#define | LASS_WARNING(iMessage) LASS_WARNING_IMPL( iMessage ) |
#define | LASS_WARNING_ONCE_EX(iMessage, iUniqueName) LASS_WARNING_ONCE_IMPL( iMessage, LASS_UNIQUENAME(iUniqueName) ) |
#define | LASS_WARNING_ONCE(iMessage) LASS_WARNING_ONCE_EX( iMessage, lassWarnOnce ) |
#define | LASS_EVAL(iExpression) LASS_EVAL_IMPL( iExpression ) |
#define | LASS_LOG(iMessage) LASS_LOG_IMPL( iMessage ) |
#define | LASS_EXECUTE_BEFORE_MAIN(x) LASS_EXECUTE_BEFORE_MAIN_EX(lassDummyName, x) |
Executes code before the main has actually begun. | |
#define | LASS_EXECUTE_BEFORE_MAIN_EX(iPrefix, x) |
Same as LASS_EXECUTE_BEFORE_MAIN but with an additional parameter that let's you specify the used prefix. | |
#define | LASS_NOTE(iMessage) message(LASS_FILE "(" LASS_STRINGIFY(LASS_LINE) "):\n[LASS BUILD MSG] " iMessage) |
pragma for leaving notes in build window | |
#define | LASS_TODO(iMessage) message(LASS_FILE "(" LASS_STRINGIFY(LASS_LINE) "):\n[LASS BUILD MSG] *** TODO: " iMessage " ***") |
pragma for leaving todo notes in build window | |
#define | LASS_FIXME(iMessage) message(LASS_FILE "(" LASS_STRINGIFY(LASS_LINE) "):\n[LASS BUILD MSG] *** FIXME: " iMessage " ***") |
pragma for leaving fixme notes in build window | |
#define | LASS_UNUSED(x) x |
tell the compiler that some variable may stay unused. |
The contents of this file are subject to the Common Public Attribution License Version 1.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://lass.sourceforge.net/cpal-license. The License is based on the Mozilla Public License Version 1.1 but Sections 14 and 15 have been added to cover use of software over a computer network and provide for limited attribution for the Original Developer. In addition, Exhibit A has been modified to be consistent with Exhibit B.
Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.
The Original Code is LASS - Library of Assembled Shared Sources.
The Initial Developer of the Original Code is Bram de Greve and Tom De Muer. The Original Developer is the Initial Developer.
All portions of the code written by the Initial Developer are: Copyright (C) 2004-2007 the Initial Developer. All Rights Reserved.
Contributor(s):
Alternatively, the contents of this file may be used under the terms of the GNU General Public License Version 2 or later (the GPL), in which case the provisions of GPL are applicable instead of those above. If you wish to allow use of your version of this file only under the terms of the GPL and not to allow others to use your version of this file under the CPAL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the GPL License. If you do not delete the provisions above, a recipient may use your version of this file under either the CPAL or the GPL.
*** END LICENSE INFORMATION ***
Definition in file common_macros.h.
#define LASS_WRAP | ( | x | ) | x |
Definition at line 55 of file common_macros.h.
#define LASS_STRINGIFY_IMPL | ( | iA | ) | #iA |
Definition at line 63 of file common_macros.h.
#define LASS_CONCATENATE_IMPL | ( | iA, | |||
iB | ) | iA##iB |
Definition at line 69 of file common_macros.h.
#define LASS_CONCATENATE_3_IMPL | ( | iA, | |||
iB, | |||||
iC | ) | iA##iB##iC |
Definition at line 75 of file common_macros.h.
#define LASS_HERE LASS_FILE "(" LASS_STRINGIFY(LASS_LINE) ")" |
Definition at line 109 of file common_macros.h.
#define LASS_PRETTY_FUNCTION LASS_HERE |
Definition at line 119 of file common_macros.h.
Referenced by lass::python::impl::FunctorPythonRBase< R >::call(), and lass::python::impl::FunctorPythonBase::call().
#define LASS_ASSERT | ( | iExpression | ) | LASS_ASSERT_IMPL( iExpression ) |
Definition at line 130 of file common_macros.h.
Referenced by lass::prim::TriangleMesh3D< T, BoundingVolumeHierarchy, SplitHeuristics >::aabb(), lass::prim::Aabb2D< T, MinMaxPolicy >::Aabb2D(), lass::prim::Aabb3D< T, MinMaxPolicy >::Aabb3D(), lass::io::impl::SocketImpl::accept(), lass::io::Socket::accept(), lass::python::impl::addClassInnerClass(), lass::python::impl::addClassMethod(), lass::python::impl::addClassStaticConst(), lass::python::impl::addClassStaticMethod(), lass::spat::AabpTree< ObjectType, ObjectTraits, SplitHeuristics >::addInternalNode(), lass::spat::AabbTree< ObjectType, ObjectTraits, SplitHeuristics >::addInternalNode(), lass::spat::AabpTree< ObjectType, ObjectTraits, SplitHeuristics >::addLeafNode(), lass::spat::AabbTree< ObjectType, ObjectTraits, SplitHeuristics >::addLeafNode(), lass::util::AllocatorAligned< alignment, VariableAllocator >::align(), lass::util::AllocatorSimpleBlock< requestedBlockSize, FixedAllocator >::allocate(), lass::spat::PlanarMesh::along(), lass::prim::Aabb2D< T, MinMaxPolicy >::area(), lass::prim::Triangle3D< T >::at(), lass::prim::Triangle2D< T >::at(), lass::prim::SimplePolygon3D< T, PlaneEquationPolicy, PlaneNormalizingPolicy >::at(), lass::prim::SimplePolygon2D< T, DegeneratePolicy >::at(), lass::prim::TriangleMesh3D< T, BoundingVolumeHierarchy, SplitHeuristics >::autoCrease(), lass::prim::TriangleMesh3D< T, BoundingVolumeHierarchy, SplitHeuristics >::autoSew(), lass::prim::XYZW::axis(), lass::prim::XYZ::axis(), lass::prim::XY::axis(), lass::spat::AabpTree< ObjectType, ObjectTraits, SplitHeuristics >::Node::axis(), lass::spat::AabpTree< ObjectType, ObjectTraits, SplitHeuristics >::balance(), lass::spat::AabbTree< ObjectType, ObjectTraits, SplitHeuristics >::balance(), lass::spat::barycenters(), lass::io::BinaryIMemoryBlock::BinaryIMemoryBlock(), lass::util::Thread::bind(), lass::io::Socket::bind(), lass::util::impl::bindThread(), lass::util::Condition::broadcast(), lass::python::impl::buildIndexVertex(), lass::python::impl::RichCompare< PyObjectPlus >::call(), lass::python::impl::FunctorPythonRBase< R >::call(), lass::python::impl::FunctorPythonBase::call(), lass::python::impl::CallMethod< CppClass >::callFree(), lass::python::impl::PyNumericCaster< false >::cast(), lass::python::impl::PyNumericCaster< InIsSigned >::cast(), lass::prim::Aabb3D< T, MinMaxPolicy >::center(), lass::prim::Aabb2D< T, MinMaxPolicy >::center(), lass::prim::Aabb3D< T, MinMaxPolicy >::classify(), lass::prim::Aabb2D< T, MinMaxPolicy >::classify(), lass::prim::Aabb3D< T, MinMaxPolicy >::clear(), lass::prim::Aabb2D< T, MinMaxPolicy >::clear(), lass::prim::Plane3D< T, EquationPolicy, NormalizingPolicy >::clip(), lass::prim::Aabb3D< T, MinMaxPolicy >::collides(), lass::prim::collides(), lass::prim::Aabb2D< T, MinMaxPolicy >::collides(), lass::prim::ColorRGBA::ColorRGBA(), lass::io::Socket::connect(), lass::spat::QuadTree< ObjectType, ObjectTraits >::contains(), lass::prim::Aabb3D< T, MinMaxPolicy >::contains(), lass::prim::Aabb2D< T, MinMaxPolicy >::contains(), lass::util::IntrusiveCounter< T, CounterType, referenceCounter >::count(), lass::util::DefaultCounter::count(), lass::python::PyObjectCounter::count(), lass::num::impl::cramer2(), lass::num::impl::cramer3(), lass::util::impl::SingletonGuard::CustomSemaphore::CustomSemaphore(), lass::util::AllocatorSized< VariableAllocator >::deallocate(), lass::python::decodeTuple(), lass::util::IntrusiveCounter< T, CounterType, referenceCounter >::decrement(), lass::util::DefaultCounter::decrement(), lass::python::PyObjectCounter::decrement(), lass::num::SplineLinear< ScalarType, DataType, DataTraits >::derivative(), lass::num::SplineCubic< ScalarType, DataType, DataTraits >::derivative(), lass::num::SplineBezierPath< ScalarType, DataType, DataTraits >::derivative(), lass::num::SplineLinear< ScalarType, DataType, DataTraits >::derivative2(), lass::num::SplineCubic< ScalarType, DataType, DataTraits >::derivative2(), lass::num::SplineBezierPath< ScalarType, DataType, DataTraits >::derivative2(), lass::spat::QuadEdge< EdgeHandle >::detach(), lass::util::IntrusiveCounter< T, CounterType, referenceCounter >::dispose(), lass::util::DefaultCounter::dispose(), lass::prim::Line2D< T, EquationPolicy, NormalizingPolicy >::distance(), lass::prim::Aabb3D< T, MinMaxPolicy >::distance(), lass::prim::Aabb2D< T, MinMaxPolicy >::distance(), lass::spat::AabpTree< ObjectType, ObjectTraits, SplitHeuristics >::doContains(), lass::spat::AabbTree< ObjectType, ObjectTraits, SplitHeuristics >::doContains(), lass::spat::AabpTree< ObjectType, ObjectTraits, SplitHeuristics >::doFind(), lass::spat::AabbTree< ObjectType, ObjectTraits, SplitHeuristics >::doFind(), lass::io::ArgValue< T >::doFormat(), lass::spat::QuadTree< ObjectType, ObjectTraits >::doIntersect(), lass::spat::AabpTree< ObjectType, ObjectTraits, SplitHeuristics >::doIntersect(), lass::spat::AabbTree< ObjectType, ObjectTraits, SplitHeuristics >::doIntersect(), lass::spat::QuadTree< ObjectType, ObjectTraits >::doIntersects(), lass::spat::AabpTree< ObjectType, ObjectTraits, SplitHeuristics >::doIntersects(), lass::spat::AabbTree< ObjectType, ObjectTraits, SplitHeuristics >::doIntersects(), lass::prim::ColorRGBA::doMap(), lass::spat::AabpTree< ObjectType, ObjectTraits, SplitHeuristics >::doNearestNeighbour(), lass::spat::AabbTree< ObjectType, ObjectTraits, SplitHeuristics >::doNearestNeighbour(), lass::python::impl::PyMapImpl< M >::doPyMap_AssSubscript(), lass::spat::QuadTree< ObjectType, ObjectTraits >::doRangeSearch(), lass::spat::KdTree< ObjectType, ObjectTraits >::doRangeSearch(), lass::spat::AabpTree< ObjectType, ObjectTraits, SplitHeuristics >::doRangeSearch(), lass::spat::AabbTree< ObjectType, ObjectTraits, SplitHeuristics >::doRangeSearch(), lass::io::BinaryISocket::doRead(), lass::io::BinaryIMemoryBlock::doRead(), lass::io::BinaryIMemoryBlock::doSeekg(), lass::io::ArgValue< T >::doSetValue(), lass::io::BinaryOSocket::doWrite(), lass::prim::SimplePolygon2D< T, DegeneratePolicy >::erase(), lass::stde::slist< T, Alloc >::erase_after(), impl::IntMod< T >::eval(), impl::IntDiv< T >::eval(), impl::IntPow< T >::eval(), lass::io::Image::filterMedian(), lass::spat::QuadTree< ObjectType, ObjectTraits >::find(), lass::num::SplineLinear< ScalarType, DataType, DataTraits >::findNode(), lass::num::SplineCubic< ScalarType, DataType, DataTraits >::findNode(), lass::num::SplineBezierPath< ScalarType, DataType, DataTraits >::findNode(), lass::prim::TriangleMesh3D< T, BoundingVolumeHierarchy, SplitHeuristics >::findVertexRing(), lass::prim::TriangleMesh3D< T, BoundingVolumeHierarchy, SplitHeuristics >::findVertexTriangles(), lass::spat::AabpTree< ObjectType, ObjectTraits, SplitHeuristics >::Node::first(), lass::spat::AabbTree< ObjectType, ObjectTraits, SplitHeuristics >::Node::first(), lass::io::BinaryOSocket::flusher(), lass::util::ThreadLocalStorage::get(), lass::python::PyExportTraitsMap< std::map< K, V, P, A > >::get(), lass::python::getPyObjectByName(), lass::prim::Aabb3D< T, MinMaxPolicy >::grow(), lass::prim::Aabb2D< T, MinMaxPolicy >::grow(), lass::util::impl::heapCounterAllocator(), lass::util::IntrusiveCounter< T, CounterType, referenceCounter >::increment(), lass::util::DefaultCounter::increment(), lass::prim::TriangleMesh3D< T, BoundingVolumeHierarchy, SplitHeuristics >::indexTriangles(), lass::util::IntrusiveCounter< T, CounterType, referenceCounter >::init(), lass::util::DefaultCounter::init(), lass::prim::SimplePolygon3D< T, PlaneEquationPolicy, PlaneNormalizingPolicy >::insert(), lass::prim::SimplePolygon2D< T, DegeneratePolicy >::insert(), lass::spat::PlanarMesh::insertEdge(), lass::spat::PlanarMesh::insertSite(), lass::num::SplineLinear< ScalarType, DataType, DataTraits >::integral(), lass::num::SplineCubic< ScalarType, DataType, DataTraits >::integral(), lass::num::SplineBezierPath< ScalarType, DataType, DataTraits >::integral(), lass::stde::integral_range_t< integral_type >::integral_range_t(), lass::prim::TriangleMesh3D< T, BoundingVolumeHierarchy, SplitHeuristics >::Triangle::intersect(), lass::prim::TriangleMesh3D< T, BoundingVolumeHierarchy, SplitHeuristics >::intersect(), lass::prim::Triangle2D< T >::intersect(), lass::prim::Ray3D< T, NormalizingPolicy, ParameterPolicy >::intersect(), lass::prim::Ray2D< T, NormalizingPolicy, ParameterPolicy >::intersect(), lass::prim::Line2D< T, EquationPolicy, NormalizingPolicy >::intersect(), lass::spat::AabpTree< ObjectType, ObjectTraits, SplitHeuristics >::intersect(), lass::prim::Aabb3D< T, MinMaxPolicy >::intersect(), lass::prim::Aabb2D< T, MinMaxPolicy >::intersect(), lass::prim::impl::intersectEdge2D(), lass::prim::TriangleMesh3D< T, BoundingVolumeHierarchy, SplitHeuristics >::intersects(), lass::prim::Aabb3D< T, MinMaxPolicy >::intersects(), lass::prim::intersects(), lass::prim::Aabb2D< T, MinMaxPolicy >::intersects(), lass::prim::Transformation3D< T >::inverse(), lass::prim::Transformation2D< T >::inverse(), lass::prim::SimplePolygon2D< T, DegeneratePolicy >::isConvex(), lass::prim::Aabb3D< T, MinMaxPolicy >::isEmpty(), lass::prim::Aabb2D< T, MinMaxPolicy >::isEmpty(), lass::prim::SimplePolygon2D< T, DegeneratePolicy >::isInRange(), lass::util::CriticalSection::isLocked(), lass::util::Mutex::isLocked(), lass::prim::SimplePolygon2D< T, DegeneratePolicy >::isReflex(), lass::prim::SimplePolygon2D< T, DegeneratePolicy >::isSimple(), lass::util::Thread::join(), lass::python::impl::PyMapImpl< M >::keys(), lass::util::LASS_EXECUTE_BEFORE_MAIN_EX(), lass::spat::AabpTree< ObjectType, ObjectTraits, SplitHeuristics >::Node::last(), lass::spat::AabbTree< ObjectType, ObjectTraits, SplitHeuristics >::Node::last(), lass::spat::AabpTree< ObjectType, ObjectTraits, SplitHeuristics >::Node::leftBound(), lass::prim::impl::Line2DCartesian< T, NormalizingPolicy >::Line2DCartesian(), lass::prim::impl::Line2DCombined< T, NormalizingPolicy >::Line2DCombined(), lass::prim::impl::Line2DParametric< T, NormalizingPolicy >::Line2DParametric(), lass::prim::Line3D< T, NormalizingPolicy >::Line3D(), lass::spat::LinearMeshInterpolator< T, TPI >::LinearMeshInterpolator(), lass::prim::LineSegment2D< T, ParameterPolicy >::LineSegment2D(), lass::prim::LineSegment3D< T, ParameterPolicy >::LineSegment3D(), lass::stde::slist< T, Alloc >::link_after(), lass::io::impl::SocketImpl::listen(), lass::io::Socket::listen(), lass::util::impl::MutexInternal::lock(), lass::util::Semaphore::lock(), lass::util::CriticalSection::lock(), lass::util::Mutex::lock(), lass::stde::lock_free_queue< T, FixedAllocator >::lock_free_queue(), lass::util::RWLock::lockr(), lass::prim::TriangleMesh3D< T, BoundingVolumeHierarchy, SplitHeuristics >::loopSubdivision(), lass::num::impl::ludecomp(), lass::prim::Plane3D< T, EquationPolicy, NormalizingPolicy >::majorAxis(), lass::spat::impl::EdgeGatherer::makeConvexPolygon(), lass::spat::impl::EdgeGatherer::makeRectangular(), lass::prim::ColorRGBA::mapCustom(), lass::spat::experimental::BitField< unsigned int >::mask(), lass::prim::Aabb3D< T, MinMaxPolicy >::max(), lass::prim::Aabb2D< T, MinMaxPolicy >::max(), lass::prim::Aabb3D< T, MinMaxPolicy >::min(), lass::prim::Aabb2D< T, MinMaxPolicy >::min(), lass::num::Modulo< N, T >::Modulo(), lass::num::impl::MProd< T, Operand1, Operand2 >::MProd(), lass::util::Locker< LockType >::mutex(), lass::num::impl::MVRightProd< T, MatrixOperand1, VectorOperand2 >::MVRightProd(), lass::spat::AabpTree< ObjectType, ObjectTraits, SplitHeuristics >::Node::Node(), lass::spat::AabbTree< ObjectType, ObjectTraits, SplitHeuristics >::Node::Node(), lass::prim::Normalized::normalizeAndScale(), lass::io::Image::openRadianceHdr(), lass::io::Image::openTargaTrueColor(), lass::num::SplineLinear< ScalarType, DataType, DataTraits >::operator()(), lass::num::SplineCubic< ScalarType, DataType, DataTraits >::operator()(), lass::num::SplineBezierPath< ScalarType, DataType, DataTraits >::operator()(), lass::util::impl::CompareDestructionPriority::operator()(), lass::python::impl::OverloadLink::operator()(), lass::num::impl::MScalar< T >::operator()(), lass::num::Matrix< T, S >::operator()(), lass::io::Image::operator()(), lass::num::DistributionNormal< T, RandomGenerator >::operator()(), lass::num::DistributionExponential< T, RandomGenerator >::operator()(), lass::num::DistributionUniform< T, RandomGenerator, rangeType >::operator()(), lass::stde::slist< T, Alloc >::const_iterator::operator*(), lass::stde::slist< T, Alloc >::iterator::operator*(), lass::util::SharedPtr< lass::util::impl::Dispatcher13< P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13 > >::operator*(), lass::util::ScopedPtr< lass::util::Thread >::operator*(), lass::stde::iterator_range< iterator_type >::operator*(), lass::num::Modulo< N, T >::operator*=(), lass::prim::XYZW::operator++(), lass::prim::XYZ::operator++(), lass::prim::XY::operator++(), lass::num::Modulo< N, T >::operator++(), lass::stde::iterator_range< iterator_type >::operator++(), lass::stde::integral_range_t< integral_type >::operator++(), lass::num::Modulo< N, T >::operator+=(), lass::stde::integral_range_t< integral_type >::operator+=(), lass::prim::Aabb3D< T, MinMaxPolicy >::operator+=(), lass::prim::Aabb2D< T, MinMaxPolicy >::operator+=(), lass::stde::const_integral_iterator< integral_type >::operator-(), lass::prim::XYZW::operator--(), lass::prim::XYZ::operator--(), lass::prim::XY::operator--(), lass::num::Modulo< N, T >::operator--(), lass::stde::integral_range_t< integral_type >::operator--(), lass::num::Modulo< N, T >::operator-=(), lass::util::SmartI< I >::operator->(), lass::stde::slist< T, Alloc >::const_iterator::operator->(), lass::stde::slist< T, Alloc >::iterator::operator->(), lass::util::SharedPtr< lass::util::impl::Dispatcher13< P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13 > >::operator->(), lass::util::ScopedPtr< lass::util::Thread >::operator->(), lass::stde::iterator_range< iterator_type >::operator->(), lass::util::TaggedPtr< lass::stde::lock_free_queue::node_t >::operator->(), lass::num::Modulo< N, T >::operator/=(), lass::stde::operator<(), lass::io::BinaryOStream::operator<<(), lass::python::PyObjectPlus::operator=(), lass::io::ProxyOStream::Lock::operator=(), lass::stde::operator==(), lass::io::ProxyIStream::operator>>(), lass::io::BinaryIStream::operator>>(), lass::num::impl::VScalar< T >::operator[](), lass::num::impl::VStorage< T >::operator[](), lass::prim::Vector4D< T >::operator[](), lass::prim::Vector3D< T >::operator[](), lass::prim::Vector2D< T >::operator[](), lass::num::Vector< T, S >::operator[](), lass::prim::Triangle3D< T >::operator[](), lass::prim::Triangle2D< T >::operator[](), lass::prim::SimplePolygon3D< T, PlaneEquationPolicy, PlaneNormalizingPolicy >::operator[](), lass::prim::SimplePolygon2D< T, DegeneratePolicy >::operator[](), lass::util::SharedPtr< lass::util::impl::Dispatcher13< P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13 > >::operator[](), lass::util::ScopedPtr< lass::util::Thread >::operator[](), lass::num::Polynomial< T >::operator[](), lass::prim::Point3DH< T >::operator[](), lass::prim::Point3D< T >::operator[](), lass::prim::Point2DH< T >::operator[](), lass::prim::Point2D< T >::operator[](), lass::stde::iterator_range< iterator_type >::operator[](), lass::io::Image::ColorSpace::operator[](), lass::io::impl::Bytes4::operator[](), lass::util::FixedArray< T, 0 >::operator[](), lass::util::FixedArray< T, size_ >::operator[](), lass::io::ArgValue< T >::operator[](), lass::io::ArgParser::parseLong(), lass::io::ArgParser::parseShort(), lass::prim::Aabb2D< T, MinMaxPolicy >::perimeter(), lass::prim::impl::Plane3DCartesian< T, NormalizingPolicy >::Plane3DCartesian(), lass::prim::impl::Plane3DCombined< T, NormalizingPolicy >::Plane3DCombined(), lass::prim::impl::Plane3DParametric< T, NormalizingPolicy >::Plane3DParametric(), lass::prim::Point2D< T >::Point2D(), lass::prim::Point2DH< T >::Point2DH(), lass::prim::Point3D< T >::Point3D(), lass::prim::Point3DH< T >::Point3DH(), lass::spat::PlanarMesh::pointLocate(), lass::spat::PlanarMesh::pointShoot(), lass::spat::PlanarMesh::pointWalk(), lass::stde::slist< T, Alloc >::prior(), lass::python::impl::pyBuildList(), lass::python::impl::pyBuildTuple(), lass::python::impl::PyMapImpl< M >::PyMap_Length(), lass::python::impl::PyMapImpl< M >::PyMap_Subscript(), lass::python::impl::PyMapImpl< M >::pyRepr(), lass::python::impl::PySequenceContainer< Container, ContainerOwnerShipPolicy >::PySequence_Item(), lass::python::impl::PySequenceContainer< Container, ContainerOwnerShipPolicy >::PySequence_Length(), lass::python::impl::PySequenceContainer< Container, ContainerOwnerShipPolicy >::PySequence_Slice(), lass::python::impl::PyMapImpl< M >::pyStr(), lass::prim::Aabb3D< T, MinMaxPolicy >::random(), lass::prim::Aabb2D< T, MinMaxPolicy >::random(), lass::prim::Ray2D< T, NormalizingPolicy, ParameterPolicy >::Ray2D(), lass::prim::Ray3D< T, NormalizingPolicy, ParameterPolicy >::Ray3D(), lass::io::Image::HeaderPfm::readFrom(), lass::io::impl::SocketImpl::receive(), lass::io::Socket::receive(), lass::io::impl::BinaryIMemoryMapImpl::remap(), lass::prim::SimplePolygon3D< T, PlaneEquationPolicy, PlaneNormalizingPolicy >::remove(), lass::spat::AabpTree< ObjectType, ObjectTraits, SplitHeuristics >::Node::right(), lass::spat::AabbTree< ObjectType, ObjectTraits, SplitHeuristics >::Node::right(), lass::spat::AabpTree< ObjectType, ObjectTraits, SplitHeuristics >::Node::rightBound(), lass::prim::Transformation3D< T >::rotation(), lass::util::Thread::run(), lass::io::Image::saveTarga(), lass::prim::Aabb3D< T, MinMaxPolicy >::scale(), lass::prim::Aabb2D< T, MinMaxPolicy >::scale(), lass::num::RandomMT19937::seed(), lass::io::impl::SocketImpl::send(), lass::io::Socket::send(), lass::util::ThreadLocalStorage::set(), lass::spat::PlanarMesh::setDest(), lass::prim::Aabb2D< T, MinMaxPolicy >::setMax(), lass::prim::Aabb2D< T, MinMaxPolicy >::setMin(), lass::spat::PlanarMesh::setOrg(), lass::num::RandomMT19937::setState(), lass::num::RandomParkMiller::setState(), lass::num::RandomStandard::setState(), lass::util::Condition::signal(), lass::prim::Triangle2D< T >::signedArea(), lass::stde::integral_range_t< integral_type >::size(), lass::prim::Aabb3D< T, MinMaxPolicy >::size(), lass::prim::Aabb2D< T, MinMaxPolicy >::size(), lass::util::impl::ThreadInternal::sleep(), lass::prim::TriangleMesh3D< T, BoundingVolumeHierarchy, SplitHeuristics >::smoothNormals(), lass::num::Matrix< T, S >::solve(), lass::prim::Sphere3D< T >::Sphere3D(), lass::stde::slist< T, Alloc >::splice_after(), lass::spat::DefaultSplitHeuristics< numObjectsPerLeaf >::split(), lass::spat::PlanarMesh::splitEdge(), lass::prim::Triangle3D< T >::squaredArea(), lass::util::impl::ThreadInternal::startThread(), lass::util::ThreadPool< TaskType, ConsumerType, IdlePolicy, ParticipationPolicy >::startThreads(), lass::util::impl::ThreadInternal::staticThreadStart(), lass::util::ThreadPool< TaskType, ConsumerType, IdlePolicy, ParticipationPolicy >::stopThreads(), lass::prim::TriangleMesh3D< T, BoundingVolumeHierarchy, SplitHeuristics >::subdivide(), lass::stde::slist< T, Alloc >::swap(), lass::spat::PlanarMesh::swap(), lass::prim::Aabb2D< T, MinMaxPolicy >::swap(), lass::util::impl::MutexInternal::tryLock(), lass::util::Semaphore::tryLock(), lass::util::CriticalSection::tryLock(), lass::util::Mutex::tryLock(), lass::util::RWLock::tryLockr(), lass::util::RWLock::tryLockw(), lass::stde::slist< T, Alloc >::unlink_and_destroy_after(), lass::util::impl::CriticalSectionInternal::unlock(), lass::util::impl::MutexInternal::unlock(), lass::util::CriticalSection::unlock(), lass::util::Mutex::unlock(), lass::util::RWLock::unlockr(), lass::python::impl::PyMapImpl< M >::values(), lass::util::impl::ConditionInternal::wait(), lass::util::Condition::wait(), lass::io::BinaryOStream::writeString(), lass::util::impl::ConditionInternal::~ConditionInternal(), lass::util::CriticalSection::~CriticalSection(), lass::util::impl::CriticalSectionInternal::~CriticalSectionInternal(), lass::util::Mutex::~Mutex(), lass::util::impl::MutexInternal::~MutexInternal(), lass::python::impl::PyMapImpl< M >::~PyMapImpl(), lass::python::PyObjectPlus::~PyObjectPlus(), lass::spat::QuadEdge< EdgeHandle >::~QuadEdge(), lass::io::Socket::~Socket(), and lass::io::impl::SocketImpl::~SocketImpl().
#define LASS_ASSERT_UNREACHABLE LASS_ASSERT_UNREACHABLE_IMPL |
Definition at line 131 of file common_macros.h.
Referenced by lass::io::BinaryIMemoryMap::doSeekg().
#define LASS_WARNING | ( | iMessage | ) | LASS_WARNING_IMPL( iMessage ) |
Definition at line 132 of file common_macros.h.
Referenced by lass::io::ProxyOStream::add(), and lass::io::ProxyOStream::remove().
#define LASS_WARNING_ONCE_EX | ( | iMessage, | |||
iUniqueName | ) | LASS_WARNING_ONCE_IMPL( iMessage, LASS_UNIQUENAME(iUniqueName) ) |
Definition at line 133 of file common_macros.h.
#define LASS_WARNING_ONCE | ( | iMessage | ) | LASS_WARNING_ONCE_EX( iMessage, lassWarnOnce ) |
Definition at line 134 of file common_macros.h.
#define LASS_EVAL | ( | iExpression | ) | LASS_EVAL_IMPL( iExpression ) |
Definition at line 135 of file common_macros.h.
#define LASS_LOG | ( | iMessage | ) | LASS_LOG_IMPL( iMessage ) |
Definition at line 136 of file common_macros.h.
Referenced by lass::io::BinaryIMemoryMap::doRead(), lass::io::BinaryIMemoryMap::doSeekg(), and lass::io::BinaryIMemoryMap::open().
Generated on Mon Nov 10 14:22:03 2008 for Library of Assembled Shared Sources by 1.5.7.1 |