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

/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/media/mtp/
H A DMtpUtils.cpp44 const char* tail = dateTime + 15; local
46 if (tail[0] == '.' && tail[1])
47 tail += 2;
49 bool useUTC = (tail[0] == 'Z');
/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/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/cmds/dumpstate/
H A Ddumpstate.c197 int tail = strlen(anr_traces_path)-1; local
198 while (tail > 0 && anr_traces_path[tail] != '/') {
199 tail--;
203 sprintf(anr_traces_path+tail+1, "slow%02d.txt", i);
/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/av/services/audioflinger/
H A DFastMixer.cpp573 // the mean account for 99.73% of the population. So if we take each tail to be 1/1000 of the
576 uint32_t *tail = n >= kTailDenominator ? new uint32_t[n] : NULL; local
581 if (tail != NULL) {
582 tail[j] = wallNs;
623 if (tail != NULL) {
624 qsort(tail, n, sizeof(uint32_t), compare_uint32_t);
625 // assume same number of tail samples on each side, left and right
629 left.sample(tail[i]);
630 right.sample(tail[n - (i + 1)]);
633 " left tail
[all...]
/frameworks/native/libs/ui/
H A DRegion.cpp231 const_iterator const tail = end(); local
232 while (cur != tail) {
412 Rect* tail; member in class:android::Region::rasterizer
417 : bounds(INT_MAX, 0, INT_MIN, 0), storage(reg.mStorage), head(), tail(), cur() {
459 if (tail-head == ssize_t(span.size())) {
464 while (q != tail) {
476 while (r != tail) {
484 tail = storage.editArray() + storage.size();
485 head = tail - span.size();
495 const_iterator const tail local
625 Region::const_iterator const tail = dst.end(); member in class:android::Region
813 const_iterator const tail = end(); local
833 const_iterator const tail = end(); local
[all...]
/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/native/services/inputflinger/
H A DInputDispatcher.h608 T* tail; member in struct:android::InputDispatcher::Queue
610 inline Queue() : head(NULL), tail(NULL) {
618 entry->prev = tail;
619 if (tail) {
620 tail->next = entry;
625 tail = entry;
633 tail = entry;
648 tail = entry->prev;
658 tail = NULL;
H A DInputDispatcher.cpp184 Region::const_iterator const tail = region.end(); member in class:android::Region
185 while (cur != tail) {

Completed in 532 milliseconds