Home
last modified time | relevance | path

Searched refs:topos (Results 1 – 25 of 310) sorted by relevance

12345678910>>...13

/dports/lang/yorick/yorick-y_2_2_04/hex/
H A Dtest.i43 topos= [2,8](,-:1:6);
58 topos= topos(*);
134 ns= numberof(topos); in flog()
378 n = topos(i);
382 topos(j) = k;
384 topos(j+1:j+k-1) = topos(i+n-k+1:i+n-1);
389 topos = topos(1:j);
398 topos = topo;
419 n= numberof(topos);
448 tred= topos;
[all …]
/dports/net/kamailio/kamailio-5.4.5/src/modules/topos/
H A DREADME148 modparam("topos", "storage", "redis")
174 modparam("topos", "mask_callid", 1)
188 modparam("topos", "sanity_checks", 1)
253 event_route[topos:sending].
259 modparam("topos", "event_mode", 2)
280 4.2. event_route[topos:msg-sending]
282 4.1. event_route[topos:msg-outgoing]
296 event_route[topos:msg-outgoing] {
303 4.2. event_route[topos:msg-sending]
307 event_route[topos:msg-outgoing].
[all …]
/dports/astro/py-skyfield/skyfield-1.41/skyfield/tests/
H A Dtest_satellite_events.py13 topos = api.Topos('42.3581 N', '71.0636 W')
20 times, yis = sat.find_events(topos, t0, t1, 20.0)
21 assert(verify_sat_almanac(times, yis, sat, topos, horizon, nexpected))
63 topos = api.Topos('42.3581 N', '71.0636 W') # Boston
70 times, yis = sat.find_events(topos, t0, t1, 20.0)
71 assert(verify_sat_almanac(times, yis, sat, topos, horizon, nexpected))
76 def verify_sat_almanac(times, yis, sat, topos, horizon, nexpected): argument
93 (sat - topos).at(ts.tai(jd=times.tai + dt)).altaz()[0].degrees
/dports/astro/py-skyfield/skyfield-1.41/skyfield/
H A Dalmanac.py193 def meridian_transits(ephemeris, target, topos): argument
203 topos_at = (ephemeris['earth'] + topos).at
212 ra1, _, _ = topos.at(t).radec(epoch='date')
219 def sunrise_sunset(ephemeris, topos): argument
240 topos_at = (ephemeris['earth'] + topos).at
263 def dark_twilight_day(ephemeris, topos): argument
277 topos_at = (ephemeris['earth'] + topos).at
293 def risings_and_settings(ephemeris, target, topos, argument
305 topos_at = (ephemeris['earth'] + topos).at
/dports/cad/sumo/sumo-1.2.0/src/guinetload/
H A DGUITriggerBuilder.cpp73 … double frompos, double topos, const SumoXMLTag element, std::string name, int personCapacity) { in buildStoppingPlace() argument
76 … myCurrentStop = new GUIContainerStop(id, lines, *lane, frompos, topos, name, personCapacity); in buildStoppingPlace()
78 myCurrentStop = new GUIBusStop(id, lines, *lane, frompos, topos, name, personCapacity); in buildStoppingPlace()
92 double frompos, double topos, in beginParkingArea() argument
97 …GUIParkingArea* stop = new GUIParkingArea(id, lines, *lane, frompos, topos, capacity, width, lengt… in beginParkingArea()
108 …n(MSNet& net, const std::string& id, MSLane* lane, double frompos, double topos, const std::string… in buildChargingStation() argument
110 …GUIChargingStation* chargingStation = new GUIChargingStation(id, *lane, frompos, topos, name, char… in buildChargingStation()
/dports/sysutils/kubectl/kubernetes-1.22.2/test/e2e/storage/testsuites/
H A Dtopology.go244 topos := []topology{}
258 for _, existingTopo := range topos {
266 topos = append(topos, topo)
268 if len(topos) >= maxCount {
272 return topos, nil
291 func (t *topologyTestSuite) setAllowedTopologies(sc *storagev1.StorageClass, topos []topology, excl…
295 for i := 0; i < len(topos); i++ {
298 for k, v := range topos[i] {
305 allowedTopologies = append(allowedTopologies, topos[i])
/dports/cad/sumo/sumo-1.2.0/src/netload/
H A DNLTriggerBuilder.cpp158 double topos = attrs.getOpt<double>(SUMO_ATTR_ENDPOS, id.c_str(), ok, lane->getLength()); in parseAndBuildChargingStation() local
166 …if (!ok || !myHandler->checkStopPos(frompos, topos, lane->getLength(), POSITION_EPS, friendlyPos))… in parseAndBuildChargingStation()
189 double topos = attrs.getOpt<double>(SUMO_ATTR_ENDPOS, id.c_str(), ok, lane->getLength()); in parseAndBuildStoppingPlace() local
191 …if (!ok || !myHandler->checkStopPos(frompos, topos, lane->getLength(), POSITION_EPS, friendlyPos))… in parseAndBuildStoppingPlace()
195 const int defaultCapacity = MAX2(MSStoppingPlace::getPersonsAbreast(topos - frompos) * 3, 6); in parseAndBuildStoppingPlace()
198 buildStoppingPlace(net, id, lines, lane, frompos, topos, element, ptStopName, personCapacity); in parseAndBuildStoppingPlace()
236 double topos = attrs.getOpt<double>(SUMO_ATTR_ENDPOS, id.c_str(), ok, lane->getLength()); in parseAndBeginParkingArea() local
244 …if (!ok || !myHandler->checkStopPos(frompos, topos, lane->getLength(), POSITION_EPS, friendlyPos))… in parseAndBeginParkingArea()
249 …beginParkingArea(net, id, lines, lane, frompos, topos, capacity, width, length, angle, name, onRoa… in parseAndBeginParkingArea()
428 … myCurrentStop = new MSStoppingPlace(id, lines, *lane, frompos, topos, ptStopName, personCapacity); in buildStoppingPlace()
[all …]
/dports/textproc/py-spylls/spylls-0.1.6/spylls/hunspell/algo/
H A Dpermutations.py173 for topos in range(frompos + 3, min(len(word), frompos + MAX_CHAR_DISTANCE + 1)):
174 yield word[:frompos] + word[frompos+1:topos] + char + word[topos:]
177 for topos in reversed(range(max(0, frompos - MAX_CHAR_DISTANCE + 1), frompos - 1)):
178 yield word[:topos] + word[frompos] + word[topos:frompos] + word[frompos+1:]
/dports/games/spring/spring_98.0/AI/Skirmish/Shard/data/ai/BA/
H A Dscoutbehaviour.lua109 …local topos = ai.scouthandler:ClosestSpot(self) -- first look for closest metal/geo spot that hasn…
110 if topos ~= nil then
111 EchoDebug("scouting spot at " .. topos.x .. "," .. topos.z)
112 self.target = RandomAway(topos, self.keepYourDistance) -- don't move directly onto the spot
/dports/science/axom/axom-0.6.1/src/axom/sidre/examples/
H A Dsidre_createdatastore.cpp301 void setup_blueprint_topos(DataStore* ds, Group* topos) in setup_blueprint_topos() argument
305 Group* connmesh = topos->createGroup("mesh"); in setup_blueprint_topos()
419 Group* topos = mroot->createGroup("topologies"); in save_as_blueprint() local
427 setup_blueprint_topos(ds, topos); in save_as_blueprint()
480 Group* topos = mroot->createGroup(mesh_name + "/topologies"); in generate_blueprint() local
488 setup_blueprint_topos(ds, topos); in generate_blueprint()
535 Group* topos = mroot->createGroup(mesh_name + "/topologies"); in generate_blueprint_to_path() local
543 setup_blueprint_topos(ds, topos); in generate_blueprint_to_path()
591 Group* topos = mroot->createGroup(mesh_name + "/topologies"); in generate_spio_blueprint() local
599 setup_blueprint_topos(ds, topos); in generate_spio_blueprint()
[all …]
H A Dsidre_generateindex.cpp136 void setup_blueprint_topos(DataStore* ds, Group* topos) in setup_blueprint_topos() argument
139 Group* connmesh = topos->createGroup("mesh"); in setup_blueprint_topos()
183 void setup_cartesian_topos(Group* topos) in setup_cartesian_topos() argument
185 Group* structmesh = topos->createGroup("cartesian"); in setup_cartesian_topos()
285 Group* topos = mroot->createGroup("topologies"); in generate_spio_blueprint() local
292 setup_blueprint_topos(ds, topos); in generate_spio_blueprint()
365 Group* topos = mroot->createGroup("topologies"); in generate_multidomain_blueprint() local
373 setup_blueprint_topos(ds, topos); in generate_multidomain_blueprint()
446 Group* topos = mroot->createGroup("topologies"); in generate_cartesian_blueprint() local
454 setup_cartesian_topos(topos); in generate_cartesian_blueprint()
/dports/lang/gcc48/gcc-4.8.5/libgfortran/intrinsics/
H A Dmvbits.c42 const int *topos) in SUB_NAME() argument
47 newbits = (((UTYPE)(*from) >> *frompos) & lenmask) << *topos; in SUB_NAME()
48 oldbits = *to & (~(lenmask << *topos)); in SUB_NAME()
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libgfortran/intrinsics/
H A Dmvbits.c42 const int *topos) in SUB_NAME() argument
47 newbits = (((UTYPE)(*from) >> *frompos) & lenmask) << *topos; in SUB_NAME()
48 oldbits = *to & (~(lenmask << *topos)); in SUB_NAME()
/dports/devel/mingw32-gcc/gcc-4.8.1/libgfortran/intrinsics/
H A Dmvbits.c42 const int *topos) in SUB_NAME() argument
47 newbits = (((UTYPE)(*from) >> *frompos) & lenmask) << *topos; in SUB_NAME()
48 oldbits = *to & (~(lenmask << *topos)); in SUB_NAME()
/dports/lang/gcc6-aux/gcc-6-20180516/libgfortran/intrinsics/
H A Dmvbits.c42 const int *topos) in SUB_NAME() argument
47 newbits = (((UTYPE)(*from) >> *frompos) & lenmask) << *topos; in SUB_NAME()
48 oldbits = *to & (~(lenmask << *topos)); in SUB_NAME()
/dports/lang/gcc12-devel/gcc-12-20211205/libgfortran/intrinsics/
H A Dmvbits.c42 const int *topos) in SUB_NAME() argument
47 newbits = (((UTYPE)(*from) >> *frompos) & lenmask) << *topos; in SUB_NAME()
48 oldbits = *to & (~(lenmask << *topos)); in SUB_NAME()
/dports/lang/gcc8/gcc-8.5.0/libgfortran/intrinsics/
H A Dmvbits.c42 const int *topos) in SUB_NAME() argument
47 newbits = (((UTYPE)(*from) >> *frompos) & lenmask) << *topos; in SUB_NAME()
48 oldbits = *to & (~(lenmask << *topos)); in SUB_NAME()
/dports/lang/gcc10/gcc-10.3.0/libgfortran/intrinsics/
H A Dmvbits.c42 const int *topos)
47 newbits = (((UTYPE)(*from) >> *frompos) & lenmask) << *topos;
48 oldbits = *to & (~(lenmask << *topos));
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/libgfortran/intrinsics/
H A Dmvbits.c42 const int *topos) in SUB_NAME() argument
47 newbits = (((UTYPE)(*from) >> *frompos) & lenmask) << *topos; in SUB_NAME()
48 oldbits = *to & (~(lenmask << *topos)); in SUB_NAME()
/dports/lang/gcc11-devel/gcc-11-20211009/libgfortran/intrinsics/
H A Dmvbits.c42 const int *topos) in SUB_NAME() argument
47 newbits = (((UTYPE)(*from) >> *frompos) & lenmask) << *topos; in SUB_NAME()
48 oldbits = *to & (~(lenmask << *topos)); in SUB_NAME()
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/libgfortran/intrinsics/
H A Dmvbits.c42 const int *topos) in SUB_NAME() argument
47 newbits = (((UTYPE)(*from) >> *frompos) & lenmask) << *topos; in SUB_NAME()
48 oldbits = *to & (~(lenmask << *topos)); in SUB_NAME()
/dports/devel/riscv64-gcc/gcc-8.3.0/libgfortran/intrinsics/
H A Dmvbits.c42 const int *topos) in SUB_NAME() argument
47 newbits = (((UTYPE)(*from) >> *frompos) & lenmask) << *topos; in SUB_NAME()
48 oldbits = *to & (~(lenmask << *topos)); in SUB_NAME()
/dports/lang/gcc9-devel/gcc-9-20211007/libgfortran/intrinsics/
H A Dmvbits.c42 const int *topos) in SUB_NAME() argument
47 newbits = (((UTYPE)(*from) >> *frompos) & lenmask) << *topos; in SUB_NAME()
48 oldbits = *to & (~(lenmask << *topos)); in SUB_NAME()
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/libgfortran/intrinsics/
H A Dmvbits.c42 const int *topos) in SUB_NAME() argument
47 newbits = (((UTYPE)(*from) >> *frompos) & lenmask) << *topos; in SUB_NAME()
48 oldbits = *to & (~(lenmask << *topos)); in SUB_NAME()
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/libgfortran/intrinsics/
H A Dmvbits.c42 const int *topos) in SUB_NAME() argument
47 newbits = (((UTYPE)(*from) >> *frompos) & lenmask) << *topos; in SUB_NAME()
48 oldbits = *to & (~(lenmask << *topos)); in SUB_NAME()

12345678910>>...13