Searched defs:tail (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/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/cmds/dumpstate/
H A Ddumpstate.c113 int tail = strlen(anr_traces_path)-1; local
114 while (tail > 0 && anr_traces_path[tail] != '/') {
115 tail--;
119 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/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/include/private/ui/
H A DRegionHelper.h111 inline int next(TYPE& head, TYPE& tail, argument
121 tail = lhs_tail;
125 tail = rhs_head;
131 tail = rhs_tail;
135 tail = lhs_head;
141 tail = rhs_head = lhs_tail;
145 tail = lhs_head = rhs_tail;
/frameworks/base/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/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/services/input/
H A DInputDispatcher.h628 T* tail; member in struct:android::InputDispatcher::Queue
630 inline Queue() : head(NULL), tail(NULL) {
638 entry->prev = tail;
639 if (tail) {
640 tail->next = entry;
645 tail = entry;
653 tail = entry;
668 tail = entry->prev;
678 tail = NULL;

Completed in 292 milliseconds