Home
last modified time | relevance | path

Searched refs:time_tag (Results 1 – 25 of 33) sorted by relevance

12

/dports/audio/supercollider/SuperCollider-3.11.0-Source/server/supernova/utilities/
H A Dtime_tag.hpp30 class time_tag { class
44 time_tag(void): data_(0) {} in time_tag() function in nova::time_tag
46 time_tag(time_tag const& rhs): data_(rhs.data_) {} in time_tag() function in nova::time_tag
48 time_tag(uint64 timetag): data_(timetag) {} in time_tag() function in nova::time_tag
50 time_tag(uint32 secs, uint32 fraction) { in time_tag() function in nova::time_tag
74 time_tag& operator+=(time_tag const& rhs) { in operator +=()
79 time_tag operator+(time_tag const& rhs) const { in operator +()
80 time_tag ret(*this); in operator +()
85 time_tag& operator-=(time_tag const& rhs) { in operator -=()
90 time_tag operator-(time_tag const& rhs) const { in operator -()
[all …]
/dports/audio/supercollider/SuperCollider-3.11.0-Source/testsuite/server/supernova/
H A Dtimetag_test.cpp12 time_tag tt; in BOOST_AUTO_TEST_CASE()
18 time_tag tt(100, 200); in BOOST_AUTO_TEST_CASE()
24 time_tag t1(0, 0); in BOOST_AUTO_TEST_CASE()
25 time_tag t2(0, 1); in BOOST_AUTO_TEST_CASE()
26 time_tag t3(0, 1); in BOOST_AUTO_TEST_CASE()
34 time_tag t1(0, 0); in BOOST_AUTO_TEST_CASE()
35 time_tag t2(1, 0); in BOOST_AUTO_TEST_CASE()
37 time_tag t3 = t1 + t2; in BOOST_AUTO_TEST_CASE()
41 BOOST_REQUIRE(t3 == time_tag(2, 0)); in BOOST_AUTO_TEST_CASE()
47 time_tag first = time_tag::from_ptime(ptime(microsec_clock::universal_time())); in BOOST_AUTO_TEST_CASE()
[all …]
/dports/sysutils/freebsd-snapshot/freebsd-snapshot-20091208.1/
H A Dperiodic-snapshot67 time_tag="$1"
119 if [ ".$time_tag" = .weekly ]; then
121 elif [ ".$time_tag" = .daily ]; then
123 elif [ ".$time_tag" = .hourly ]; then
136 eval "when=\$when_${time_tag}"
141 snapshot make -g$when $fs:$time_tag.0
150 … "snapshot: $time_tag.0 snapshot on filesystem $fs made (duration: $duration min)"
/dports/audio/supercollider/SuperCollider-3.11.0-Source/server/supernova/sc/
H A Dsc_osc_handler.hpp139 bundle_node(time_tag const& timeout, const char* data, endpoint_ptr const& endpoint): in bundle_node()
146 const time_tag timeout_;
159 …void insert_bundle(time_tag const& timeout, const char* data, size_t length, endpoint_ptr const& e…
161 void execute_bundles(time_tag const& last, time_tag const& now);
292 time_tag handle_bundle_nrt(const char* data_, std::size_t length);
313 void increment_logical_time(time_tag const& diff) { in increment_logical_time()
318 void set_last_now(time_tag const& lasts, time_tag const& nows) { in set_last_now()
323 void add_last_now(time_tag const& add) { in add_last_now()
333 time_tag const& current_time(void) const { return now; } in current_time()
336 time_tag now, last;
[all …]
H A Dsc_osc_handler.cpp533 void sc_scheduled_bundles::insert_bundle(time_tag const& timeout, const char* data, size_t length, in insert_bundle()
547 void sc_scheduled_bundles::execute_bundles(time_tag const& last, time_tag const& now) { in execute_bundles()
552 time_tag const& next_timestamp = front.timeout_; in execute_bundles()
559 time_tag time_since_last = next_timestamp - last; in execute_bundles()
776 time_tag sc_osc_handler::handle_bundle_nrt(const char* data, size_t length) { in handle_bundle_nrt()
819 time_tag bundle_time = bundle.TimeTag(); in handle_bundle()
826 time_tag late = now - bundle_time; in handle_bundle()
/dports/audio/supercollider/SuperCollider-3.11.0-Source/server/supernova/server/
H A Dserver.hpp192 …void set_last_now(time_tag const& lasts, time_tag const& nows) { sc_osc_handler::set_last_now(last… in set_last_now()
196 time_tag::from_samples(audio_backend::get_latency(), audio_backend::get_samplerate())); in compensate_latency()
257time_tag oscTime = time_tag((uint64)((instance->mDLL.PeriodTime()) * kSecondsToOSCunits + .5)); in sync_clock()
258 time_tag oscInc = time_tag((uint64)((instance->mDLL.Period()) * kSecondsToOSCunits + .5)); in sync_clock()
286time_tag oscTime = time_tag((uint64)((instance->mDLL.PeriodTime()) * kSecondsToOSCunits + .5)); in run_tick()
287 time_tag oscInc = time_tag((uint64)((instance->mDLL.Period()) * kSecondsToOSCunits + .5)); in run_tick()
H A Dserver.cpp63 time_per_tick = time_tag::from_samples(args.blocksize, args.samplerate);
86 time_per_tick = time_tag::from_samples(blocksize, get_samplerate());
H A Dnrt_synthesis.hpp106 time_tag bundle_time = instance->handle_bundle_nrt(packet_vector.data(), packet_size); in run()
/dports/net-mgmt/librenms/librenms-21.5.1/
H A Dpoller-wrapper.py164 or memc.get("poller.device.%s.%s" % (device_id, time_tag)) is None
168 "poller.device.%s.%s" % (device_id, time_tag),
242 time_tag = str(get_time_tag(step)) variable
243 master_tag = "poller.master." + time_tag
244 nodes_tag = "poller.nodes." + time_tag
401 print("Clearing Locks for %s" % time_tag)
404 res = memc.delete("poller.device.%s.%s" % (x, time_tag))
412 print("Finished %.3fs after interval start." % (time.time() - int(time_tag)))
/dports/www/rssroll/rssroll-0.6.2/src/
H A Drss.c38 struct tm time_tag; in strptime2() local
61 memset(&time_tag, 0, sizeof(struct tm)); in strptime2()
64 time_tag.tm_year = strtol (y, NULL, 10) - 1900; in strptime2()
66 time_tag.tm_mon = strtol (m, NULL, 10) - 1; in strptime2()
68 time_tag.tm_mday = strtol (d, NULL, 10); in strptime2()
70 time_tag.tm_hour = strtol (h, NULL, 10); in strptime2()
72 time_tag.tm_min = strtol (min, NULL, 10); in strptime2()
74 t = mktime(&time_tag); in strptime2()
/dports/comms/gnuradio/gnuradio-3.8.4.0/gr-uhd/examples/python/
H A Dfreq_hopping.py154 time_tag = gr.tag_t()
155 time_tag.offset = i * burst_length
156 time_tag.key = pmt.string_to_symbol('tx_time')
157 time_tag.value = pmt.make_tuple(
161 tag_list.append(time_tag)
/dports/audio/aylet/aylet-0.5/
H A Dmain.h63 struct time_tag { int min,sec,subsecframes; }; argument
66 extern struct time_tag tunetime;
/dports/audio/ocp/ocp-0.2.90/playay/
H A Dmain.h73 struct time_tag { int min,sec,subsecframes; }; struct
74 extern __attribute__ ((visibility ("internal"))) struct time_tag ay_tunetime;
/dports/audio/fabla2-lv2/openAV-Fabla2-33f4062/src/ui/oscpkt/
H A Doscpkt.hh219 TimeTag time_tag; member in oscpkt::Message
324 …Message(const std::string &s, TimeTag tt = TimeTag::immediate()) : time_tag(tt), address(s), err(O… in Message()
325 …d *ptr, size_t sz, TimeTag tt = TimeTag::immediate()) { buildFromRawData(ptr, sz); time_tag = tt; } in Message()
336 TimeTag timeTag() const { return time_tag; } in timeTag()
340 address = addr; time_tag = tt; in init()
424 err = OK_NO_ERROR; time_tag = TimeTag::immediate(); in clear()
483 …'" << msg.address << "', types: '" << msg.type_tags << "', timetag=" << msg.time_tag << ", args=["; in operator <<()
535 void parse(const char *beg, const char *end, TimeTag time_tag) { in parse() argument
558 messages.push_back(Message(beg, end-beg, time_tag)); in parse()
/dports/www/rsstool/rsstool-1.0.0-src/src/misc/
H A Dmisc.c769 struct tm time_tag; in strptime2() local
800 memset (&time_tag, 0, sizeof (struct tm)); in strptime2()
803 time_tag.tm_year = strtol (y, NULL, 10) - 1900; in strptime2()
805 time_tag.tm_mon = strtol (m, NULL, 10) - 1; in strptime2()
807 time_tag.tm_mday = strtol (d, NULL, 10); in strptime2()
809 time_tag.tm_hour = strtol (h, NULL, 10); in strptime2()
811 time_tag.tm_min = strtol (min, NULL, 10); in strptime2()
813 t = mktime (&time_tag); in strptime2()
/dports/devel/pecl-swoole/swoole-4.8.5/tools/
H A Dpecl-package.php204 $time_tag = date('H', time() + 3600) . ':00:00'; variable
205 $content = preg_replace('/(<time\>)\d+?:\d+?:\d+?(<\/time>)/', '${1}' . $time_tag . '${2}', $conten…
/dports/science/py-pyked/PyKED-0.4.1-16-gfcccaf8/pyked/
H A Dconverters.py425 time_tag = None
432 time_tag = prop.attrib['id']
441 if time_tag is None or len(quant_tags) == 0:
453 if val.tag == time_tag:
/dports/net-im/tkabber-plugins/tkabber-plugins-1.1.2/whiteboard/
H A Dwhiteboard.tcl441 $w.c addtag [time_tag created $from $seconds] withtag $id
471 $w.c addtag [time_tag transformed $from $seconds] withtag $id1
482 $w.c addtag [time_tag moved $from $seconds] withtag [list id $id]
735 $c addtag [time_tag created $jid] withtag $line(temp)
850 $c addtag [time_tag created $jid] withtag $polygon(temp)
926 $c addtag [time_tag created $jid] withtag $rectangle(temp)
1035 $c addtag [time_tag created $jid] withtag $circle(temp)
1139 $c addtag [time_tag created $jid] withtag $line(temp)
1269 $c addtag [time_tag moved $jid] withtag [list id $id]
1356 $c addtag [time_tag created $jid] withtag $imageid
[all …]
/dports/audio/lsp-plugins-lv2/lsp-plugins-1.1.31/src/testing/utest/core/protocol/
H A Dosc.cpp61 uint64_t time_tag; member
86 uint64_t time_tag; member
92 uint64_t time_tag; member
116 uint64_t time_tag; member
154 uint64_t time_tag; member
356 m.time_tag = CPU_TO_BE(uint64_t(0xff00cc01aa028803ULL)); in test_forge_parameters()
451 b.time_tag = CPU_TO_BE(uint64_t(0x1122334455667788ULL)); in test_forge_message_bundle()
456 b.bundle1.time_tag = CPU_TO_BE(uint64_t(0x2233445566778899ULL)); in test_forge_message_bundle()
477 b.bundle2.time_tag = CPU_TO_BE(uint64_t(0x5566778899aabbccULL)); in test_forge_message_bundle()
633 m.time_tag = CPU_TO_BE(uint64_t(0xcafebabecafefaceULL)); in test_format()
[all …]
/dports/net/freeswitch/freeswitch-1.10.3.-release/src/
H A Dswitch_ivr.c3073 switch_xml_set_txt_d(time_tag, tmp); in switch_ivr_generate_xml_cdr()
3079 switch_xml_set_txt_d(time_tag, tmp); in switch_ivr_generate_xml_cdr()
3085 switch_xml_set_txt_d(time_tag, tmp); in switch_ivr_generate_xml_cdr()
3092 switch_xml_set_txt_d(time_tag, tmp); in switch_ivr_generate_xml_cdr()
3098 switch_xml_set_txt_d(time_tag, tmp); in switch_ivr_generate_xml_cdr()
3104 switch_xml_set_txt_d(time_tag, tmp); in switch_ivr_generate_xml_cdr()
3110 switch_xml_set_txt_d(time_tag, tmp); in switch_ivr_generate_xml_cdr()
3116 switch_xml_set_txt_d(time_tag, tmp); in switch_ivr_generate_xml_cdr()
3122 switch_xml_set_txt_d(time_tag, tmp); in switch_ivr_generate_xml_cdr()
3128 switch_xml_set_txt_d(time_tag, tmp); in switch_ivr_generate_xml_cdr()
[all …]
/dports/irc/irssi/irssi-1.2.3/src/core/
H A Dignore.c40 static int time_tag; variable
525 time_tag = g_timeout_add(1000, (GSourceFunc) unignore_timeout, NULL); in ignore_init()
533 g_source_remove(time_tag); in ignore_deinit()
/dports/audio/lsp-plugins-lv2/lsp-plugins-1.1.31/include/core/protocol/osc/
H A Dparse.h84 status_t parse_begin_bundle(parse_frame_t *child, parse_frame_t *ref, uint64_t *time_tag);
/dports/audio/lsp-plugins-lv2/lsp-plugins-1.1.31/src/core/protocol/osc/
H A Dparse.cpp269 status_t parse_begin_bundle(parse_frame_t *child, parse_frame_t *ref, uint64_t *time_tag) in parse_begin_bundle() argument
325 if (time_tag != NULL) in parse_begin_bundle()
326 *time_tag = BE_TO_CPU(xptr.hdr->tag); in parse_begin_bundle()
/dports/math/moab/fathomteam-moab-7bde9dfb84a8/src/io/
H A DNCHelper.cpp320 Tag time_tag = 0; in update_time_tag_vals() local
323 …rval = mbImpl->tag_get_handle(time_tag_name.c_str(), 0, MB_TYPE_DOUBLE, time_tag, MB_TAG_VARLEN);M… in update_time_tag_vals()
324 …rval = mbImpl->tag_get_by_ptr(time_tag, &_fileSet, 1, &data, &time_tag_size);MB_CHK_SET_ERR(rval, … in update_time_tag_vals()
352 …rval = mbImpl->tag_set_by_ptr(time_tag, &_fileSet, 1, &data, &time_tag_size);MB_CHK_SET_ERR(rval, … in update_time_tag_vals()
/dports/devel/elixir-calendar/calendar-0.17.4/lib/calendar/
H A Dnaive_date_time.ex67 {time_tag, _ } = Calendar.Time.from_erl(time)
68 :calendar.valid_date(date) && time_tag == :ok

12