Home
last modified time | relevance | path

Searched refs:timerValue (Results 1 – 25 of 34) sorted by relevance

12

/dports/emulators/bsvc/bsvc-2.4.6/src/M68k/devices/
H A DTimer.cpp158 timerValue[TCR] = c; in Poke()
161 timerValue[TIVR] = c; in Poke()
164 timerValue[NULR] = c; in Poke()
167 timerValue[CPRH] = c; in Poke()
176 timerValue[TSR] = c; in Poke()
189 timerValue[i] = 0; in Reset()
225 timerValue[TCR] = (timerValue[TCR] & 0xfe); in EventCallback()
226 timerValue[TSR] = (timerValue[TSR] | 0x01); in EventCallback()
239 timerValue[CNTRH] = timerValue[CPRH]; in copyCPRtoCNTR()
240 timerValue[CNTRM] = timerValue[CPRM]; in copyCPRtoCNTR()
[all …]
H A DTimer.hpp88 Byte timerValue[22]; member in Timer
/dports/www/otter-browser/otter-browser-1.0.03/src/core/
H A DLongTermTimer.cpp75 quint64 timerValue(std::numeric_limits<int>::max()); in updateTimer()
77 if (remainingTime <= timerValue) in updateTimer()
79 timerValue = remainingTime; in updateTimer()
88 m_remainingTime -= timerValue; in updateTimer()
92 m_remainingTime = (remainingTime - timerValue); in updateTimer()
95 m_timer = startTimer(static_cast<int>(timerValue)); in updateTimer()
/dports/net-im/ruqola/ruqola-1.6.1/src/core/away/
H A Dawaymanager.cpp125 const int timerValue = 60 * 1000; // 1 minutes in timeValue() local
127 const int timerValue = mIdleTiming * 60 * 1000; in timeValue()
129 return timerValue; in timeValue()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/javax/swing/system/6799345/
H A DTestShutdown.java54 private static int timerValue = 0; field in TestShutdown
96 System.out.println("Timer tick: " + timerValue++); in startGUI()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/javax/swing/system/6799345/
H A DTestShutdown.java54 private static int timerValue = 0; field in TestShutdown
96 System.out.println("Timer tick: " + timerValue++); in startGUI()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/javax/swing/system/6799345/
H A DTestShutdown.java54 private static int timerValue = 0; field in TestShutdown
96 System.out.println("Timer tick: " + timerValue++); in startGUI()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/javax/swing/system/6799345/
H A DTestShutdown.java54 private static int timerValue = 0; field in TestShutdown
96 System.out.println("Timer tick: " + timerValue++); in startGUI()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/javax/swing/system/6799345/
H A DTestShutdown.java54 private static int timerValue = 0; field in TestShutdown
96 System.out.println("Timer tick: " + timerValue++); in startGUI()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/javax/swing/system/6799345/
H A DTestShutdown.java54 private static int timerValue = 0; field in TestShutdown
96 System.out.println("Timer tick: " + timerValue++); in startGUI()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/javax/swing/system/6799345/
H A DTestShutdown.java54 private static int timerValue = 0; field in TestShutdown
96 System.out.println("Timer tick: " + timerValue++); in startGUI()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/test/javax/swing/system/6799345/
H A DTestShutdown.java51 private static int timerValue = 0; field in TestShutdown
93 System.out.println("Timer tick: " + timerValue++); in startGUI()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/javax/swing/system/6799345/
H A DTestShutdown.java54 private static int timerValue = 0; field in TestShutdown
96 System.out.println("Timer tick: " + timerValue++); in startGUI()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/test/javax/swing/system/6799345/
H A DTestShutdown.java51 private static int timerValue = 0; field in TestShutdown
93 System.out.println("Timer tick: " + timerValue++); in startGUI()
/dports/x11-clocks/p5-Tk-Clock/Tk-Clock-0.41/
H A DClock.pm44 timerValue => 0,
611 $data->{timerStart} = $data->{timerValue} ? time : undef;
731 if ($data->{timerValue}) {
735 my $tv = $data->{timerValue} - ($t - $data->{timerStart});
737 $data->{timerValue} = 0;
H A DChangeLog62 * Added timerValue and corresponding Hc, Mc, and Sc format entries
/dports/comms/hylafax/hylafax-6.0.7/libhylafax/
H A DDispatcher.c++103 timeval timerValue; member
127 timerValue(t), in Timer()
154 return _first->timerValue; in earliestTime()
169 while (after != NULL && futureTime > after->timerValue) { in insert()
/dports/games/ags/ags_linux_v.3.4.4.1/Engine/gfx/
H A Dali3dsw.cpp542 int timerValue = *_loopTimer; in highcolor_fade_in() local
554 while (timerValue == *_loopTimer); in highcolor_fade_in()
581 int timerValue = *_loopTimer; in highcolor_fade_out() local
593 while (timerValue == *_loopTimer); in highcolor_fade_out()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.SqlClient/src/System/Data/Common/
H A DAdapterUtil.SqlClient.cs650 internal static long TimerToMilliseconds(long timerValue) in TimerToMilliseconds() argument
652 long result = timerValue / TimeSpan.TicksPerMillisecond; in TimerToMilliseconds()
656 private static long TimerToSeconds(long timerValue) in TimerToSeconds() argument
658 long result = timerValue / TimeSpan.TicksPerSecond; in TimerToSeconds()
/dports/www/chromium-legacy/chromium-88.0.4324.182/ios/chrome/browser/memory/
H A Dmemory_debugger.mm484 double timerValue;
487 BOOL valueFound = [scanner scanDouble:&timerValue];
490 if (![text length] || timerValue == 0.0) {
495 if (!valueFound || timerValue <= 0.0) {
510 [NSTimer scheduledTimerWithTimeInterval:timerValue
/dports/x11-clocks/p5-Tk-Clock/Tk-Clock-0.41/t/
H A D30_dual.t55 timerValue => 12345, # 04:25:45
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.Odbc/src/Common/System/Data/Common/
H A DAdapterUtil.Odbc.cs629 internal static long TimerToMilliseconds(long timerValue) in TimerToMilliseconds() argument
631 long result = timerValue / TimeSpan.TicksPerMillisecond; in TimerToMilliseconds()
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/lastexpress/game/
H A Dinventory.cpp624 uint timerValue = (getProgress().jacket == kJacketGreen) ? 450 : 225; in drawBlinkingEgg() local
626 if (globalTimer == timerValue || globalTimer == 900) { in drawBlinkingEgg()
/dports/games/scummvm/scummvm-2.5.1/engines/lastexpress/game/
H A Dinventory.cpp624 uint timerValue = (getProgress().jacket == kJacketGreen) ? 450 : 225; in drawBlinkingEgg() local
626 if (globalTimer == timerValue || globalTimer == 900) { in drawBlinkingEgg()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data/System/Data/Common/
H A DAdapterUtil.cs1966 static internal long TimerToMilliseconds(long timerValue) { in TimerToMilliseconds() argument
1967 long result = timerValue / TimeSpan.TicksPerMillisecond; in TimerToMilliseconds()
1971 static private long TimerToSeconds(long timerValue) { in TimerToSeconds() argument
1972 long result = timerValue / TimeSpan.TicksPerSecond; in TimerToSeconds()

12