Searched refs:tail (Results 1 - 24 of 24) sorted by relevance

/frameworks/av/media/mtp/
H A DMtpUtils.cpp43 const char* tail = dateTime + 15; local
44 if (tail[0] == '.' && tail[1]) tail += 2;
56 bool useUTC = (tail[0] == 'Z');
/frameworks/native/libs/vr/libbroadcastring/include/libbroadcastring/
H A Dbroadcast_ring.h258 return std::atomic_load_explicit(&header_mmap()->tail,
275 // (1) Load-Acquire of |tail|
281 // i.e. the stores for the records with sequence numbers < |tail| have
295 uint32_t tail = std::atomic_load_explicit(&header_mmap()->tail, local
300 if (tail - head > record_count())
303 if (*sequence - head > tail - head)
306 if (*sequence == tail) return false; // No new records available.
309 CalculateGeometry(record_count(), record_size(), *sequence, tail);
326 // 0 <= final_head - head <= sequence - head < tail
379 std::atomic<uint32_t> tail; member in struct:android::dvr::BroadcastRing::Header
409 uint32_t tail; member in struct:android::dvr::BroadcastRing::Geometry
515 CalculateGeometry(uint32_t record_count, uint32_t record_size, uint32_t head, uint32_t tail) argument
[all...]
/frameworks/base/core/java/android/util/
H A DBase64.java515 // Account for the tail of the data and the padding bytes, if any.
572 final private byte[] tail; field in class:Base64.Encoder
589 tail = new byte[2];
614 // First we need to concatenate the tail of the previous call
616 // the tail.
620 // There was no tail.
625 // A 1-byte tail with at least 2 bytes of
627 v = ((tail[0] & 0xff) << 16) |
636 // A 2-byte tail with at least 1 byte of input.
637 v = ((tail[
[all...]
/frameworks/av/media/libstagefright/foundation/
H A DAStringUtils.cpp54 // last pattern must match tail
58 const char *tail = str + strLen - len; local
59 return !Compare(tail, pattern, len, ignoreCase);
/frameworks/av/services/audioflinger/
H A DFastMixerDumpState.cpp94 // the mean account for 99.73% of the population. So if we take each tail to be 1/1000 of the
97 uint32_t *tail = n >= kTailDenominator ? new uint32_t[n] : NULL; local
102 if (tail != NULL) {
103 tail[j] = wallNs;
144 if (tail != NULL) {
145 qsort(tail, n, sizeof(uint32_t), compare_uint32_t);
146 // assume same number of tail samples on each side, left and right
150 left.sample(tail[i]);
151 right.sample(tail[n - (i + 1)]);
155 " left tail
[all...]
/frameworks/base/data/sounds/
H A Dgenerate-all-audio.sh55 tail -n 1 |
/frameworks/native/include/private/ui/
H A DRegionHelper.h117 inline int next(TYPE& head, TYPE& tail, argument
127 tail = lhs_tail;
131 tail = rhs_head;
137 tail = rhs_tail;
141 tail = lhs_head;
147 tail = rhs_head = lhs_tail;
151 tail = lhs_head = rhs_tail;
/frameworks/native/libs/ui/
H A DRegion.cpp236 const_iterator const tail = end(); local
237 while (cur != tail) {
423 Rect* tail; member in class:android::Region::rasterizer
428 : bounds(INT_MAX, 0, INT_MIN, 0), storage(reg.mStorage), head(), tail(), cur() {
482 if (tail-head == ssize_t(span.size())) {
487 while (q != tail) {
500 while (r != tail) {
508 tail = storage.editArray() + storage.size();
509 head = tail - span.size();
518 const_iterator const tail local
652 Region::const_iterator const tail = dst.end(); member in class:android::Region
849 const_iterator const tail = end(); local
863 const_iterator const tail = end(); local
[all...]
/frameworks/base/tests/backup/
H A Dtest_restore.sh108 a shell cat /data/data/com.android.backuptest/files/3.txt | tail -n 3
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp106 bool mix(int32_t *output, int head, int tail, int sampleRate);
236 bool AudioStream::mix(int32_t *output, int head, int tail, int sampleRate) argument
245 if (tail - mBufferTail > 0) {
246 tail = mBufferTail;
248 if (tail - head <= 0) {
253 tail *= mSampleRate;
256 for (int i = head; i - tail < 0; ++i) {
454 int tail = (tick + mInterval) * mSampleRate; local
455 for (int i = mBufferTail * mSampleRate; i - tail < 0; ++i) {
463 int tail local
[all...]
/frameworks/base/media/java/android/media/
H A DSubtitleTrack.java473 SortedMap<Long, Vector<Cue>> tail = null;
475 tail = mCues.tailMap(timeMs + 1);
476 if (tail != null) {
477 return tail.firstKey();
/frameworks/native/services/inputflinger/
H A DInputDispatcher.h615 T* tail; member in struct:android::InputDispatcher::Queue
618 inline Queue() : head(NULL), tail(NULL), entryCount(0) {
627 entry->prev = tail;
628 if (tail) {
629 tail->next = entry;
634 tail = entry;
643 tail = entry;
659 tail = entry->prev;
670 tail = NULL;
H A DInputDispatcher.cpp187 Region::const_iterator const tail = region.end(); member in class:android::Region
188 while (cur != tail) {
/frameworks/native/opengl/tools/glgen2/registry/
H A Dreg.py480 # lxml.etree has elem.text followed by (elem[i], elem[i].tail)
486 # declaration. Otherwise append its contents and tail contents.
489 tail = noneStr(elem.tail)
491 pdecl += self.genOpts.apientry + text + tail
492 tdecl += '(' + self.genOpts.apientryp + 'PFN' + text.upper() + 'PROC' + tail + ')'
494 pdecl += text + tail
495 tdecl += text + tail
614 s += self.genOpts.apientry + noneStr(elem.tail)
616 s += noneStr(elem.text) + noneStr(elem.tail)
[all...]
/frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
H A DCat.java155 tint(mBodyColor, D.body, D.head, D.leg1, D.leg2, D.leg3, D.leg4, D.tail,
367 public Drawable tail; field in class:Cat.CatParts
387 tail = context.getDrawable(R.drawable.tail);
420 tail, tailCap, tailShadow,
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DMagnificationGestureHandler.java773 MotionEventInfo tail = mDelayedEventQueue;
774 while (tail.mNext != null) {
775 tail = tail.mNext;
777 tail.mNext = info;
/frameworks/base/services/core/java/com/android/server/
H A DDropBoxManagerService.java706 SortedSet<EntryFile> tail = mAllFiles.contents.tailSet(new EntryFile(t + 10000));
708 if (!tail.isEmpty()) {
709 future = tail.toArray(new EntryFile[tail.size()]);
710 tail.clear(); // Remove from mAllFiles
/frameworks/native/libs/binder/
H A DMemoryDealer.cpp59 NODE const* tail() const { return mLast; } function in class:android::LinkedList
60 NODE* tail() { return mLast; } function in class:android::LinkedList
/frameworks/native/opengl/tools/glgen2/
H A Dglgen.py68 type += nonestr(subelem.tail)
/frameworks/rs/
H A Dupdate_rs_prebuilts.sh26 NUM_CORES=`cat /proc/cpuinfo | grep processor | tail -n 1 | cut -f 2 -d :`
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.cpp926 int tail = anr_traces_path.size() - 1; local
927 while (tail > 0 && anr_traces_path.at(tail) != '/') {
928 tail--;
932 anr_traces_path = anr_traces_path.substr(0, tail + 1) +
/frameworks/native/libs/gui/
H A DSurface.cpp1539 Region::const_iterator tail(reg.end());
1540 if (head != tail && src_bits && dst_bits) {
1545 while (head != tail) {
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp959 Region::const_iterator tail(clearReg.end());
961 while (head != tail) {
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 685 milliseconds