Searched refs:time (Results 1 - 25 of 1293) sorted by relevance

1234567891011>>

/haiku-fatelf/src/apps/haiku3d/
H A DMathUtils.cpp18 MathUtils::EaseInOutCubic(float time, float start, float distance, argument
21 time /= duration / 2.0;
22 if (time < 1.0)
23 return distance / 2.0 * time * time * time + start;
24 time -= 2.0;
25 return distance / 2.0 * (time * time * time
30 EaseInOutQuart(float time, float start, float distance, float duration) argument
45 EaseInOutQuint(float time, float start, float distance, float duration) argument
57 EaseInOutSine(float time, float start, float distance, float duration) argument
[all...]
H A DMathUtils.h15 static float EaseInOutCubic(float time, float begin, float distance,
17 static float EaseInOutQuart(float time, float begin, float distance,
19 static float EaseInOutQuint(float time, float begin, float distance,
21 static float EaseInOutSine(float time, float begin, float distance,
/haiku-fatelf/src/libs/pdflib/libs/pdflib/
H A Dp_subsett.c19 #include <time.h>
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/definitions/time_h/
H A D1-1.c8 Test the existence of the time.h file and that it can be
12 #include <time.h>
H A D28-1.c9 time_t time(time_t *);
13 #include <time.h>
20 dummyvar = time;
H A D3-1.c11 #include <time.h>
H A D3-2.c11 #include <time.h>
H A D3-3.c13 #include <time.h>
H A D3-4.c13 #include <time.h>
H A D6-1.c12 #include <time.h>
H A D6-2.c12 #include <time.h>
H A D6-3.c13 #include <time.h>
H A D34-1.c13 #include <time.h>
H A D35-1.c12 #include <time.h>
H A D35-2.c11 #include <time.h>
/haiku-fatelf/src/libs/pdflib/libs/pdcore/
H A Dpc_scope.c19 #include <time.h>
/haiku-fatelf/src/apps/debuganalyzer/util/
H A DTimeUtils.h29 decompose_time(bigtime_t time, decomposed_bigtime& decomposed) argument
32 decomposed.micros = time % 1000000;
33 time /= 1000000;
35 decomposed.seconds = time % 60;
36 time /= 60;
38 decomposed.minutes = time % 60;
39 time /= 60;
41 decomposed.hours = time;
46 decompose_time(nanotime_t time, decomposed_nanotime& decomposed) argument
49 decomposed.nanos = time
63 format_bigtime(bigtime_t time, char* buffer, size_t bufferSize) argument
76 format_bigtime(bigtime_t time) argument
85 format_nanotime(nanotime_t time, char* buffer, size_t bufferSize) argument
98 format_nanotime(nanotime_t time) argument
[all...]
/haiku-fatelf/src/tests/system/benchmarks/libMicro/
H A Dtime.c43 "notes: measures time()\n");
55 (void) time(NULL);
56 (void) time(NULL);
57 (void) time(NULL);
58 (void) time(NULL);
59 (void) time(NULL);
60 (void) time(NULL);
61 (void) time(NULL);
62 (void) time(NULL);
63 (void) time(NUL
[all...]
/haiku-fatelf/src/tests/kits/midi/midi_player/
H A DMidiDelay.cpp8 when the performance time is reached.
40 uint32 time = B_NOW) {
41 snooze_until(ToBigtime(time), B_SYSTEM_TIMEBASE);
42 SprayNoteOff(channel, note, velocity, time);
48 uint32 time = B_NOW) {
49 snooze_until(ToBigtime(time), B_SYSTEM_TIMEBASE);
50 SprayNoteOn(channel, note, velocity, time);
57 uint32 time = B_NOW) {
58 snooze_until(ToBigtime(time), B_SYSTEM_TIMEBASE);
59 SprayKeyPressure(channel, note, pressure, time);
[all...]
/haiku-fatelf/src/tests/kits/midi/midi_player_replacement/
H A DMidiDelay.cpp8 when the performance time is reached.
40 uint32 time = B_NOW) {
41 snooze_until(ToBigtime(time), B_SYSTEM_TIMEBASE);
42 SprayNoteOff(channel, note, velocity, time);
48 uint32 time = B_NOW) {
49 snooze_until(ToBigtime(time), B_SYSTEM_TIMEBASE);
50 SprayNoteOn(channel, note, velocity, time);
57 uint32 time = B_NOW) {
58 snooze_until(ToBigtime(time), B_SYSTEM_TIMEBASE);
59 SprayKeyPressure(channel, note, pressure, time);
[all...]
/haiku-fatelf/src/system/libroot/posix/time/
H A Dnanosleep.c7 #include <time.h>
16 nanosleep(const struct timespec* time, struct timespec* remainingTime) argument
19 clock_nanosleep(CLOCK_MONOTONIC, 0, time, remainingTime));
/haiku-fatelf/headers/posix/sys/
H A Dtimeb.h9 #include <time.h>
13 time_t time; /* seconds of current time */ member in struct:timeb
14 unsigned short millitm; /* milliseconds of current time */
/haiku-fatelf/src/bin/coreutils/lib/
H A Dgetdate.h1 /* Parse a string into an internal time stamp.
20 #include <time.h>
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dstrftime.h18 #include <time.h>
/haiku-fatelf/src/bin/bash/include/
H A Dposixtime.h1 /* posixtime.h -- wrapper for time.h, sys/times.h mess. */
26 For example, Dynix/ptx has that definition in <time.h> rather than
27 sys/time.h */
29 # include <sys/time.h>
30 # include <time.h>
33 # include <sys/time.h>
35 # include <time.h>

Completed in 87 milliseconds

1234567891011>>