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

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DarmVCM4P2_FillVLDBuffer.c34 * [in] last status of the last flag
51 OMX_U8 last,
72 /* If last is 1, fill the remaining elments of the buffer with zeros */
73 if (last == 1)
46 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.c80 OMX_U8 last = 0; local
120 &last,
136 if (last == 0)
H A DomxVCM4P2_DecodeVLCZigzag_Inter.c79 OMX_U8 last,start = 0; local
96 &last,
112 if (last == 0)
H A DarmVCM4P2_FillVLCBuffer.c44 * [in] last status of the last flag
47 * (considering last and inter/intra status)
71 OMX_U8 last,
103 armPackBits(ppBitStream, pBitOffset, (OMX_U32)last, 1);
142 armPackBits(ppBitStream, pBitOffset, (OMX_U32)last, 1);
63 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.c45 * [in] maxStoreRunL0 Max store possible (considering last and inter/intra)
46 * for last = 0
47 * [in] maxStoreRunL1 Max store possible (considering last and inter/intra)
48 * for last = 1
52 * (considering last and inter/intra status) for last = 0
56 * (considering last and inter/intra status) for last = 1
58 * armVCM4P2_Huff_Tables_VLC.c for last == 0
59 * [in] pVlcTableL0 VLC table for last
108 OMX_U8 last = 0, first = 1, fMode; local
[all...]
/frameworks/compile/mclinker/lib/MC/
H A DAttributeFactory.cpp62 AttributeProxy& AttributeFactory::last() function in class:AttributeFactory
67 const AttributeProxy& AttributeFactory::last() const function in class:AttributeFactory
/frameworks/ex/variablespeed/jni/
H A Dmacros.h31 ForwardIterator min_element(ForwardIterator first, ForwardIterator last) { argument
33 if (first == last) return last;
34 while (++first != last)
/frameworks/av/media/libmedia/
H A Dautodetect.cpp21 uint16_t last; member in struct:CharRange
857 if (ch >= range->first && ch <= range->last)
859 if (ch > range->last)
/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/base/services/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/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...]
H A Dmp4lib_int.h66 uint timeInc; /* VOP time increment (relative to last mtb) */
160 uint last; member in struct:tagTcoef
184 uint8 last; member in struct:tagVLCtab2
/frameworks/native/include/utils/
H A DList.h189 * Return the first element or one past the last element. The
222 void insert(iterator posn, const_iterator first, const_iterator last) { argument
223 for ( ; first != last; ++first)
238 iterator erase(iterator first, iterator last) { argument
239 while (first != last)
241 return iterator(last);
260 * will be equal to "last". The iterators must refer to the same
274 _ListIterator<U, CL> first, _ListIterator<U, CR> last) const
277 while (first != last) {
/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/base/core/java/android/text/
H A DHtml.java257 boolean last) {
368 String p = last ? "" : "</p>\n" + getOpenParaTagWithDirection(text, start, end);
450 // If the last line of the range is blank, back off by one.
591 * This knows that the last returned object from getSpans()
255 withinParagraph(StringBuilder out, Spanned text, int start, int end, int nl, boolean last) argument
H A DTextUtils.java135 public static int lastIndexOf(CharSequence s, char ch, int last) { argument
139 return ((String) s).lastIndexOf(ch, last);
141 return lastIndexOf(s, ch, 0, last);
145 int start, int last) {
146 if (last < 0)
148 if (last >= s.length())
149 last = s.length() - 1;
151 int end = last + 1;
891 // happens when ^ is the last character in the string.
144 lastIndexOf(CharSequence s, char ch, int start, int last) argument
/frameworks/base/libs/hwui/
H A DPathRenderer.cpp123 const Vertex* last = &(perimeter[perimeter.size() - 1]); local
125 vec2 lastNormal(current->position[1] - last->position[1],
126 last->position[0] - current->position[0]);
145 last = current;
211 const Vertex* last = &(perimeter[perimeter.size() - 1]); local
213 vec2 lastNormal(current->position[1] - last->position[1],
214 last->position[0] - current->position[0]);
237 last = current;
286 const Vertex* last = &(vertices[0]); local
288 vec2 lastNormal(current->position[1] - last
440 const Vertex* last = &(perimeter[perimeter.size() - 1]); local
[all...]
/frameworks/support/renderscript/v8/rs_support/
H A DrsContext.cpp121 uint64_t last = mTimeLast; local
123 mTimers[mTimerActive] += mTimeLast - last;
/frameworks/rs/
H A DrsContext.cpp140 uint64_t last = mTimeLast; local
142 mTimers[mTimerActive] += mTimeLast - last;
/frameworks/base/core/java/android/os/
H A DBatteryStats.java99 * Include only the last run in the stats.
109 * Include only the run since the last time the device was unplugged in the stats.
114 // These characters are supposed to represent "total", "last", "current",
529 public void writeDelta(Parcel dest, HistoryItem last) { argument
530 if (last == null || last.cmd != CMD_UPDATE) {
536 final long deltaTime = time - last.time;
537 final int lastBatteryLevelInt = last.buildBatteryLevelInt();
538 final int lastStateInt = last.buildStateInt();
947 * Returns the battery percentage level at the last tim
[all...]
/frameworks/base/tools/aapt/
H A DResource.cpp2160 const char* last = pkg.string(); local
2161 const char* s = last-1;
2164 if (s > last && (*s == '.' || *s == 0)) {
2165 String8 part(last, s-last);
2172 last = s+1;
/frameworks/native/opengl/libagl/
H A Degl.cpp422 // enqueue the last frame
1113 static int binarySearch(T const sortedArray[], int first, int last, EGLint key) argument
1115 while (first <= last) {
1116 int mid = (first + last) / 2;
1120 last = mid - 1;
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp87 uint16_t* last = dst + avail - 1; local
88 while (*src && (dst < last)) {
439 ALOGW("Bad string block: last string is not 0-terminated\n");
489 ALOGW("Bad string block: last style is not 0xFFFFFFFF-terminated\n");
4898 // Check if this one is less specific than the last found. If so,
4902 TABLE_GETENTRY(ALOGI("This config is worse than last!\n"));
5203 ssize_t last = -1; local
5232 last = Res_GETENTRY(resID);
5250 const size_t last_past_one = last + 1;

Completed in 1353 milliseconds