Searched refs:sec (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/media/libdrm/mobile1/include/objmng/
H A Ddrm_time.h50 uint16_t sec; member in struct:__db_system_time_
H A Ddrm_inner.h26 #define INT_2_YMD_HMS(year, mon, day, date, hour, min, sec, time) do{\
32 sec = time % 100;\
/frameworks/base/media/libdrm/mobile1/include/parser/
H A Dparser_rel.h43 #define YMD_HMS_2_INT(year, mon, day, date, hour, min, sec, time) do{\
45 time = hour * 10000 + min * 100 + sec;\
55 int32_t time; /**< hour * 10000 + min *100 + sec */
98 * \param sec second of the time
103 int32_t drm_checkDate(int32_t year, int32_t month, int32_t day, int32_t hour, int32_t min, int32_t sec);
/frameworks/compile/linkloader/include/impl/
H A DELFSymbol.hxx164 ELFSectionTy const *sec = owner->getSectionByIndex(idx); local
165 rsl_assert(sec != 0 && "STT_OBJECT with null section.");
168 static_cast<ELFSectionBitsTy const &>(*sec);
239 ELFSectionTy const *sec = owner->getSectionByIndex(idx); local
240 rsl_assert(sec != 0 && "STT_FUNC with null section.");
243 static_cast<ELFSectionProgBitsTy const &>(*sec);
269 ELFSectionTy const *sec = owner->getSectionByIndex(idx); local
270 rsl_assert(sec != 0 && "STT_SECTION with null section.");
273 static_cast<ELFSectionBitsTy const &>(*sec);
298 ELFSectionTy const *sec local
[all...]
H A DELFObject.hxx56 llvm::OwningPtr<ELFSectionTy> sec(
58 object->stab.push_back(sec.take());
71 llvm::OwningPtr<ELFSectionTy> sec(
73 object->stab[index] = sec.take();
81 ELFSectionTy const *sec = stab[header->getStringSectionIndex()]; local
83 if (sec) {
85 static_cast<ELFSectionStrTabTy const &>(*sec);
514 ELFSectionTy *sec = stab[i]; local
515 if (sec) {
516 sec
[all...]
/frameworks/base/media/libdrm/mobile1/src/objmng/
H A Ddrm_time.c51 time_ptr->sec = tm_t->tm_sec;
H A Ddrm_api.c348 curDateTime.hour, curDateTime.min, curDateTime.sec))
353 curDateTime.sec, CurrentTime.time);
390 int32_t year, mon, day, hour, min, sec, date, time; local
403 INT_2_YMD_HMS(year, mon, day, date, hour, min, sec, time);
405 if (sec > 59) {
406 min += sec / 60;
407 sec %= 60;
434 min, sec, XXConstraint->EndTime.time);
462 curDateTime.hour, curDateTime.min, curDateTime.sec))
467 curDateTime.sec, CurrentTim
[all...]
/frameworks/base/core/jni/
H A DTimeUtils.h69 inline void set(int sec, int min, int hour, int mday, int mon, int year, argument
72 this->t.tm_sec = sec;
/frameworks/base/media/libdrm/mobile1/src/parser/
H A Dparser_rel.c52 int32_t hour, int32_t min, int32_t sec)
57 min >= 0 && min <= 59 && sec >= 0 && sec <= 59)
66 int32_t year, mon, day, hour, min, sec; local
126 sec = atoi((char *)pHead);
128 if (0 != drm_checkDate(year, mon, day, hour, min, sec))
131 YMD_HMS_2_INT(year, mon, day, dateTime->date, hour, min, sec,
238 int32_t year, mon, day, hour, min, sec; local
400 sec = atoi((char *)pHead);
406 || min < 0 || sec <
51 drm_checkDate(int32_t year, int32_t month, int32_t day, int32_t hour, int32_t min, int32_t sec) argument
[all...]
/frameworks/base/location/java/android/location/
H A DLocation.java238 double sec = 0.0;
243 sec = Double.parseDouble(seconds);
249 (min == 0) && (sec == 0);
259 if (sec < 0 || sec > 59) {
264 val = deg*3600.0 + min*60.0 + sec;
/frameworks/base/core/java/android/webkit/
H A DCacheManager.java884 long sec = Long.parseLong(s);
885 if (sec >= 0) {
887 * sec;
/frameworks/base/core/java/android/os/
H A DBatteryStats.java321 * Returns the total time (in 1/100 sec) spent executing in user code.
328 * Returns the total time (in 1/100 sec) spent executing in system code.
1058 long sec = time / 100;
1059 formatTimeRaw(sb, sec);
1060 sb.append((time - (sec * 100)) * 10);
1065 long sec = time / 1000;
1066 formatTimeRaw(sb, sec);
1067 sb.append(time - (sec * 1000));
/frameworks/base/core/java/android/content/
H A DSyncManager.java1114 + ((settings.delayUntil - now) / 1000) + " sec");
1118 + ((settings.backoffTime - now) / 1000) + " sec");
1122 + " sec");
1383 final long sec = diff % 3600;
1385 diff / 3600, sec / 60, sec % 60);

Completed in 287 milliseconds