HomeSort by relevance Sort by last modified time
    Searched defs:seconds (Results 226 - 250 of 709) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/python/cpython3/Modules/
socketmodule.c 721 /* s->sock_timeout is in seconds, timeout in ms */
2547 double seconds = _PyTime_AsSecondsDouble(s->sock_timeout); local
6173 double seconds = _PyTime_AsSecondsDouble(defaulttimeout); local
    [all...]
_datetimemodule.c 47 * carries from adding seconds.
94 #define GET_TD_SECONDS(o) (((PyDateTime_Delta *)(o))->seconds)
98 #define SET_TD_SECONDS(o, v) ((o)->seconds = (v))
479 /* Fiddle days (d), seconds (s), and microseconds (us) so that
780 * that seconds and microseconds are already in their proper ranges. In any
785 new_delta_ex(int days, int seconds, int microseconds, int normalize,
791 normalize_d_s_us(&days, &seconds, &microseconds);
792 assert(0 <= seconds && seconds < 24*3600);
802 SET_TD_SECONDS(self, seconds);
1117 int hours, minutes, seconds; local
1807 int seconds = GET_TD_SECONDS(left) + GET_TD_SECONDS(right); local
1866 int seconds = GET_TD_SECONDS(left) - GET_TD_SECONDS(right); local
2298 int seconds = GET_TD_SECONDS(self); local
3338 int hours, minutes, seconds; local
3888 int seconds, microseconds; local
4972 int days, seconds; local
5107 PyObject *seconds; local
5137 long long seconds; local
5335 long long seconds; local
    [all...]
  /external/syslinux/com32/include/syslinux/
pxe_api.h 71 uint16_t seconds; member in struct:__anon37019
  /external/syslinux/gpxe/src/arch/i386/include/
pxe_api.h 342 * Number of seconds since the client began the DHCP
345 UINT16_t seconds; member in struct:bootph
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest.cc 3222 time_t seconds = static_cast<time_t>(ms \/ 1000); local
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
ExifInterface.java 1913 double seconds = coordinate[2].toDouble(); local
2037 int seconds = (int) value; local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
VideoModule.java 756 int seconds = local
758 mMaxVideoDurationInMs = 1000 * seconds;
1556 long seconds = milliSeconds \/ 1000; \/\/ round down to compute seconds local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/exif/
ExifInterface.java 1892 double seconds = coordinate[2].toDouble(); local
2016 int seconds = (int) value; local
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
ExifInterface.java 1913 double seconds = coordinate[2].toDouble(); local
2037 int seconds = (int) value; local
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/util/exif/
ExifInterface.java 1954 double seconds = coordinate[2].toDouble(); local
2078 int seconds = (int) value; local
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java 585 long seconds = (mDtend - mDtstart) / DateUtils.SECOND_IN_MILLIS; local
586 mDuration = "P" + seconds + "S";
    [all...]
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/src/
gtest.cc 3197 time_t seconds = static_cast<time_t>(ms \/ 1000); local
    [all...]
  /prebuilts/tools/common/m2/repository/javax/servlet/servlet-api/2.3/
servlet-api-2.3.jar 
  /external/ImageMagick/MagickCore/
display.c 10328 seconds[MagickPathExtent]; local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DateFormatTest.java 206 int offset, hours, minutes, seconds; local
247 seconds = (offset % 60000) / 1000;
250 if (seconds != 0) {
251 dstOffset += ":" + (seconds < 10 ? "0" : "") + seconds;
321 // hour is the expected hour of day, in units of seconds
331 // hr is the actual hour of day, in units of seconds
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DateFormatTest.java 203 int offset, hours, minutes, seconds; local
244 seconds = (offset % 60000) / 1000;
247 if (seconds != 0) {
248 dstOffset += ":" + (seconds < 10 ? "0" : "") + seconds;
318 // hour is the expected hour of day, in units of seconds
328 // hr is the actual hour of day, in units of seconds
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
gtest-all.cc 518 // Formats the given time in milliseconds as seconds.
4707 time_t seconds = static_cast<time_t>(ms \/ 1000); local
    [all...]
  /frameworks/base/media/java/android/media/
ExifInterface.java 2097 double seconds = Double.parseDouble(pair[0].trim()) local
    [all...]
  /frameworks/base/services/core/java/com/android/server/content/
SyncManager.java 166 SystemProperties.getLong("sync.local_sync_delay", 30 * 1000 /* 30 seconds */);
178 private static final long SYNC_MONITOR_WINDOW_LENGTH_MILLIS = 60 * 1000; // 60 seconds
197 private static final long SYNC_DELAY_ON_CONFLICT = 10*1000; // 10 seconds
2106 final long seconds = duration % 60; local
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
VideoCamera.java 740 int seconds = local
742 mMaxVideoDurationInMs = 1000 * seconds;
1775 long seconds = milliSeconds \/ 1000; \/\/ round down to compute seconds local
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarProvider2.java 1571 int seconds = Integer.parseInt(duration.substring(1, len - 1)); local
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/fused-src/gtest/
gtest-all.cc 518 // Formats the given time in milliseconds as seconds.
4707 time_t seconds = static_cast<time_t>(ms \/ 1000); local
    [all...]
  /bionic/libc/kernel/uapi/linux/
videodev2.h 427 __u8 seconds; member in struct:v4l2_timecode
    [all...]
  /external/kernel-headers/original/uapi/linux/
videodev2.h 787 __u8 seconds; member in struct:v4l2_timecode
    [all...]
  /external/pdfium/third_party/lcms/include/
lcms2.h 574 cmsUInt16Number seconds; member in struct:__anon31367
    [all...]

Completed in 1147 milliseconds

1 2 3 4 5 6 7 8 91011>>