Home
last modified time | relevance | path

Searched refs:cur_stop (Results 1 – 3 of 3) sorted by relevance

/dports/cad/py-pymtl/pymtl3-3.1.6/pymtl3/stdlib/connects/
H A Dconnect_bits2bitstruct.py37 cur_stop = start
40 cur_stop = _connect_bits2bitstruct_h( subfield, bits_signal, cur_stop )
41 return cur_stop
/dports/comms/gnuradio/gnuradio-3.8.4.0/gr-utils/python/utils/
H A Dgr_plot_qt301 self.cur_stop = self.block_length
304 self.get_data(self.cur_start, self.cur_stop)
411 self.get_data(self.cur_start, self.cur_stop)
435 self.cur_stop = end[0]
438 tend = self.cur_stop / self.sample_rate
442 self.get_data(self.cur_start, self.cur_stop)
462 self.get_data(self.cur_start, self.cur_stop)
484 tend = self.cur_stop / self.sample_rate
492 self.get_data(self.cur_start, self.cur_stop)
512 tend = self.cur_stop / self.sample_rate
[all …]
/dports/games/openttd/openttd-12.1/src/
H A Dstation_cmd.cpp1996 RoadStop *cur_stop; in RemoveRoadStop() local
1999 cur_stop = RoadStop::GetByTile(tile, ROADSTOP_TRUCK); in RemoveRoadStop()
2002 cur_stop = RoadStop::GetByTile(tile, ROADSTOP_BUS); in RemoveRoadStop()
2005 assert(cur_stop != nullptr); in RemoveRoadStop()
2017 if (*primary_stop == cur_stop) { in RemoveRoadStop()
2019 *primary_stop = cur_stop->next; in RemoveRoadStop()
2027 while (pred->next != cur_stop) pred = pred->next; in RemoveRoadStop()
2028 pred->next = cur_stop->next; in RemoveRoadStop()
2042 cur_stop->ClearDriveThrough(); in RemoveRoadStop()
2047 delete cur_stop; in RemoveRoadStop()