Searched refs:front (Results 1 - 25 of 35) sorted by relevance

12

/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMGOT.cpp58 m_pLast = llvm::cast<ARMGOTEntry>(&m_SectionData->front());
69 if (NULL == m_GOTPLT.front) {
71 if (NULL == m_GOT.front) {
74 m_GOTPLT.front = entry;
78 m_GOTPLT.front = m_GOT.front;
79 m_GOT.front = llvm::cast<ARMGOTEntry>(m_GOT.front->getNextNode());
84 if (NULL != m_GOT.front)
85 m_GOT.front
[all...]
H A DARMGOT.h39 * Traditional .got.plt is placed in the front part of GOT (PLTGOT), and
82 Part() : front(NULL), last_used(NULL) { }
85 ARMGOTEntry* front; member in struct:mcld::ARMGOT::Part
/frameworks/av/media/libnbaio/
H A DPipeReader.cpp73 size_t front = mFront & (mPipe.mMaxFrames - 1); local
74 size_t red = mPipe.mMaxFrames - front;
79 memcpy(buffer, (char *) mPipe.mBuffer + (front << mBitShift), red << mBitShift);
81 if (CC_UNLIKELY(front + red == mPipe.mMaxFrames)) {
82 if (CC_UNLIKELY((count -= red) > front)) {
83 count = front;
H A DMonoPipeReader.cpp70 size_t front = mPipe->mFront & (mPipe->mMaxFrames - 1); local
71 size_t part1 = mPipe->mMaxFrames - front;
76 memcpy(buffer, (char *) mPipe->mBuffer + (front << mBitShift), part1 << mBitShift);
77 if (CC_UNLIKELY(front + part1 == mPipe->mMaxFrames)) {
H A DMonoPipe.cpp210 int32_t front; local
217 observeFrontAndNRPTS(&front, timestamp);
226 size_t pendingFrames = (mRear - front) & (mMaxFrames - 1);
H A DNBLog.cpp299 size_t front = mFront & (mSize - 1); local
300 size_t read = mSize - front; // read = number of bytes that have been read so far
307 memcpy(copy, &mShared->mBuffer[front], read);
308 if (front + read == mSize) {
/frameworks/compile/mclinker/include/mcld/LD/
H A DRelocData.h77 reference front () { return m_Relocations.front(); } function in class:mcld::RelocData
78 const_reference front () const { return m_Relocations.front(); } function in class:mcld::RelocData
H A DSectionData.h70 reference front () { return m_Fragments.front(); } function in class:mcld::SectionData
71 const_reference front () const { return m_Fragments.front(); } function in class:mcld::SectionData
H A DELFSegment.h49 LDSection* front() { return m_SectionList.front(); } function in class:mcld::ELFSegment
50 const LDSection* front() const { return m_SectionList.front(); } function in class:mcld::ELFSegment
H A DEhFrame.h127 const CIE& cie_front() const { return *m_CIEs.front(); }
128 CIE& cie_front() { return *m_CIEs.front(); }
140 const FDE& fde_front() const { return *m_FDEs.front(); }
141 FDE& fde_front() { return *m_FDEs.front(); }
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonGOT.cpp41 m_pLast = llvm::cast<HexagonGOTEntry>(&m_SectionData->front());
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86GOT.cpp41 m_pLast = llvm::cast<X86_32GOTEntry>(&m_SectionData->front());
72 m_pLast = llvm::cast<X86_64GOTEntry>(&m_SectionData->front());
/frameworks/ex/variablespeed/jni/
H A Ddecode_buffer.cc51 delete[] data_.front();
66 data_.push_back(data_.front());
/frameworks/native/libs/gui/
H A DBufferQueue.cpp576 // when the queue is not empty, we need to look at the front buffer
578 Fifo::iterator front(mQueue.begin());
579 if (front->mIsDroppable) {
581 if (stillTracking(front)) {
582 mSlots[front->mBuf].mBufferState = BufferSlot::FREE;
585 mSlots[front->mBuf].mFrameNumber = 0;
588 *front = item;
890 Fifo::iterator front(mQueue.begin());
928 // (Vector front is [0], back is [size()-1])
943 if (stillTracking(front)) {
[all...]
/frameworks/native/services/surfaceflinger/
H A DLayer.cpp961 Layer::State& front; member in struct:android::Reject
964 Reject(Layer::State& front, Layer::State& current, argument
966 : front(front), current(current),
986 if (front.active != front.requested) {
989 (bufWidth == front.requested.w &&
990 bufHeight == front.requested.h))
995 front.active = front
[all...]
/frameworks/av/media/libmedia/
H A DAudioTrackShared.cpp117 int32_t front; local
127 front = android_atomic_acquire_load(&cblk->u.mStreaming.mFront);
132 front = cblk->u.mStreaming.mFront;
134 ssize_t filled = rear - front;
151 front &= mFrameCountP2 - 1;
152 part1 = mFrameCountP2 - front;
162 &((char *) mBuffers)[(mIsOut ? rear : front) * mFrameSize] : NULL;
288 int32_t front = cblk->u.mStreaming.mFront; local
289 android_atomic_release_store(stepCount + front, &cblk->u.mStreaming.mFront);
321 int32_t front; local
519 int32_t front; local
612 int32_t front = cblk->u.mStreaming.mFront; local
[all...]
/frameworks/native/opengl/libagl/
H A Dlight.cpp77 c->lighting.front.ambient.r =
78 c->lighting.front.ambient.g =
79 c->lighting.front.ambient.b = gglFloatToFixed(0.2f);
80 c->lighting.front.ambient.a = 0x10000;
81 c->lighting.front.diffuse.r =
82 c->lighting.front.diffuse.g =
83 c->lighting.front.diffuse.b = gglFloatToFixed(0.8f);
84 c->lighting.front.diffuse.a = 0x10000;
85 c->lighting.front.specular.a = 0x10000;
86 c->lighting.front
[all...]
/frameworks/compile/mclinker/include/mcld/
H A DModule.h124 LDSection* front() { return m_SectionTable.front(); } function in class:mcld::Module
125 const LDSection* front() const { return m_SectionTable.front(); } function in class:mcld::Module
/frameworks/native/include/ui/
H A DFramebufferNativeWindow.h82 sp<NativeBuffer> front; member in class:android::FramebufferNativeWindow
/frameworks/wilhelm/src/itf/
H A DI3DLocation.c171 SLVec3D front = *pFront; local
176 thiz->mOrientationVectors.mFront = front;
251 SLVec3D front = thiz->mOrientationVectors.mFront; local
254 *pFront = front;
H A DI3DMacroscopic.c104 SLVec3D front = *pFront; local
108 thiz->mOrientationVectors.mFront = front;
164 SLVec3D front = thiz->mOrientationVectors.mFront; local
167 *pFront = front;
/frameworks/compile/mclinker/lib/LD/
H A DSectionSymbolSet.cpp89 frag_ref = FragmentRef::Create(data->front(), 0x0);
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp233 section->getSectionData()->front(), 0x0);
246 section->getSectionData()->front(), section->size());
266 file_format->getPreInitArray().getSectionData()->front(),
297 file_format->getInitArray().getSectionData()->front(),
329 file_format->getFiniArray().getSectionData()->front(),
361 file_format->getStack().getSectionData()->front(),
1848 segment.setOffset(segment.front()->offset());
1850 LDFileFormat::Null == segment.front()->kind())
1853 segment.setVaddr(segment.front()->addr());
1935 // in front o
[all...]
/frameworks/compile/mclinker/lib/Fragment/
H A DFragmentRef.cpp95 return Create(data->front(), pOffset);
/frameworks/native/libs/ui/
H A DFramebufferNativeWindow.cpp70 * Currently it is pretty simple, it manages only two buffers (the front and
246 // wait for a free non-front buffer
250 ALOG_ASSERT(self->buffers[index] != self->front);
287 self->front = static_cast<NativeBuffer*>(buffer);

Completed in 368 milliseconds

12