Searched refs:time (Results 326 - 350 of 504) sorted by relevance

<<11121314151617181920>>

/haiku/src/system/kernel/debug/
H A Dsystem_profiler.cpp759 event->time = system_time_nsecs();
790 event->time = system_time_nsecs();
819 event->time = system_time_nsecs();
1110 event->time = system_time_nsecs();
1138 event->time = system_time_nsecs();
1163 event->time = system_time_nsecs();
1190 event->time = system_time_nsecs();
/haiku/src/add-ons/kernel/file_systems/ext2/
H A Dext2.h495 static void _DecodeTime(struct timespec *timespec, uint32 time, argument
498 timespec->tv_sec = B_LENDIAN_TO_HOST_INT32(time);
529 uint32 time = (timespec->tv_nsec << 2) & 0xfffffffc; local
531 time |= (uint64)timespec->tv_sec >> 32;
532 return B_HOST_TO_LENDIAN_INT32(time);
/haiku/src/servers/app/
H A DDelayedMessage.cpp812 bigtime_t time = system_time() + DM_MINIMUM_DELAY / 2; local
821 if (message->ScheduledTime() > time) {
846 bigtime_t timeout = message->ScheduledTime() - time;
H A DServerWindow.cpp128 struct profile { int32 code; int32 count; bigtime_t time; }; member in struct:profile
144 if (a->time < b->time)
146 if (a->time > b->time)
242 "per call)\n", string_for_message_code(p->code), p->count, p->time / 1000000.0,
243 p->time / p->count);
246 printf("average redraw processing time: %g secs, count: %" B_PRId32 " "
248 sRedrawProcessingTime.time / 1000000.0, sRedrawProcessingTime.count,
249 sRedrawProcessingTime.time / sRedrawProcessingTim
2258 bigtime_t time = 0; local
[all...]
/haiku/src/libs/glut/
H A Dglutint.h15 #include <sys/time.h>
45 #include <time.h>
50 #include <sys/time.h>
541 struct timeval timeout; /* time to be called */
/haiku/src/kits/media/experimental/
H A DMediaClientNode.cpp655 bigtime_t time = 0; local
664 time = fStartTime + bigtime_t((1000000LL * output->fFramesSent)
668 media_timed_event nextEvent(time, B_NEW_BUFFER);
/haiku/src/kits/network/libnetservices/
H A DNetworkCookie.cpp17 #include <time.h>
80 BDateTime time = BHttpTime(expirationString).Parse(); local
81 SetExpirationDate(time);
/haiku/src/kits/interface/
H A DColumnTypes.cpp254 BDateField::BDateField(time_t* time) argument
256 fTime(*localtime(time)),
257 fUnixTime(*time),
H A DAboutWindow.cpp15 #include <time.h>
475 time(&tp);
/haiku/headers/private/kernel/
H A Dthread_types.h780 /*! Returns the thread's current total CPU time (kernel + user + offset).
785 don't add the time since the last time \c last_time was updated. Should
787 thread is still running at that time, its time has already been stopped.
788 \return The thread's current total CPU time.
793 bigtime_t time = user_time + kernel_time + cpu_clock_offset; local
795 // If currently running, also add the time since the last check, unless
798 time += system_time() - last_time;
800 return time;
[all...]
H A Dtracing.h40 // print the difference time to the previously printed entry instead of the
41 // absolute time
61 void SetLastEntryTime(bigtime_t time);
/haiku/src/bin/unzip/
H A Dcrypt.c51 Seed1 supplied by the current time (= "(unsigned)time()") and Seed2
58 standard UNIX C runtime library functions: time(), rand(), srand().
62 2.) It is a very bad idea to use a second call to time() to set the
76 # include <time.h> /* time() function supplies first part of crypt seed */
182 static unsigned calls = 0; /* ensure different random header each time */
189 srand((unsigned)time(NULL) ^ ZCR_SEED2);
300 /* If last two bytes of header don't match crc (or file time in the
550 " (c | (b<<8)) = %04x (crc >> 16) = %04x lrec.time
[all...]
H A Dcryptf.c54 Seed1 supplied by the current time (= "(unsigned)time()") and Seed2
61 standard UNIX C runtime library functions: time(), rand(), srand().
65 2.) It is a very bad idea to use a second call to time() to set the
79 # include <time.h> /* time() function supplies first part of crypt seed */
185 static unsigned calls = 0; /* ensure different random header each time */
192 srand((unsigned)time(NULL) ^ ZCR_SEED2);
303 /* If last two bytes of header don't match crc (or file time in the
553 " (c | (b<<8)) = %04x (crc >> 16) = %04x lrec.time
[all...]
H A Dunzpriv.h102 #ifdef realix /* Modcomp Real/IX, real-time SysV.3 variant */
271 # include <time.h>
303 # include <time.h>
333 # include <time.h>
391 # include <time.h> /* localtime() */
443 # include <time.h>
449 # define close_outfile() fclose(G.outfile) /* can't set time on files */
476 # include <time.h>
532 # include <sys/time.h>
580 # include <time
[all...]
/haiku/src/tests/system/libroot/posix/
H A Dfseek_test.cpp18 #include <time.h>
239 /* Check the access time. */
254 t = time(NULL);
302 printf("%d: reading records for the second time failed\n", __LINE__);
H A Dxsi_msg_queue_test1.cpp16 #include <sys/time.h>
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DCommands.cpp496 off_t size, int32 flags, time_t time)
503 fTime(time)
/haiku/src/add-ons/kernel/bus_managers/ps2/
H A Dps2_dev.cpp222 TRACE("ps2: publishing %s: parent %s is %s; wait time %" B_PRId64
342 && (dev->history[0].time - dev->history[1].time) < 50000) {
449 "wait-time %" B_PRId64 "\n", res, system_time() - start);
487 "wait-time %" B_PRId64 "\n", res, system_time() - start);
/haiku/src/add-ons/media/plugins/raw_decoder/
H A DRawDecoderPlugin.cpp466 RawDecoder::SeekedTo(int64 frame, bigtime_t time) argument
472 fStartTime = time;
519 TRACE("framecount %lld, time %lld\n",*frameCount, mediaHeader->start_time);
/haiku/src/add-ons/accelerants/neomagic/
H A DInitAccelerant.c134 time_t now = time (NULL);
163 Now would be a good time to figure out what video modes your card supports.
/haiku/src/add-ons/accelerants/skeleton/
H A DInitAccelerant.c103 time_t now = time (NULL);
125 Now would be a good time to figure out what video modes your card supports.
/haiku/src/bin/pcmcia-cs/
H A Ddump_cisreg.c43 #include <sys/time.h>
/haiku/src/build/libroot/
H A Dfs_freebsd.cpp18 #include <sys/time.h>
/haiku/src/tests/kits/app/broster/
H A DLaunchTesterHelper.h60 bigtime_t *time = NULL);
/haiku/src/add-ons/kernel/file_systems/exfat/
H A DInode.h100 void _GetTimespec(uint16 date, uint16 time,

Completed in 163 milliseconds

<<11121314151617181920>>