Searched defs:head (Results 1 - 18 of 18) sorted by relevance

/frameworks/base/libs/hwui/
H A DExtensions.cpp109 const char* head = current; local
112 head = strchr(current, ' ');
113 String8 s(current, head ? head - current : strlen(current));
118 current = head + 1;
119 } while (head);
H A DAnimationContext.cpp60 AnimationHandle* head = mNextFrameAnimations.mNextHandle; local
61 if (head) {
63 mCurrentFrameAnimations.mNextHandle = head;
64 head->mPreviousHandle = &mCurrentFrameAnimations;
/frameworks/compile/mclinker/unittests/
H A DGraphTest.cpp58 ListDigraph::Node* head = NULL; local
59 graph.getHead(head);
60 ASSERT_TRUE(head == u3);
79 graph.getHead(head);
80 ASSERT_TRUE(head == u3);
105 ListDigraph::Node* head = NULL; local
106 graph.getHead(head);
107 ASSERT_TRUE(head == u3);
126 graph.getHead(head);
127 ASSERT_TRUE(head
152 ListDigraph::Node* head = NULL; local
[all...]
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DGLExtensions.cpp45 char const* head = curr; local
47 head = strchr(curr, ' ');
48 String8 s(curr, head ? head-curr : strlen(curr));
52 curr = head+1;
53 } while (head);
/frameworks/base/obex/javax/obex/
H A DClientSession.java108 byte[] head = null;
116 head = ObexHelper.createHeader(header, false);
117 totalLength += head.length;
136 if (head != null) {
137 System.arraycopy(head, 0, requestPacket, 4, head.length);
175 HeaderSet head;
177 head = new HeaderSet();
179 head = header;
180 if (head
459 sendRequest(int opCode, byte[] head, HeaderSet header, PrivateInputStream privateInput, boolean srmActive) argument
[all...]
H A DObexHelper.java353 * @param head the header used to construct the byte array
359 public static byte[] createHeader(HeaderSet head, boolean nullOut) { argument
371 headImpl = head;
/frameworks/base/libs/hwui/font/
H A DCacheTexture.cpp38 CacheBlock* CacheBlock::insertBlock(CacheBlock* head, CacheBlock* newBlock) { argument
45 CacheBlock* currBlock = head;
56 return head;
76 return head;
82 CacheBlock* CacheBlock::removeBlock(CacheBlock* head, CacheBlock* blockToRemove) { argument
89 CacheBlock* newHead = head;
/frameworks/native/include/private/ui/
H A DRegionHelper.h116 inline int next(TYPE& head, TYPE& tail, argument
124 head = lhs_head;
134 head = rhs_head;
144 head = lhs_head;
/frameworks/av/media/libstagefright/webm/
H A DWebmElement.cpp89 int head = serializeCodedUnsigned(mId, cur); local
90 cur += head;
/frameworks/native/libs/binder/
H A DMemoryDealer.cpp57 NODE const* head() const { return mFirst; } function in class:android::LinkedList
58 NODE* head() { return mFirst; } function in class:android::LinkedList
284 delete mList.remove(mList.head());
317 chunk_t* cur = mList.head();
370 chunk_t* cur = mList.head();
433 chunk_t const* cur = mList.head();
/frameworks/av/services/audioflinger/
H A DAudioResamplerDyn.cpp123 // copy in the input data into the head (impulse+halfNumCoefs) of the buffer.
129 TI* head = impulse + halfNumCoefs*CHANNELS; local
131 head[i] = in[inputIndex*CHANNELS + i];
135 // advance the impulse pointer, and load in data into the head (impulse+halfNumCoefs)
H A DAudioResamplerSinc.cpp216 * ^ ^ head
329 int16_t* head = impulse + headOffset; local
331 head[i] = in[inputIndex*CHANNELS + i];
386 int16_t* head = impulse + c.halfNumCoefs*CHANNELS; local
388 head[i] = in[inputIndex*CHANNELS + i];
H A DTracks.cpp1387 TimedBuffer& head = mTimedBufferQueue.editItemAt(0); local
1389 // calculate the PTS of the head of the timed buffer queue expressed in
1404 if (!mMediaTimeTransform.doForwardTransform(head.pts(),
1429 // adjust the head buffer's PTS to reflect the portion of the head buffer
1432 ((head.position() / mFrameSize) * mLocalTimeFreq / sr);
1434 // Calculate the delta in samples between the head of the input buffer
1441 ALOGV("*** head buffer is too far from PTS: dropped buffer");
1453 ALOGVV("*** getNextBuffer head.pts=%lld head
1526 const TimedBuffer& head = mTimedBufferQueue[0]; local
1584 TimedBuffer& head = mTimedBufferQueue.editItemAt(0); local
[all...]
/frameworks/native/libs/ui/
H A DRegion.cpp422 Rect* head; 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())) {
484 Rect const* q = head;
498 Rect* r = head;
508 head = tail - span.size();
650 Region::const_iterator head = dst.begin(); local
654 if (head != tail) {
656 head->left != it.rect().fLeft ||
657 head
854 const_iterator head = begin(); local
868 const_iterator head = begin(); local
[all...]
/frameworks/native/libs/input/
H A DInputTransport.cpp867 const InputMessage& head = batch.samples.itemAt(0); local
868 if (head.body.motion.deviceId == deviceId && head.body.motion.source == source) {
940 const InputMessage& head = batch.samples.itemAt(0); local
942 if (head.body.motion.pointerCount != pointerCount
943 || head.body.motion.action != msg->body.motion.action) {
947 if (head.body.motion.pointers[i].properties
/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
242 if (head - mBufferHead < 0) {
243 head = mBufferHead;
248 if (tail - head <= 0) {
252 head *= mSampleRate;
256 for (int i = head; i - tail < 0; ++i) {
257 output[i - head] += mBuffer[i & mBufferMask];
/frameworks/native/services/inputflinger/
H A DInputDispatcher.h608 T* head; member in struct:android::InputDispatcher::Queue
612 inline Queue() : head(NULL), tail(NULL), entryCount(0) {
616 return !head;
625 head = entry;
633 entry->next = head;
634 if (head) {
635 head->prev = entry;
640 head = entry;
648 head = entry->next;
659 T* entry = head;
[all...]
/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 1615 milliseconds