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

/frameworks/av/media/mtp/
H A DMtpUtils.cpp43 const char* tail = dateTime + 15; local
45 if (tail[0] == '.' && tail[1])
46 tail += 2;
48 bool useUTC = (tail[0] == 'Z');
/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/base/data/sounds/
H A Dgenerate-all-audio.sh55 tail -n 1 |
/frameworks/native/include/private/ui/
H A DRegionHelper.h116 inline int next(TYPE& head, TYPE& tail, argument
126 tail = lhs_tail;
130 tail = rhs_head;
136 tail = rhs_tail;
140 tail = lhs_head;
146 tail = rhs_head = lhs_tail;
150 tail = lhs_head = rhs_tail;
/frameworks/native/libs/ui/
H A DRegion.cpp395 Rect* tail; member in class:android::Region::rasterizer
400 : bounds(INT_MAX, 0, INT_MIN, 0), storage(reg.mStorage), head(), tail(), cur() {
442 if (tail-head == ssize_t(span.size())) {
447 while (q != tail) {
459 while (r != tail) {
467 tail = storage.editArray() + storage.size();
468 head = tail - span.size();
478 const_iterator const tail = reg.end(); local
481 while (cur != tail) {
608 Region::const_iterator const tail member in class:android::Region
796 const_iterator const tail = end(); local
816 const_iterator const tail = end(); local
[all...]
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.c139 int tail = strlen(anr_traces_path)-1; local
140 while (tail > 0 && anr_traces_path[tail] != '/') {
141 tail--;
145 sprintf(anr_traces_path+tail+1, "slow%02d.txt", i);
/frameworks/ex/variablespeed/jni/
H A Dring_buffer.cc66 int64 tail = GetTail(); local
67 return tail + size_ - head_logical_;
/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.cpp104 bool mix(int32_t *output, int head, int tail, int sampleRate);
234 bool AudioStream::mix(int32_t *output, int head, int tail, int sampleRate) argument
243 if (tail - mBufferTail > 0) {
244 tail = mBufferTail;
246 if (tail - head <= 0) {
251 tail *= mSampleRate;
254 for (int i = head; i - tail < 0; ++i) {
452 int tail = (tick + mInterval) * mSampleRate; local
453 for (int i = mBufferTail * mSampleRate; i - tail < 0; ++i) {
461 int tail local
[all...]
/frameworks/base/media/java/android/media/
H A DSubtitleTrack.java460 SortedMap<Long, Vector<Cue>> tail = null;
462 tail = mCues.tailMap(timeMs + 1);
463 if (tail != null) {
464 return tail.firstKey();
/frameworks/base/services/input/
H A DInputDispatcher.h610 T* tail; member in struct:android::InputDispatcher::Queue
612 inline Queue() : head(NULL), tail(NULL) {
620 entry->prev = tail;
621 if (tail) {
622 tail->next = entry;
627 tail = entry;
635 tail = entry;
650 tail = entry->prev;
660 tail = NULL;
/frameworks/av/services/audioflinger/
H A DFastMixer.cpp777 // the mean account for 99.73% of the population. So if we take each tail to be 1/1000 of the
780 uint32_t *tail = n >= kTailDenominator ? new uint32_t[n] : NULL;
785 if (tail != NULL) {
786 tail[j] = wallNs;
821 if (tail != NULL) {
822 qsort(tail, n, sizeof(uint32_t), compare_uint32_t);
823 // assume same number of tail samples on each side, left and right
827 left.sample(tail[i]);
828 right.sample(tail[n - (i + 1)]);
831 " left tail
[all...]
/frameworks/base/services/java/com/android/server/
H A DDropBoxManagerService.java655 SortedSet<EntryFile> tail = mAllFiles.contents.tailSet(new EntryFile(t + 10000));
657 if (!tail.isEmpty()) {
658 future = tail.toArray(new EntryFile[tail.size()]);
659 tail.clear(); // Remove from mAllFiles
/frameworks/base/services/java/com/android/server/accessibility/
H A DScreenMagnifier.java785 MotionEventInfo tail = mDelayedEventQueue;
786 while (tail.mNext != null) {
787 tail = tail.mNext;
789 tail.mNext = info;
/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/base/cmds/bootanimation/
H A DBootAnimation.cpp527 Region::const_iterator tail(clearReg.end());
529 while (head != tail) {
/frameworks/native/libs/gui/
H A DSurface.cpp684 Region::const_iterator tail(reg.end());
685 if (head != tail && src_bits && dst_bits) {
690 while (head != tail) {

Completed in 1178 milliseconds