HomeSort by relevance Sort by last modified time
    Searched refs:time_s (Results 1 - 4 of 4) sorted by null

  /libcore/ojluni/src/main/java/java/sql/
Timestamp.java 173 String time_s; local
200 time_s = s.substring(dividingSpace+1);
210 if (time_s == null)
212 firstColon = time_s.indexOf(':');
213 secondColon = time_s.indexOf(':', firstColon+1);
214 period = time_s.indexOf('.', secondColon+1);
240 (secondColon < time_s.length()-1)) {
241 hour = Integer.parseInt(time_s.substring(0, firstColon));
243 Integer.parseInt(time_s.substring(firstColon+1, secondColon));
244 if ((period > 0) & (period < time_s.length()-1))
    [all...]
  /device/google/contexthub/firmware/src/platform/stm32f4xx/
rtc.c 262 int32_t time_s; local
280 time_s = (((((dr >> 4) & 0x3) * 10) + (dr & 0xF) - 1) + (month << 5) - adjust[month]) * 86400ULL;
281 time_s += ((((tr >> 22) & 0x1) * 43200ULL) +
289 return (time_s * NS_PER_S) + U64_DIV_BY_CONST_U16(((RTC_PREDIV_S - ssr) * NS_PER_S), (RTC_PREDIV_S + 1));
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
vop.cpp 744 uint32 tmpvar, time_s; local
752 time_s = tmpvar * 3600;
756 time_s += tmpvar * 60;
763 time_s += tmpvar;
769 *time_base = time_s; /* 02/27/2002 */
771 // tmpvar = time_s - *time_base;
772 // if (tmpvar <= 60) *time_base = time_s;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
time.h 274 #include <sec_api/time_s.h>

Completed in 497 milliseconds