Searched defs:hours (Results 1 - 25 of 58) sorted by relevance

123

/external/toybox/toys/other/
H A Duptime.c28 unsigned int days, hours, minutes; local
48 hours = info.uptime%24;
51 if (hours) xprintf("%2d:%02d, ", hours, minutes);
/external/icu/icu4c/source/i18n/
H A Dutmscale.c19 #define hours (minutes * 60) macro
20 #define days (hours * 24)
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/timescale/
H A DEpochOffsets.java41 private static final long hours = minutes * 60; field in class:EpochOffsets
42 private static final long days = hours * 24;
H A DGenerateCTimeScaleData.java40 private static final long hours = minutes * 60; field in class:GenerateCTimeScaleData
41 private static final long days = hours * 24;
86 } else if (units == hours) {
87 cargs[0] = "hours";
/external/toybox/toys/pending/
H A Dlast.c74 unsigned days, hours, mins; local
82 hours = (mins = (mins%(24*60)))/60;
84 sprintf(toybuf+28, "(%u+%02u:%02u)", days, hours, mins); // Duration.
/external/v8/test/mjsunit/
H A Dto_number_order.js62 var hours = { valueOf: function() { x += 4; return 13; } };
68 new Date(year, month, date, hours, minutes, seconds, ms);
73 Date(year, month, date, hours, minutes, seconds, ms);
77 Date.UTC(year, month, date, hours, minutes, seconds, ms);
102 new Date().setHours(hours, minutes, seconds, ms);
106 new Date().setUTCHours(hours, minutes, seconds, ms);
110 new Date().setDate(date, hours, minutes, seconds, ms);
114 new Date().setUTCDate(date, hours, minutes, seconds, ms);
118 new Date().setMonth(month, date, hours, minutes, seconds, ms);
122 new Date().setUTCMonth(month, date, hours, minute
[all...]
/external/v8/test/webkit/
H A Ddate-constructor.js80 var hours = { valueOf: function() { testStr += 4; return 13; } };
86 new Date(year, month, date, hours, minutes, seconds, ms);
90 Date.UTC(year, month, date, hours, minutes, seconds, ms);
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
H A DTimeZoneAliasTest.java221 static public String formatHours(int hours) { argument
222 return nf.format(hours/DHOUR);
400 String hours = formatHours(minRecentOffset)
405 return id + getPurportedAliasesAsString() + " (" + hours + ")";
408 return "\t{\t\"" + id + "\"\t// [" + count + "] " + hours
/external/opencv3/3rdparty/openexr/IlmImf/
H A DImfTimeCode.cpp56 (int hours,
75 setHours (hours);
162 TimeCode::hours () const function in class:Imf::TimeCode
172 throw Iex::ArgExc ("Cannot set hours field in time code. "
55 TimeCode(int hours, int minutes, int seconds, int frame, bool dropFrame, bool colorFrame, bool fieldPhase, bool bgf0, bool bgf1, bool bgf2, int binaryGroup1, int binaryGroup2, int binaryGroup3, int binaryGroup4, int binaryGroup5, int binaryGroup6, int binaryGroup7, int binaryGroup8) argument
/external/opencv3/apps/traincascade/
H A Dcascadeclassifier.cpp271 int hours = (int(seconds) / 60 / 60) % 24; local
274 cout << "Training until now has taken " << days << " days " << hours << " hours " << minutes << " minutes " << seconds_left <<" seconds." << endl;
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DUniversalTimeScale.java254 private static final long hours = minutes * 60; field in class:UniversalTimeScale
255 private static final long days = hours * 24;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DUniversalTimeScale.java290 private static final long hours = minutes * 60; field in class:UniversalTimeScale
291 private static final long days = hours * 24;
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
H A DTimeZoneAliasTest.java217 static public String formatHours(int hours) { argument
218 return nf.format(hours/DHOUR);
396 String hours = formatHours(minRecentOffset)
401 return id + getPurportedAliasesAsString() + " (" + hours + ")";
404 return "\t{\t\"" + id + "\"\t// [" + count + "] " + hours
/external/iptables/extensions/
H A Dlibxt_time.c370 static inline void divide_time(unsigned int fulltime, unsigned int *hours, argument
376 *hours = fulltime / 60;
/external/valgrind/coregrind/
H A Dm_libcprint.c377 UInt t, ms, s, mins, hours, days; local
390 t /= 60; /* now in hours */
392 hours = t % 24;
397 VG_(sprintf)(buf, "%02u:%02u:%02u:%02u.%03u ", days, hours, mins, s, ms);
/external/libchrome/base/time/
H A Dtime.h110 static TimeDelta FromHours(int hours);
588 inline TimeDelta TimeDelta::FromHours(int hours) { argument
589 if (hours == std::numeric_limits<int>::max())
591 return TimeDelta(hours * Time::kMicrosecondsPerHour);
/external/libweave/third_party/chromium/base/time/
H A Dtime.h110 static TimeDelta FromHours(int hours);
562 inline TimeDelta TimeDelta::FromHours(int hours) { argument
563 if (hours == std::numeric_limits<int>::max())
565 return TimeDelta(hours * Time::kMicrosecondsPerHour);
/external/v8/src/base/platform/
H A Dtime.cc36 TimeDelta TimeDelta::FromHours(int hours) { argument
37 return TimeDelta(hours * Time::kMicrosecondsPerHour);
/external/llvm/unittests/Support/
H A DYAMLIOTest.cpp1103 : hours(0), minutes(0), seconds(0) {
1106 : hours(secs/3600),
1107 minutes((secs - (hours*3600))/60),
1111 return TotalSeconds(hours*3600 + minutes*60 + seconds);
1114 uint32_t hours; member in class:llvm::yaml::MappingTraits::NormalizedSeconds
1122 io.mapOptional("hours", keys->hours, (uint32_t)0);
1136 Input yin("---\n - hours: 1\n seconds: 5\n - seconds: 59\n...\n");
/external/lzma/CPP/7zip/UI/FileManager/
H A DProgressDialog2.cpp564 UInt64 hours = timeValue / 3600; local
565 UInt32 seconds = (UInt32)(timeValue - hours * 3600);
568 if (hours > 99)
570 ConvertUInt64ToString(hours, s);
575 UInt32 hours32 = (UInt32)hours;
/external/webrtc/webrtc/base/
H A Dhttpcommon.cc375 int hours = (zone[1] - '0') * 10 + (zone[2] - '0'); local
377 int offset = (hours * 60 + minutes) * 60;
/external/libvpx/libvpx/
H A Dvpxenc.c1894 int64_t hours; local
1899 hours = etl / 3600;
1900 etl -= hours * 3600;
1906 label, hours, mins, secs);
/external/icu/icu4c/source/test/intltest/
H A Ddtfmttst.cpp239 int32_t offset, hours, minutes, seconds; local
285 hours = offset/3600000;
288 UnicodeString dstOffset = (UnicodeString)"" + sign + (hours < 10 ? "0" : "") +
289 (int32_t)hours + ":" + (minutes < 10 ? "0" : "") + (int32_t)minutes;
4776 // date format time zone should be 4 hours ahead.
/external/icu/icu4c/source/tools/tzcode/
H A Dzic.c1112 warning(_("values over 24 hours not handled by pre-2007 versions of zic"));
1993 register int hours; local
2006 hours = offset;
2007 if (hours >= HOURSPERDAY * DAYSPERWEEK) {
2011 (void) sprintf(end(result), "%d", hours); local
/external/v8/src/
H A Dbuiltins.cc2247 double date = 1.0, hours = 0.0, minutes = 0.0, seconds = 0.0, ms = 0.0; local
2257 hours = hours_object->Number();
2283 double const time = MakeTime(hours, minutes, seconds, ms);
2317 // ES6 section 20.3.3.4 Date.UTC (year,month,date,hours,minutes,seconds,ms)
2323 double date = 1.0, hours = 0.0, minutes = 0.0, seconds = 0.0, ms = 0.0; local
2343 hours = hours_object->Number();
2372 double const time = MakeTime(hours, minutes, seconds, ms);

Completed in 1219 milliseconds

123