Searched refs:tail (Results 1 - 16 of 16) 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/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.cpp259 Rect* tail; member in class:android::Region::rasterizer
264 : bounds(INT_MAX, 0, INT_MIN, 0), storage(reg.mStorage), head(), tail(), cur() {
306 if (tail-head == ssize_t(span.size())) {
311 while (q != tail) {
323 while (r != tail) {
331 tail = storage.editArray() + storage.size();
332 head = tail - span.size();
342 const_iterator const tail = reg.end(); local
345 while (cur != tail) {
474 Region::const_iterator const tail member in class:android::Region
659 const_iterator const tail = end(); local
679 const_iterator const tail = end(); local
[all...]
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.c132 int tail = strlen(anr_traces_path)-1; local
133 while (tail > 0 && anr_traces_path[tail] != '/') {
134 tail--;
138 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/base/voip/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/core/java/android/webkit/
H A DWebViewInputDispatcher.java966 private boolean batchEventLocked(DispatchEvent in, DispatchEvent tail) { argument
970 if (tail != null && tail.mEvent != null && in.mEvent != null
971 && in.mEventType == tail.mEventType
972 && in.mFlags == tail.mFlags
973 && in.mWebKitXOffset == tail.mWebKitXOffset
974 && in.mWebKitYOffset == tail.mWebKitYOffset
975 && in.mWebKitScale == tail.mWebKitScale) {
976 return tail.mEvent.addBatch(in.mEvent);
/frameworks/base/services/input/
H A DInputDispatcher.h606 T* tail; member in struct:android::InputDispatcher::Queue
608 inline Queue() : head(NULL), tail(NULL) {
616 entry->prev = tail;
617 if (tail) {
618 tail->next = entry;
623 tail = entry;
631 tail = entry;
646 tail = entry->prev;
656 tail = NULL;
/frameworks/av/services/audioflinger/
H A DFastMixer.cpp696 // the mean account for 99.73% of the population. So if we take each tail to be 1/1000 of the
699 uint32_t *tail = n >= kTailDenominator ? new uint32_t[n] : NULL;
704 if (tail != NULL) {
705 tail[j] = wallNs;
740 if (tail != NULL) {
741 qsort(tail, n, sizeof(uint32_t), compare_uint32_t);
742 // assume same number of tail samples on each side, left and right
746 left.sample(tail[i]);
747 right.sample(tail[n - (i + 1)]);
750 " left tail
[all...]
/frameworks/base/services/java/com/android/server/
H A DDropBoxManagerService.java649 SortedSet<EntryFile> tail = mAllFiles.contents.tailSet(new EntryFile(t + 10000));
651 if (!tail.isEmpty()) {
652 future = tail.toArray(new EntryFile[tail.size()]);
653 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/base/cmds/bootanimation/
H A DBootAnimation.cpp527 Region::const_iterator tail(clearReg.end());
529 while (head != tail) {
/frameworks/native/libs/gui/
H A DSurfaceTextureClient.cpp696 Region::const_iterator tail(reg.end());
697 if (head != tail && src_bits && dst_bits) {
702 while (head != tail) {
/frameworks/base/services/java/com/android/server/accessibility/
H A DScreenMagnifier.java670 MotionEventInfo tail = mDelayedEventQueue;
671 while (tail.mNext != null) {
672 tail = tail.mNext;
674 tail.mNext = info;

Completed in 295 milliseconds