Home
last modified time | relevance | path

Searched refs:allocState (Results 1 – 25 of 166) sorted by relevance

1234567

/dports/misc/ompl/ompl-1.5.2/src/ompl/base/src/
H A DSpaceInformation.cpp141 states[i] = allocState(); in randomBounceMotion()
219 states[0] = allocState(); in getMotionStates()
220 states[1] = allocState(); in getMotionStates()
243 states[0] = allocState(); in getMotionStates()
258 states[added] = allocState(); in getMotionStates()
266 states[added] = allocState(); in getMotionStates()
346 State *s = allocState(); in probabilityOfValidState()
373 State *s1 = allocState(); in averageValidMotionLength()
374 State *s2 = allocState(); in averageValidMotionLength()
H A DDiscreteMotionValidator.cpp59 State *test = si_->allocState(); in checkMotion()
112 State *test = si_->allocState(); in checkMotion()
H A DStateStorage.cpp139 State *s = space_->allocState(); in loadStates()
200 State *copy = space_->allocState(); in addState()
209 State *s = space_->allocState(); in generateSamples()
H A DStateSampler.cpp77 work_ = subspace_->allocState(); in SubspaceStateSampler()
78 work2_ = subspace_->allocState(); in SubspaceStateSampler()
/dports/misc/ompl/ompl-1.5.2/src/ompl/base/
H A DScopedState.h73 State *s = space_->allocState(); in ScopedState()
86 State *s = space_->allocState(); in ScopedState()
98 State *s = space_->allocState(); in ScopedState()
116 State *s = space_->allocState(); in ScopedState()
125 State *s = space_->allocState(); in ScopedState()
155 State *s = space_->allocState();
212 State *s = space_->allocState();
H A DSpaceInformation.h225 State *allocState() const in allocState() function
227 return stateSpace_->allocState(); in allocState()
234 state = stateSpace_->allocState(); in allocStates()
/dports/misc/ompl/ompl-1.5.2/doc/markdown/
H A DworkingWithStates.md25 ompl::base::State* state = si->allocState();
30 …eSpace::allocState(). States are to be freed using ompl::base::StateSpace::freeState(). For conven…
53 ompl::base::State *abstractState = space->allocState();
132 For a state space type of type T, the result of ompl::base::StateSpace::allocState() can be casted …
136 ompl::base::State *state = space->allocState();
138 ompl::base::State *copy = space->allocState();
/dports/misc/ompl/ompl-1.5.2/src/ompl/control/src/
H A DSpaceInformation.cpp188 base::State *temp2 = allocState(); in propagateWhileValid()
233 i = allocState(); in propagate()
278 result[st] = allocState(); in propagateWhileValid()
287 result[st] = allocState(); in propagateWhileValid()
H A DPathControl.cpp249 base::State *next = si_->allocState(); in check()
283 states_[0] = si->allocState(); in random()
284 states_[1] = si->allocState(); in random()
304 states_[0] = si->allocState(); in randomValid()
305 states_[1] = si->allocState(); in randomValid()
H A DSimpleDirectedControlSampler.cpp73 base::State *bestState = si_->allocState(); in getBestControl()
79 base::State *tempState = si_->allocState(); in getBestControl()
/dports/misc/ompl/ompl-1.5.2/src/ompl/geometric/src/
H A DPathGeometric.cpp230 temp = si_->allocState(); in checkAndRepair()
299 base::State *temp = si_->allocState(); in subdivide()
399 states_[0] = si_->allocState(); in random()
400 states_[1] = si_->allocState(); in random()
410 states_[0] = si_->allocState(); in randomValid()
411 states_[1] = si_->allocState(); in randomValid()
443 base::State *s = si_->allocState(); in overlay()
H A DPathSimplifier.cpp88 base::State *temp1 = si->allocState(); in smoothBSpline()
89 base::State *temp2 = si->allocState(); in smoothBSpline()
216 base::State *temp0 = si->allocState(); in shortcutPath()
217 base::State *temp1 = si->allocState(); in shortcutPath()
419 base::State *perturb_state = si->allocState(); in perturbPath()
420 base::State *before_state = si->allocState(); in perturbPath()
421 base::State *after_state = si->allocState(); in perturbPath()
422 base::State *new_state = si->allocState(); in perturbPath()
800 base::State *temp = si_->allocState(); in findBetterGoal()
801 base::State *tempGoal = si_->allocState(); in findBetterGoal()
/dports/misc/ompl/ompl-1.5.2/src/ompl/base/samplers/src/
H A DObstacleBasedValidStateSampler.cpp61 State *temp = si_->allocState(); in sample()
97 State *temp = si_->allocState(); in sampleNear()
H A DGaussianValidStateSampler.cpp62 State *temp = si_->allocState(); in sample()
85 State *temp = si_->allocState(); in sampleNear()
H A DBridgeTestValidStateSampler.cpp19 State *endpoint = si_->allocState(); in sample()
45 State *endpoint = si_->allocState(); in sampleNear()
/dports/misc/ompl/ompl-1.5.2/src/ompl/extensions/morse/src/
H A DMorseSimpleSetup.cpp110 base::State *result = si_->allocState(); in playPath()
149 base::State *s0 = si_->allocState(); in simulateControl()
153 base::State *s1 = si_->allocState(); in simulateControl()
/dports/sysutils/nomad/nomad-1.1.0/command/
H A Dmonitor_test.go73 allocs: map[string]*allocState{
111 allocs: map[string]*allocState{
146 allocs: map[string]*allocState{
H A Dmonitor.go30 allocs map[string]*allocState
39 allocs: make(map[string]*allocState),
44 type allocState struct { struct
213 state.allocs[alloc.ID] = &allocState{
/dports/misc/ompl/ompl-1.5.2/src/ompl/base/spaces/constraint/src/
H A DConstrainedStateSpace.cpp113 auto *s1 = allocState()->as<StateType>(); in constrainedSanityChecks()
114 State *s2 = allocState(); in constrainedSanityChecks()
247 auto *state = space_->allocState(); in setup()
265 ompl::base::State *ompl::base::ConstrainedStateSpace::allocState() const in allocState() function in ompl::base::ConstrainedStateSpace
/dports/misc/ompl/ompl-1.5.2/tests/base/
H A Dstate_operations.cpp201 states[i] = si.allocState(); in BOOST_AUTO_TEST_CASE()
215 base::State *s = si.allocState(); in BOOST_AUTO_TEST_CASE()
228 base::State *s = si.allocState(); in BOOST_AUTO_TEST_CASE()
230 states[i] = si.allocState(); in BOOST_AUTO_TEST_CASE()
249 states[j] = si->allocState(); in randomizedAllocator()
/dports/multimedia/obs-studio/obs-studio-27.1.3/deps/w32-pthreads/
H A Dptw32_OLL_lock.c182 int allocState; member
521 int allocState; /* ptw32_srwl_free, ptw32_srwl_in_use */ member
545 if (currNodePtr->allocState == ptw32_srwl_free) in ptw32_srwl_AllocReaderNode()
548 (PTW32_INTERLOCKED_LONGPTR)&currNodePtr->allocState, in ptw32_srwl_AllocReaderNode()
567 nodePtr->allocState := ptw32_srwl_free; in ptw32_srwl_FreeReaderNode()
/dports/misc/ompl/ompl-1.5.2/src/ompl/base/spaces/constraint/
H A DConstrainedStateSpace.h173 : WrapperStateSpace::StateType(space->getSpace()->allocState()) in StateType()
215 State *allocState() const override;
/dports/misc/ompl/ompl-1.5.2/src/ompl/geometric/planners/quotientspace/algorithms/
H A DMultiQuotientImpl.h250 ompl::base::State *sInitK = sik->allocState(); in setProblemDefinition()
251 ompl::base::State *sGoalK = sik->allocState(); in setProblemDefinition()
301 ompl::base::State *s_X1 = Qm->getX1()->allocState(); in getPlannerData()
302 ompl::base::State *s_Q1 = Qm->getSpaceInformation()->allocState(); in getPlannerData()
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/nomad/command/
H A Dmonitor.go30 allocs map[string]*allocState
39 allocs: make(map[string]*allocState),
44 type allocState struct { struct
259 state.allocs[alloc.ID] = &allocState{
H A Dmonitor_test.go73 allocs: map[string]*allocState{
111 allocs: map[string]*allocState{
146 allocs: map[string]*allocState{

1234567