Searched defs:sec (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/media/libdrm/mobile1/include/objmng/
H A Ddrm_time.h50 uint16_t sec; member in struct:__db_system_time_
/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/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/media/libdrm/mobile1/src/objmng/
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...]

Completed in 193 milliseconds