Searched defs:last (Results 1 - 25 of 37) sorted by relevance

12

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DarmVCM4P2_FillVLDBuffer.c49 * [in] last status of the last flag
66 OMX_U8 last,
87 /* If last is 1, fill the remaining elments of the buffer with zeros */
88 if (last == 1)
61 armVCM4P2_FillVLDBuffer( OMX_U32 storeRun, OMX_S16 * pDst, OMX_S16 storeLevel, OMX_U8 sign, OMX_U8 last, OMX_U8 * pIndex, const OMX_U8 * pZigzagTable ) argument
H A DarmVCM4P2_DecodeVLCZigzag_intra.c95 OMX_U8 last = 0; local
135 &last,
151 if (last == 0)
H A DomxVCM4P2_DecodeVLCZigzag_Inter.c94 OMX_U8 last,start = 0; local
111 &last,
127 if (last == 0)
H A DarmVCM4P2_FillVLCBuffer.c59 * [in] last status of the last flag
62 * (considering last and inter/intra status)
86 OMX_U8 last,
118 armPackBits(ppBitStream, pBitOffset, (OMX_U32)last, 1);
157 armPackBits(ppBitStream, pBitOffset, (OMX_U32)last, 1);
78 armVCM4P2_FillVLCBuffer( OMX_U8 **ppBitStream, OMX_INT * pBitOffset, OMX_U32 run, OMX_S16 level, OMX_U32 runPlus, OMX_S16 levelPlus, OMX_U8 fMode, OMX_U8 last, OMX_U8 maxRunForMultipleEntries, const OMX_U8 *pRunIndexTable, const ARM_VLC32 *pVlcTable ) argument
H A DarmVCM4P2_PutVLCBits.c60 * [in] maxStoreRunL0 Max store possible (considering last and inter/intra)
61 * for last = 0
62 * [in] maxStoreRunL1 Max store possible (considering last and inter/intra)
63 * for last = 1
67 * (considering last and inter/intra status) for last = 0
71 * (considering last and inter/intra status) for last = 1
73 * armVCM4P2_Huff_Tables_VLC.c for last == 0
74 * [in] pVlcTableL0 VLC table for last
123 OMX_U8 last = 0, first = 1, fMode; local
[all...]
/frameworks/base/tools/aapt2/link/
H A DPrivateAttributeMover.cpp28 const auto last = inputContainer.end(); local
30 if (newEnd == last) {
39 for (; first != last; ++first) {
52 inputContainer.erase(newEnd, last);
/frameworks/av/media/libeffects/loudness/common/core/
H A Dbyte_swapper.h44 char *first = &new_val, *last = first + kValSize - 1, x; local
45 for (; first < last; ++first, --last) {
46 x = *last;
47 *last = *first;
/frameworks/base/tests/CoreTests/android/core/
H A DHeapTest.java56 private static <T> int checkRefs(SoftReference<T> refs[], int last) { argument
65 if (numCleared != last) {
/frameworks/av/media/libmedia/
H A DAudioParameter.cpp40 char *last; local
43 char *pair = strtok_r(str, ";", &last);
62 pair = strtok_r(NULL, ";", &last);
/frameworks/base/libs/common_time/
H A Dutils.cpp88 Entry* last = NULL; local
91 last = &(mRingBuffer[(mWr + mSize - 1) % mSize]);
94 if ((NULL != last) && !last->s.compare(s)) {
95 gettimeofday(&(last->last_ts), NULL);
96 ++last->count;
142 " (repeated %d times, last was %s.%03ld)",
/frameworks/rs/api/
H A DScanner.cpp154 size_t last = s->find('\"', first); local
155 if (last == string::npos) {
158 *documentation = s->substr(first, last - first);
H A DGenerateHeaderFiles.cpp154 const size_t last = values.size() - 1; local
155 for (size_t i = 0; i <= last; i++) {
157 if (i != last) {
H A DGenerateTestFiles.cpp31 int last = s.size() - 1; local
32 char lastChar = s[last];
34 s.erase(last);
H A DSpecification.cpp123 * We know that's it's a vector type if the last character is a digit and
127 const int last = type.size() - 1; local
128 const char lastChar = type[last];
130 const string trimmed = type.substr(0, last);
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dvlc_dequant.cpp69 int last, return_status; local
117 last = 1;/* 11/1/2000 let it slips undetected, just like
125 last = run_level.last;
131 last = 1;
162 while (!last);
395 int last, return_status; local
422 last = 1;/* 11/1/2000 let it slips undetected, just like
430 last = run_level.last;
520 int last, return_status; local
822 int last, return_status; local
1078 int last, return_status; local
[all...]
/frameworks/base/tools/aapt2/
H A DResourceTable.cpp43 const auto last = packages.end(); local
44 auto iter = std::lower_bound(packages.begin(), last, name,
46 if (iter != last && name == (*iter)->name) {
75 const auto last = packages.end(); local
76 auto iter = std::lower_bound(packages.begin(), last, name,
78 if (iter != last && name == (*iter)->name) {
88 const auto last = types.end(); local
89 auto iter = std::lower_bound(types.begin(), last, type, lessThanType);
90 if (iter != last && (*iter)->type == type) {
97 const auto last local
106 const auto last = entries.end(); local
116 auto last = entries.end(); local
[all...]
/frameworks/rs/
H A DrsList.h30 List() : last(nullptr), first(&firstBuffer.data.typed),
38 List(InputIterator first, InputIterator last) : List() { argument
39 for (InputIterator it = first; it != last; ++it) {
55 last = current;
113 T& back() const { return *last; }
119 T* last; member in class:android::renderscript::List
/frameworks/av/media/img_utils/src/
H A DTiffIfd.cpp134 size_t last = out->getCurrentOffset(); local
140 size_t diff = (next - last);
H A DTiffWriter.cpp228 sp<TiffIfd> last = findLastIfd(); local
229 last->setNextIfd(newIfd);
/frameworks/av/media/libstagefright/webm/
H A DWebmFrameThread.cpp131 // last:
133 void WebmFrameSinkThread::flushFrames(List<const sp<WebmFrame> >& frames, bool last) { argument
145 if (!last) {
146 // If we are not flushing the last sequence of outstanding frames, flushFrames
148 // frame (the last frame), which belongs to the next cluster; also hold back on
149 // flushing the second to last frame before we check its type. A audio frame
151 // frame should be the last frame in the current (to-be-flushed) sequence.
171 // equivalent to last==false
173 // decide whether to write out the second to last frame.
227 flushFrames(outstandingFrames, /* last
[all...]
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
H A DRecurrenceProcessorTest.java72 String last) throws Exception {
155 if (last != null && last.length() > 0) {
157 expectedLast.parse(last);
163 Log.i(TAG, "Expected: " + last + "; Actual: " + lastStr);
167 throw new RuntimeException("expected last occurrence date does not match."
168 + " expected=" + last
2107 // Monthly on the last Monday
2403 "20100526T153000" /* last */);
2417 null /* last */);
70 verifyRecurrence(String dtstartStr, String rrule, String rdate, String exrule, String exdate, String rangeStartStr, String rangeEndStr, String[] expected, String last) argument
[all...]
/frameworks/av/media/libstagefright/wifi-display/rtp/
H A DRTPSender.cpp425 bool last = packets.empty(); local
432 if (last) {
/frameworks/minikin/libs/minikin/
H A DFontCollection.cpp180 // then the last 1 bit is for variant score.
292 auto last = std::unique(familyVecForVS.begin(), familyVecForVS.end()); local
293 familyVecForVS.erase(last, familyVecForVS.end());
/frameworks/native/libs/gui/
H A DBufferQueueProducer.cpp861 // When the queue is not empty, we need to look at the last buffer
863 const BufferItem& last = mCore->mQueue.itemAt( local
865 if (last.mIsDroppable) {
867 if (!last.mIsStale) {
868 mSlots[last.mSlot].mBufferState.freeQueued();
874 mSlots[last.mSlot].mBufferState.isFree()) {
875 mSlots[last.mSlot].mBufferState.mShared = false;
878 if (!mSlots[last.mSlot].mBufferState.isShared()) {
879 mCore->mActiveBuffers.erase(last.mSlot);
880 mCore->mFreeBuffers.push_back(last
[all...]
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMLDBackend.cpp717 // Move the first fragment (align fragment) and last fragment (null fragment)
722 SectionData::iterator last = sectData->end(); local
723 --last;
726 assert(last->getKind() == Fragment::Null);
729 tmp.splice(tmp.end(), list, last);
787 // Add the first and the last fragment back.

Completed in 650 milliseconds

12