Searched refs:time (Results 76 - 100 of 504) sorted by relevance

1234567891011>>

/haiku/src/apps/mediaplayer/supplier/
H A DSubTitles.h30 virtual const SubTitle* SubTitleAt(bigtime_t time) const = 0;
H A DSubTitlesSRT.h23 virtual const SubTitle* SubTitleAt(bigtime_t time) const;
/haiku/src/add-ons/kernel/file_systems/packagefs/util/
H A DUtils.h11 #include <time.h>
52 get_real_time(timespec& time) argument
56 time.tv_sec = timeMicros / 1000000;
57 time.tv_nsec = (timeMicros % 1000000) * 1000;
/haiku/headers/os/support/
H A Dparsedate.h9 #include <time.h>
H A DDateTime.h44 static bool IsValid(const BTime& time);
51 bool SetTime(const BTime& time);
66 bigtime_t Difference(const BTime& time,
69 bool operator!=(const BTime& time) const;
70 bool operator==(const BTime& time) const;
72 bool operator<(const BTime& time) const;
73 bool operator<=(const BTime& time) const;
75 bool operator>(const BTime& time) const;
76 bool operator>=(const BTime& time) const;
94 BDate(time_t time,
[all...]
/haiku/src/system/libroot/posix/time/
H A Dstime.c6 #include <time.h>
H A Dclock.cpp7 #include <time.h>
/haiku/src/libs/compat/freebsd_network/
H A Dclock.c8 #include <compat/sys/time.h>
/haiku/src/system/libroot/os/arch/x86_64/
H A Dsystem_time.cpp22 __uint128_t time = static_cast<__uint128_t>(__rdtsc()) * cv_factor; local
23 return time >> 64;
31 __uint128_t time = static_cast<__uint128_t>(__rdtscp(&aux)) * cv_factor; local
32 return time >> 64;
/haiku/src/system/libroot/posix/musl/time/
H A Dtime_impl.h1 #include <time.h>
H A Dasctime_r.c1 #include <time.h>
/haiku/src/add-ons/media/media-add-ons/mixer/
H A DMixerInput.h67 int64 framepos, bigtime_t time,
127 bigtime_t time, const float** buffer, uint32* sampleOffset, int* type,
137 if (time < (fLastDataAvailableTime - duration_for_frames(
139 || (time + duration_for_frames(fMixBufferFrameRate,
146 fMixBufferFrameCount), fLastDataAvailableTime, time,
147 time + duration_for_frames(fMixBufferFrameRate,
153 if (time > fLastDataAvailableTime)
126 GetMixerChannelInfo(int mixerChannel, int64 framepos, bigtime_t time, const float** buffer, uint32* sampleOffset, int* type, float* gain) argument
/haiku/src/tests/kits/app/bmessenger/
H A DLockTargetTester.cpp151 bigtime_t time = system_time(); local
153 time = system_time() - time - 50000;
157 CHK(time > -JITTER && time < JITTER);
193 bigtime_t time = system_time(); local
195 time = system_time() - time - 50000;
199 CHK(time > -JITTER && time < JITTE
[all...]
/haiku/src/kits/network/libnetapi/
H A DCertificate.cpp25 struct tm time; local
27 if (sscanf((char*)asn1->data, "%2d%2d%2d%2d%2d%2d", &time.tm_year,
28 &time.tm_mon, &time.tm_mday, &time.tm_hour, &time.tm_min,
29 &time.tm_sec) == 6) {
32 time.tm_year += 100;
33 time.tm_mon -= 1;
35 return mktime(&time);
[all...]
/haiku/src/servers/notification/
H A DNotificationReceived.cpp26 fLastReceived(time(NULL))
37 fLastReceived(time(NULL))
156 fLastReceived = time(NULL);
161 NotificationReceived::SetTimeStamp(time_t time) argument
163 fLastReceived = time;
/haiku/src/kits/support/
H A DUuid.cpp12 #include <time.h>
25 // set a time-based seed
26 timespec time; local
27 clock_gettime(CLOCK_REALTIME, &time);
28 uint32 seed = (uint32)time.tv_sec ^ (uint32)time.tv_nsec;
32 seed ^= (uint32)(addr_t)&time;
/haiku/headers/os/locale/
H A DDateTimeFormat.h46 const time_t time,
49 status_t Format(BString& buffer, const time_t time,
H A DDateFormat.h56 const time_t time,
58 status_t Format(BString& string, const time_t time,
61 status_t Format(BString& string, const BDate& time,
66 const time_t time,
H A DTimeFormat.h33 time_t time, BTimeFormatStyle style) const;
34 status_t Format(BString& string, const time_t time,
39 time_t time, BTimeFormatStyle style) const;
/haiku/src/kits/media/
H A DReaderPlugin.cpp35 Reader::Seek(void* cookie, uint32 flags, int64* frame, bigtime_t* time) argument
42 Reader::FindKeyFrame(void* cookie, uint32 flags, int64* frame, bigtime_t* time) argument
/haiku/src/apps/poorman/
H A DPoorManLogger.cpp11 #include <time.h>
26 time_t now = time(NULL);
/haiku/src/system/boot/arch/riscv64/
H A Darch_cpu.cpp70 bigtime_t time = system_time(); local
71 while ((system_time() - time) < microseconds)
/haiku/headers/build/host/darwin/
H A Dfcntl.h6 #include <sys/time.h>
/haiku/src/system/libnetwork/netresolv/
H A Dport_after.h8 #include <sys/time.h>
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dntfstime.h2 * ntfstime.h - NTFS time related functions. Originated from the Linux-NTFS project.
28 #include <time.h>
34 #include <sys/time.h>
60 * ntfs2timespec - Convert an NTFS time to Unix time
61 * @ntfs_time: An NTFS time in 100ns units since 1601
66 * Return: A Unix time (number of seconds since 1970, and nanoseconds)
84 * timespec2ntfs - Convert Linux time to NTFS time
85 * @utc_time: Linux time t
[all...]

Completed in 204 milliseconds

1234567891011>>