/frameworks/base/libs/common_time/ |
utils.cpp | 88 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/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
NoisyVelocityTracker.java | 71 MotionEventCopy last = null; local 78 if (last != null) { 79 final float dt = (float) (event.t - last.t) / units; 80 final float dx = (event.x - last.x); 81 final float dy = (event.y - last.y); 91 if (event.t == last.t) { 101 last = event;
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ |
onyxc_int.h | 96 FRAME_TYPE last_frame_type; /* Save last frame's frame type for motion search. */ 127 MODE_INFO *prev_mip; /* MODE_INFO array 'mip' from last decoded frame */ 128 MODE_INFO *prev_mi; /* 'mi' from last frame (points into prev_mip) */ 130 MODE_INFO *show_frame_mi; /* MODE_INFO for the last decoded frame 144 int copy_buffer_to_gf; /* 0 none, 1 Last to GF, 2 ARF to GF */ 145 int copy_buffer_to_arf; /* 0 none, 1 Last to ARF, 2 GF to ARF */ 155 FRAME_CONTEXT lfc; /* last frame entropy */
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.min.max/ |
minmax_element_comp.pass.cpp | 15 // minmax_element(Iter first, Iter last, Compare comp); 25 test(Iter first, Iter last) 29 std::pair<Iter, Iter> p = std::minmax_element(first, last, comp); 30 if (first != last) 32 for (Iter j = first; j != last; ++j) 40 assert(p.first == last); 41 assert(p.second == last);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_unpack.py | 56 Traceback (most recent call last): 63 Traceback (most recent call last): 70 Traceback (most recent call last): 77 Traceback (most recent call last): 84 Traceback (most recent call last): 108 Traceback (most recent call last): 116 Traceback (most recent call last):
|
ieee754.txt | 115 Traceback (most recent call last): 119 Traceback (most recent call last): 130 Traceback (most recent call last): 134 Traceback (most recent call last): 140 Traceback (most recent call last): 144 Traceback (most recent call last): 150 Traceback (most recent call last): 154 Traceback (most recent call last): 172 Traceback (most recent call last): 176 Traceback (most recent call last) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_unpack.py | 56 Traceback (most recent call last): 63 Traceback (most recent call last): 70 Traceback (most recent call last): 77 Traceback (most recent call last): 84 Traceback (most recent call last): 108 Traceback (most recent call last): 116 Traceback (most recent call last):
|
ieee754.txt | 115 Traceback (most recent call last): 119 Traceback (most recent call last): 130 Traceback (most recent call last): 134 Traceback (most recent call last): 140 Traceback (most recent call last): 144 Traceback (most recent call last): 150 Traceback (most recent call last): 154 Traceback (most recent call last): 172 Traceback (most recent call last): 176 Traceback (most recent call last) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_unpack.py | 56 Traceback (most recent call last): 63 Traceback (most recent call last): 70 Traceback (most recent call last): 77 Traceback (most recent call last): 84 Traceback (most recent call last): 108 Traceback (most recent call last): 116 Traceback (most recent call last):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_unpack.py | 56 Traceback (most recent call last): 63 Traceback (most recent call last): 70 Traceback (most recent call last): 77 Traceback (most recent call last): 84 Traceback (most recent call last): 108 Traceback (most recent call last): 116 Traceback (most recent call last):
|
/external/icu/icu4c/source/test/intltest/ |
reldatefmttest.cpp | 257 {UDAT_DIRECTION_LAST, UDAT_ABSOLUTE_WEEK, "last week"}, 258 {UDAT_DIRECTION_LAST, UDAT_ABSOLUTE_MONTH, "last month"}, 259 {UDAT_DIRECTION_LAST, UDAT_ABSOLUTE_YEAR, "last year"}, 260 {UDAT_DIRECTION_LAST, UDAT_ABSOLUTE_MONDAY, "last Monday"}, 261 {UDAT_DIRECTION_LAST, UDAT_ABSOLUTE_TUESDAY, "last Tuesday"}, 262 {UDAT_DIRECTION_LAST, UDAT_ABSOLUTE_WEDNESDAY, "last Wednesday"}, 263 {UDAT_DIRECTION_LAST, UDAT_ABSOLUTE_THURSDAY, "last Thursday"}, 264 {UDAT_DIRECTION_LAST, UDAT_ABSOLUTE_FRIDAY, "last Friday"}, 265 {UDAT_DIRECTION_LAST, UDAT_ABSOLUTE_SATURDAY, "last Saturday"}, 266 {UDAT_DIRECTION_LAST, UDAT_ABSOLUTE_SUNDAY, "last Sunday"} [all...] |
/external/pdfium/third_party/freetype/src/base/ |
ftoutln.c | 89 FT_Int last; /* index of last point in contour */ local 94 last = outline->contours[n]; 95 if ( last < 0 ) 97 limit = outline->points + last; 103 v_last = outline->points[last]; 121 if ( FT_CURVE_TAG( outline->tags[last] ) == FT_CURVE_TAG_ON ) 123 /* start at last point if it is on the curve */ 129 /* if both first and last points are conic, */ 283 first = (FT_UInt)last + 1 553 FT_Int first, last; local 911 FT_Int c, first, last; local 1074 FT_Int last = outline->contours[c]; local [all...] |
/external/libcxx/test/support/ |
nasty_containers.hpp | 38 template <class InputIterator> nasty_vector(InputIterator first, InputIterator last) : v_(first, last) {} 45 void assign(InputIterator first, InputIterator last) { v_.assign(first, last); } 109 iterator insert(const_iterator pos, InputIterator first, InputIterator last) 110 { return v_.insert(pos, first, last); } 117 iterator erase(const_iterator first, const_iterator last) { return v_.erase(first, last); } 160 nasty_list(Iter first, Iter last) : l_(first, last) {} [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/ |
nasty_containers.hpp | 38 template <class InputIterator> nasty_vector(InputIterator first, InputIterator last) : v_(first, last) {} 45 void assign(InputIterator first, InputIterator last) { v_.assign(first, last); } 109 iterator insert(const_iterator pos, InputIterator first, InputIterator last) 110 { return v_.insert(pos, first, last); } 117 iterator erase(const_iterator first, const_iterator last) { return v_.erase(first, last); } 160 nasty_list(Iter first, Iter last) : l_(first, last) {} [all...] |
/art/runtime/ |
monitor_pool.cc | 71 Monitor* last = reinterpret_cast<Monitor*>(reinterpret_cast<uintptr_t>(chunk) + local 73 last->next_free_ = nullptr; 75 last->monitor_id_ = OffsetToMonitorId(current_chunk_list_index_* (kMaxListSize * kChunkSize) 78 Monitor* before = reinterpret_cast<Monitor*>(reinterpret_cast<uintptr_t>(last) - 80 before->next_free_ = last; 81 // Derive monitor_id from last. 82 before->monitor_id_ = OffsetToMonitorId(MonitorIdToOffset(last->monitor_id_) - 85 last = before; 87 DCHECK(last == reinterpret_cast<Monitor*>(chunk)); 88 first_free_ = last; [all...] |
/external/freetype/src/base/ |
ftoutln.c | 88 FT_Int last; /* index of last point in contour */ local 93 last = outline->contours[n]; 94 if ( last < 0 ) 96 limit = outline->points + last; 102 v_last = outline->points[last]; 120 if ( FT_CURVE_TAG( outline->tags[last] ) == FT_CURVE_TAG_ON ) 122 /* start at last point if it is on the curve */ 128 /* if both first and last points are conic, */ 282 first = (FT_UInt)last + 1 552 FT_Int first, last; local 939 int last = outline->contours[c]; local 1066 FT_Int last = outline->contours[c]; local [all...] |
/external/guava/guava/src/com/google/common/collect/ |
RegularContiguousSet.java | 76 final C last = last(); 80 return equalsOrThrow(previous, last) ? null : domain.next(previous); 87 return new AbstractSequentialIterator<C>(last()) { 109 @Override public C last() { 114 long distance = domain.distance(first(), last()); 144 C upperEndpoint = Ordering.natural().min(this.last(), other.last()); 167 && this.last().equals(that.last()); [all...] |
/external/harfbuzz_ng/test/api/ |
test-set.c | 164 hb_codepoint_t next, first, last; local 191 first = last = HB_SET_VALUE_INVALID; 192 g_assert (hb_set_next_range (s, &first, &last)); 194 g_assert_cmpint (last, ==, 6); 195 g_assert (hb_set_next_range (s, &first, &last)); 197 g_assert_cmpint (last, ==, 15); 198 g_assert (hb_set_next_range (s, &first, &last)); 200 g_assert_cmpint (last, ==, 20005); 201 g_assert (!hb_set_next_range (s, &first, &last)); 203 g_assert_cmpint (last, ==, HB_SET_VALUE_INVALID) [all...] |
/external/iproute2/netem/ |
maketable.c | 96 int i, index, first=DISTTABLESIZE, last=0; local 113 if (index > last) 114 last = index +1; 162 int i, j, last, lasti = -1; local 164 last = MINSHORT; 171 table[i] = last + (i-lasti)*(table[j]-last)/(j-lasti); 173 table[i] = last + (i-lasti)*(MAXSHORT-last)/(limit-lasti); 176 last = table[i] [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
VariableTranslator.java | 124 JavaExpression last = null; local 126 if (last == null) { 127 last = current; 130 if (current instanceof StringExpression && last instanceof StringExpression) { 131 // Last and current are both strings - combine them. 133 StringExpression lastString = (StringExpression) last; 134 last = new StringExpression(lastString.getValue() + currentString.getValue()); 136 out.add(last); 137 last = current; 140 out.add(last); [all...] |
/external/llvm/test/Transforms/InstSimplify/ |
ptr_diff.ll | 10 %last = getelementptr inbounds i8, i8* %ptr, i32 42 12 %last.int = ptrtoint i8* %last to i64 13 %diff = sub i64 %last.int, %first.int 30 %last.int = ptrtoint i8* %last4 to i64 31 %diff = sub i64 %last.int, %first.int 43 %last = getelementptr i8, i8* %ptr, i32 42 45 %last.int = ptrtoint i8* %last to i64 46 %diff = sub i64 %last.int, %first.in [all...] |
/external/selinux/libsepol/src/ |
sidtab.c | 90 sidtab_node_t *cur, *last; local 96 last = NULL; 99 last = cur; 106 if (last == NULL) 109 last->next = cur->next; 174 sidtab_node_t *last, *cur, *temp; local 180 last = NULL; 185 if (last) { 186 last->next = cur->next; 197 last = cur [all...] |
/external/selinux/policycoreutils/newrole/ |
hashtab.c | 87 hashtab_ptr_t cur, last; local 93 last = NULL; 96 last = cur; 103 if (last == NULL) 106 last->next = cur->next; 233 hashtab_ptr_t last, cur, temp; local 239 last = NULL; 244 if (last) { 245 last->next = cur->next; 257 last = cur [all...] |
/external/vogar/src/vogar/target/junit/ |
JUnitRunner.java | 162 int last = stackTraceElements.length - 1; local 163 for (; last >= 0; last--) { 164 String className = stackTraceElements[last].getClassName(); 171 if (last < stackTraceElements.length) { 172 last++; 179 for (; first < last; first++) { 190 if (first < last) { 192 StackTraceElement[] copyOfRange = new StackTraceElement[last - first]; 193 System.arraycopy(stackTraceElements, first, copyOfRange, 0, last - first) [all...] |
/external/zlib/src/contrib/ada/ |
mtest.adb | 49 Last : out Ada.Streams.Stream_Element_Offset); 84 Last : out Ada.Streams.Stream_Element_Offset) 86 Buff_Diff : Stream_Element_Offset := Buffer'Last - Buffer_First; 90 Last := Item'Last; 98 Last := Item'First + Buff_Diff; 99 Item (Item'First .. Last) := Buffer (Buffer_First .. Buffer'Last); 100 Buffer_First := Buffer'Last + 1; 125 if Compare_First /= Buffer'Last + 1 the [all...] |