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

/frameworks/av/services/audioflinger/
H A DAudioWatchdog.cpp67 time_t sec = newTs.tv_sec - mOldTs.tv_sec; local
70 --sec;
74 // cycleNs is same as sec*1e9 + nsec, but limited to about 4 seconds
76 if (sec > 0) {
77 if (sec < 4) {
78 cycleNs += sec * 1000000000;
83 mLogTs.tv_sec += sec;
/frameworks/rs/cpu_ref/linkloader/include/impl/
H A DELFSymbol.hxx159 ELFSectionTy const *sec = owner->getSectionByIndex(idx); local
160 rsl_assert(sec != 0 && "STT_OBJECT with null section.");
163 static_cast<ELFSectionBitsTy const &>(*sec);
224 ELFSectionTy const *sec = owner->getSectionByIndex(idx); local
225 rsl_assert(sec != 0 && "STT_FUNC with null section.");
228 static_cast<ELFSectionProgBitsTy const &>(*sec);
254 ELFSectionTy const *sec = owner->getSectionByIndex(idx); local
255 rsl_assert(sec != 0 && "STT_SECTION with null section.");
258 static_cast<ELFSectionBitsTy const &>(*sec);
283 ELFSectionTy const *sec local
[all...]
H A DELFObject.hxx60 std::unique_ptr<ELFSectionTy> sec(
62 object->stab.push_back(sec.release());
75 std::unique_ptr<ELFSectionTy> sec(
77 object->stab[index] = sec.release();
85 ELFSectionTy const *sec = stab[header->getStringSectionIndex()]; local
87 if (sec) {
89 static_cast<ELFSectionStrTabTy const &>(*sec);
1149 ELFSectionTy *sec = stab[i]; local
1150 if (sec) {
1151 sec
[all...]
/frameworks/av/media/libmedia/
H A DToneGenerator.cpp985 time_t sec = stopTime.tv_sec - mStartTime.tv_sec; local
989 --sec;
993 if ((sec + 1) > ((long)(INT_MAX / mSamplingRate))) {
994 mMaxSmp = sec * mSamplingRate;
997 sec = sec * 1000 + nsec / 1000000; // duration in milliseconds
998 mMaxSmp = (unsigned int)(((int64_t)sec * mSamplingRate) / 1000);
/frameworks/av/media/libnbaio/
H A DMonoPipe.cpp186 time_t sec = nowTs.tv_sec - mWriteTs.tv_sec; local
188 ALOGE_IF(sec < 0 || (sec == 0 && nsec < 0),
192 --sec;
195 if (sec == 0) {
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.cpp726 LDSection* sec = *rs; local
728 if (LDFileFormat::Ignore == sec->kind() || !sec->hasRelocData())
731 for (RelocData::iterator reloc = sec->getRelocData()->begin();
732 reloc != sec->getRelocData()->end(); ++reloc) {

Completed in 370 milliseconds