HomeSort by relevance Sort by last modified time
    Searched full:last (Results 401 - 425 of 13702) sorted by null

<<11121314151617181920>>

  /external/qemu/hw/
goldfish_events_device.c 58 unsigned last; member in struct:__anon13759
97 QFIELD_INT32(last),
120 int enqueued = s->last - s->first;
130 if(s->first == s->last) {
140 s->events[s->last] = type;
141 s->last = (s->last + 1) & (MAX_EVENTS-1);
142 s->events[s->last] = code;
143 s->last = (s->last + 1) & (MAX_EVENTS-1)
    [all...]
  /external/valgrind/main/coregrind/
m_options.c 300 HChar const* last = VG_(clo_trace_children_skip); local
302 while (*last) {
305 HChar const* first = consume_commas(last);
306 last = consume_field(first);
307 if (first == last)
309 vg_assert(last > first);
312 patt = VG_(calloc)("m_options.swttc.1", last - first + 1, 1);
313 VG_(memcpy)(patt, first, last - first);
314 vg_assert(patt[last-first] == 0);
325 HChar const* last = VG_(clo_trace_children_skip_by_arg) local
    [all...]
  /external/webkit/Tools/android/flex-2.5.4a/
nfa.c 153 int last = lastst[mach]; local
155 for ( i = firstst[mach]; i <= last; ++i )
281 * new = link_machines( first, last );
283 * new - a machine constructed by connecting first to last
284 * first - the machine whose successor is to be last
285 * last - the machine whose predecessor is to be first
288 * last to produce a machine new which will pattern-match first first
289 * and then last, and will fail if either of the sub-patterns fails.
290 * FIRST is set to new by the operation. last is unmolested.
293 int link_machines( first, last )
    [all...]
  /external/clang/test/CXX/temp/temp.param/
p11-0x.cpp 25 // template parameter pack, it shall be the last template-parameter.
26 template<typename ...Types, // expected-error{{template parameter pack must be the last template parameter}}
30 template<typename ...Types, // expected-error{{template parameter pack must be the last template parameter}}
34 template<int ...Values, // expected-error{{template parameter pack must be the last template parameter}}
37 template<int ...Values, // expected-error{{template parameter pack must be the last template parameter}}
41 template<template<typename> class ...Templates, // expected-error{{template parameter pack must be the last template parameter}}
44 template<template<typename> class ...Templates, // expected-error{{template parameter pack must be the last template parameter}}
  /external/easymock/src/org/easymock/
MockControl.java 137 * Records that the mock object will expect the last method call once, and
142 * called on the mock object before, or if the last method
152 * Records that the mock object will expect the last method call once, and
161 * if the last method called on the mock cannot throw the
173 * Records that the mock object will expect the last method call once, and
180 * called on the mock object before. or if the last method
190 * Records that the mock object will expect the last method call a fixed
197 * called on the mock object before, or if the last method
207 * Records that the mock object will expect the last method call a fixed
218 * if the last method called on the mock cannot throw the
    [all...]
  /external/freetype/src/cache/
ftcmru.c 37 FTC_MruNode last = first->prev; local
59 last->next = node;
61 node->prev = last;
83 FTC_MruNode prev, next, last; local
108 last = first->prev;
110 last->next = node;
114 node->prev = last;
  /external/kernel-headers/original/linux/
sem.h 25 __kernel_time_t sem_otime; /* last semop time */
26 __kernel_time_t sem_ctime; /* last change time */
29 struct sem_queue **sem_pending_last; /* last pending operation */
87 int sempid; /* pid of last operation */
94 time_t sem_otime; /* last semop time */
95 time_t sem_ctime; /* last change time */
98 struct sem_queue **sem_pending_last; /* last pending operation */
  /external/marisa-trie/lib/marisa/
tail.cc 169 const KeyIdPair *last = &dummy_key; local
173 while ((match < cur.first.length()) && (match < last->first.length()) &&
174 last->first[match] == cur.first[match]) {
177 if ((match == cur.first.length()) && (last->first.length() != 0)) {
178 temp_offsets[cur.second] = (UInt32)(temp_offsets[last->second]
179 + (last->first.length() - match));
187 last = &cur;
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
tail.cc 169 const KeyIdPair *last = &dummy_key; local
173 while ((match < cur.first.length()) && (match < last->first.length()) &&
174 last->first[match] == cur.first[match]) {
177 if ((match == cur.first.length()) && (last->first.length() != 0)) {
178 temp_offsets[cur.second] = (UInt32)(temp_offsets[last->second]
179 + (last->first.length() - match));
187 last = &cur;
  /external/proguard/src/proguard/classfile/util/
MethodLinker.java 90 // Get the last method in the chain.
111 // Get the last methods in the both chains.
118 // Merge the two chains, with the library members last.
132 * Finds the last class member in the linked list of related class members.
134 * @return the last class member in the linked list.
150 * Finds the last visitor accepter in the linked list of visitors.
152 * @return the last method in the linked list.
  /frameworks/av/include/media/stagefright/
CameraSourceTimeLapse.h 52 // last read frame with the same time stamp frequently. This keeps the
66 // Real timestamp of the last encoded time lapse frame
85 // True if stop() is waiting for camera to get idle, i.e. for the last
94 // to false. Once in this mode read() return a copy of the last read frame
103 // Stores a copy of the MediaBuffer read in the last read() call after
107 // Status code for last read.
151 // the time stamp to be one frame time ahead of the last encoded
  /ndk/sources/cxx-stl/llvm-libc++/include/
numeric 22 accumulate(InputIterator first, InputIterator last, T init);
26 accumulate(InputIterator first, InputIterator last, T init, BinaryOperation binary_op);
39 partial_sum(InputIterator first, InputIterator last, OutputIterator result);
43 partial_sum(InputIterator first, InputIterator last, OutputIterator result, BinaryOperation binary_op);
47 adjacent_difference(InputIterator first, InputIterator last, OutputIterator result);
51 adjacent_difference(InputIterator first, InputIterator last, OutputIterator result, BinaryOperation binary_op);
54 void iota(ForwardIterator first, ForwardIterator last, T value);
  /packages/apps/Email/src/org/apache/commons/io/filefilter/
AgeFileFilter.java 100 * a certain File (whose last modification time will be used as reference).
102 * @param cutoffReference the file whose last modification
111 * of a certain File (whose last modification time will be used as
114 * @param cutoffReference the file whose last modification
125 * Checks to see if the last modification of the file matches cutoff
128 * If last modification time equals cutoff and newer files are required,
130 * If last modification time equals cutoff and older files are required,
  /external/bison/data/
location.cc 283 position last = loc.end - 1;
285 if (last.filename
287 || *loc.begin.filename != *last.filename))
288 ostr << '-' << last;
289 else if (loc.begin.line != last.line)
290 ostr << '-' << last.line << '.' << last.column;
291 else if (loc.begin.column != last.column)
292 ostr << '-' << last.column;
  /external/chromium/third_party/libjingle/source/talk/xmllite/
xmlnsstack.cc 158 size_t last = len; local
159 while (last > 0) {
160 last -= 1;
161 if (IsAsciiLetter(ns[last])) {
162 size_t first = last;
163 last += 1;
169 if (last - first > 4)
170 last = first + 3;
171 std::string candidate(AsciiLower(ns.substr(first, last - first)));
  /external/clang/lib/Format/
TokenAnnotator.h 152 /// \brief Is this the last "." or "->" in a builder-type call?
179 Last = Current;
186 Last = &First;
187 while (!Last->Children.empty()) {
188 Last->Children[0].Parent = Last;
189 Last = &Last->Children[0];
194 AnnotatedToken *Last;
  /external/harfbuzz_ng/src/
hb-set-private.hh 193 hb_codepoint_t last) const
196 if (unlikely (last > MAX_G)) last = MAX_G;
197 unsigned int end = last + 1;
263 inline bool next_range (hb_codepoint_t *first, hb_codepoint_t *last) const
267 i = *last;
271 *last = *first = i;
272 while (next (&i) && i == *last + 1)
273 (*last)++;
  /external/jsilver/src/com/google/streamhtmlparser/util/
JavascriptTokenBuffer.java 47 * Size of the ring buffer used to lookup the last token in the javascript
60 /** Index of the last item in our circular buffer. */
123 * Returns the last character in the buffer and removes it from the buffer
126 * @return last character in the buffer or '\0' if the buffer is empty
145 * <p>Position must be negative where -1 is the index of the last
169 * last character in the buffer.
189 * Returns the last javascript identifier/keyword in the buffer.
191 * @return the last identifier or {@code null} if none was found
218 * @param end the index of the last character to copy
  /external/libnfc-nxp/src/
phFriNfc_ISO15693Map.h 70 * file/card storage \b or continue from the last offset. The last Offset set is stored
73 * start reading from the last offset set (continue where it has stopped before).
82 * \retval NFCSTATUS_SUCCESS Last Byte of the card read.
114 * file/card storage \b or continue from the last offset. The last Offset set is stored
117 * start writing from the last offset set (continue where it has stopped before).
124 * \retval NFCSTATUS_EOF_NDEF_CONTAINER_REACHED Last byte is written to the card after this
200 * \retval NFCSTATUS_EOF_NDEF_CONTAINER_REACHED Last byte is written to the card after this
  /libcore/luni/src/main/java/java/text/
AttributedCharacterIterator.java 185 * Returns the index of the last character in the run having the same
188 * @return the index of the last character of the current run.
193 * Returns the index of the last character in the run that has the same
198 * @return the index of the last character of the current run.
203 * Returns the index of the last character in the run that has the same
208 * @return the index of the last character of the current run.
216 * @return the index of the last character of the current run.
226 * @return the index of the last character of the current run.
236 * @return the index of the last character of the current run.
  /sdk/emulator/opengl/tests/ut_renderer/
RenderingThread.cpp 357 size_t last = m_glDec.decode(readBuf.buf(), readBuf.validData(), m_stream); local
358 if (last > 0) {
360 readBuf.consume(last);
365 size_t last = m_gl2Dec.decode(readBuf.buf(), readBuf.validData(), m_stream); local
366 if (last > 0) {
367 readBuf.consume(last);
373 size_t last = m_utDec.decode(readBuf.buf(), readBuf.validData(), m_stream); local
374 if (last > 0) {
375 readBuf.consume(last);
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
TranslationAdvice.java 29 * where the last source argument is used as a constant. (That is, the
30 * last argument must have a type which indicates it is a known constant.)
37 * using a constant for the last argument
  /dalvik/dx/src/com/android/dx/rop/code/
TranslationAdvice.java 29 * where the last source argument is used as a constant. (That is, the
30 * last argument must have a type which indicates it is a known constant.)
37 * using a constant for the last argument
  /development/tools/axl/
chewperf.py 33 last = 0
39 out.append("%s %d" % (line, (tm - last)))
40 last = tm
  /external/chromium/chrome/browser/bookmarks/
bookmark_drop_info.h 35 // Value of event.GetSourceOperations when Update was last invoked.
38 // Whether the control key was down last time Update was invoked.
41 // Y position of the event last passed to Update.

Completed in 812 milliseconds

<<11121314151617181920>>