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/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/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/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/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.cpp427 bool last = packets.empty(); local
434 if (last) {
/frameworks/base/core/java/android/text/
H A DHtml.java258 boolean last) {
369 String p = last ? "" : "</p>\n" + getOpenParaTagWithDirection(text, start, end);
460 // If the last line of the range is blank, back off by one.
601 * This knows that the last returned object from getSpans()
256 withinParagraph(StringBuilder out, Spanned text, int start, int end, int nl, boolean last) argument
H A DTextUtils.java140 public static int lastIndexOf(CharSequence s, char ch, int last) { argument
144 return ((String) s).lastIndexOf(ch, last);
146 return lastIndexOf(s, ch, 0, last);
150 int start, int last) {
151 if (last < 0)
153 if (last >= s.length())
154 last = s.length() - 1;
156 int end = last + 1;
907 // happens when ^ is the last character in the string.
149 lastIndexOf(CharSequence s, char ch, int start, int last) argument
/frameworks/rs/
H A DrsContext.cpp167 uint64_t last = mTimeLast; local
169 mTimers[mTimerActive] += mTimeLast - last;
/frameworks/base/libs/hwui/
H A DPathTessellator.cpp193 const Vertex* last = &(perimeter[perimeter.size() - 1]); local
195 vec2 lastNormal(current->position[1] - last->position[1],
196 last->position[0] - current->position[0]);
215 last = current;
291 const Vertex* last = &(vertices[0]); local
293 vec2 lastNormal(current->position[1] - last->position[1],
294 last->position[0] - current->position[0]);
338 const Vertex* last = &(perimeter[perimeter.size() - 1]); local
340 vec2 lastNormal(current->position[1] - last->position[1],
341 last
577 const Vertex* last = &(vertices[0]); local
647 const Vertex* last = &(perimeter[perimeter.size() - 1]); local
[all...]
/frameworks/base/core/java/android/os/
H A DBatteryStats.java119 * Include only the last run in the stats.
129 * Include only the run since the last time the device was unplugged in the stats.
134 // These characters are supposed to represent "total", "last", "current",
559 public void writeDelta(Parcel dest, HistoryItem last) { argument
560 if (last == null || last.cmd != CMD_UPDATE) {
566 final long deltaTime = time - last.time;
567 final int lastBatteryLevelInt = last.buildBatteryLevelInt();
568 final int lastStateInt = last.buildStateInt();
987 * Returns the battery percentage level at the last tim
[all...]
/frameworks/base/tools/aapt/
H A DResource.cpp2182 const char* last = pkg.string(); local
2183 const char* s = last-1;
2186 if (s > last && (*s == '.' || *s == 0)) {
2187 String8 part(last, s-last);
2194 last = s+1;
/frameworks/native/opengl/libagl/
H A Degl.cpp1113 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/av/services/audioflinger/
H A DThreads.cpp927 // remove effect chain if removing last effect
985 // delete the effect module if removing last handle on it
1133 snprintf(buffer, SIZE, "last write occurred (msecs): %llu\n",
2050 // chains list in order to be processed last as it contains output stage effects
2995 // because we're about to decrement the last sp<> on those tracks.
3018 // during last round
3609 // Only consider last track started for volume and mixer state control.
3614 bool last = l.get() == track; local
3640 processVolume_l(track, last);
3641 if (last) {
3984 bool last = l.get() == track; local
[all...]
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp86 uint16_t* last = dst + avail - 1; local
87 while (*src && (dst < last)) {
437 ALOGW("Bad string block: last string is not 0-terminated\n");
487 ALOGW("Bad string block: last style is not 0xFFFFFFFF-terminated\n");
5054 // Check if this one is less specific than the last found. If so,
5058 TABLE_GETENTRY(ALOGI("This config is worse than last!\n"));
5359 ssize_t last = -1; local
5388 last = Res_GETENTRY(resID);
5406 const size_t last_past_one = last + 1;

Completed in 1234 milliseconds