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

<<11121314151617181920>>

  /external/libppp/src/
nat_cmd.c 519 struct mbuf **last; local
560 last = &bp->m_nextpkt;
566 *last = m_get(len, MB_NATIN);
567 memcpy(MBUF_CTOP(*last), fptr, len);
569 last = &(*last)->m_nextpkt;
  /external/libvorbis/lib/
sharedbook.c 14 last mod: $Id: sharedbook.c 17030 2010-03-25 06:52:55Z xiphmont $
218 float last=0.f; local
223 val=fabs(val)*delta+mindel+last;
224 if(b->q_sequencep)last=val;
239 float last=0.f; local
243 val=fabs(val)*delta+mindel+last;
244 if(b->q_sequencep)last=val;
  /external/webkit/Tools/android/webkitmerge/
webkitmerge.cpp 374 int last = m_preprocessorConditions.size() - 1;
375 myassert(last >= 0);
376 lastText = m_preprocessorConditions[last].name;
393 char* last = openParen;
394 while (last > m_text && isspace(last[-1]))
395 --last;
396 while (last > m_text && ((isTokenChar(last[-1]) || last[-1] == ':') && last[-2] == ':')
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
ComposingText.java 177 StrSegment last = strUplayer.get(strUplayer.size() - 1); local
178 if (last.to < mod_from) {
180 last.to = mod_to;
181 last.string = toString(layer, last.from, last.to);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlAutoEditStrategy.java 213 ITextRegion last = subRegions.get(subRegions.size() - 1); local
214 if (last.getType() == XML_TAG_CLOSE ||
215 last.getType() == XML_EMPTY_TAG_CLOSE) {
216 // See if the last tag was a closing tag
217 boolean wasClose = last.getType() == XML_EMPTY_TAG_CLOSE;
232 previous.getStartOffset() + last.getStart(), 0);
255 boolean addIndent = (last.getType() == XML_TAG_CLOSE)
  /external/tcpdump/
print-rx.c 78 { RX_LAST_PACKET, 0, "last-pckt" },
624 /* Start the search where we last left off */
2304 int i, start, last; local
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
streams.py 90 last symbol has been read. The index is the symbol about to be
108 Rewind to the input position of the last marker.
114 like invoking rewind(last marker) but it should not "pop"
115 the marker off. It's like seek(last marker's input position).
432 last symbol has been read. The index is the index of char to
652 # Remember last marked position
1000 def __init__(self, stream, first, last, text):
1002 self.lastIndex = last
    [all...]
  /external/dropbear/
loginrec.c 39 (utmp and friends) and last login time retrieval.
70 Retrieving the time of last login ('lastlog') is in some ways even
76 we look backwards in the wtmp or wtmpx file for the last login entry
109 getlast_entry(), which tries one of three methods to find the last
432 * form of the line (Just use the last <dstsize> characters of the
1014 /* Seek to the start of the last struct utmp */
1170 /* Seek to the start of the last struct utmpx */
1284 lastlog_construct(struct logininfo *li, struct lastlog *last)
1287 memset(last, '\0', sizeof(*last));
1361 struct lastlog last; local
    [all...]
  /external/valgrind/main/coregrind/
m_redir.c 544 HChar const* last = VG_(clo_soname_synonyms); local
546 while (*last) {
547 HChar const* first = last;
548 last = advance_to_equal(first);
550 if ((last - first) == sopatt_syn_len
555 first = last + 1;
556 last = advance_to_comma(first);
557 VG_(strncpy)(demangled_sopatt, first, last - first);
558 demangled_sopatt[last - first] = '\0';
562 last = advance_to_comma(last)
    [all...]
  /system/extras/ext4_utils/
allocate.c 28 struct region *last; member in struct:region_list
73 alloc->list.last = NULL;
75 alloc->oob_list.last = NULL;
113 if (list->last == reg)
114 list->last = reg->prev;
124 list->last = reg;
129 list->last->next = reg;
130 reg->prev = list->last;
131 list->last = reg;
254 /* Reduces an existing allocation by len blocks by return the last block
    [all...]
  /cts/hostsidetests/monkey/
Android.mk 27 # prefix zzz intentional to run this last
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
DalvInsnList.java 114 DalvInsn last = get(sz - 1); local
115 return last.getNextAddress();
  /dalvik/dx/src/com/android/dx/dex/code/
DalvInsnList.java 115 DalvInsn last = get(sz - 1); local
116 return last.getNextAddress();
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
EncodingInfo.java 343 private EncodingImpl(String encoding, int first, int last, int codePoint) {
347 m_last = last;
  /external/chromium/testing/gmock/include/gmock/
gmock-more-actions.h 180 // Action SetArrayArgument<k>(first, last) copies the elements in
181 // source range [first, last) to the array pointed to by the k-th
187 AND_2_VALUE_PARAMS(first, last)) {
194 ::std::copy(first, last, ::std::tr1::get<k>(args));
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
DalvInsnList.java 115 DalvInsn last = get(sz - 1); local
116 return last.getNextAddress();
  /external/icu4c/test/intltest/
tstnrapi.cpp 126 // test last()/previous() with an internal buffer overflow
129 if(copy.last()!=0x308) {
130 errln("error in Normalizer(1000*U+0308).last()");
135 if(norm.first()!=0x61 || norm.next()!=0x308 || norm.last()!=0x2f800) {
136 errln("error in Normalizer(UNORM_NONE).first()/next()/last()");
  /external/kernel-headers/original/asm-x86/
system_32.h 19 #define switch_to(prev,next,last) do { \
32 "=a" (last),"=S" (esi),"=D" (edi) \
  /external/linux-tools-perf/scripts/perl/
rwtop.pl 143 last;
166 last;
  /external/mockito/src/org/mockito/internal/invocation/
InvocationsFinder.java 110 Invocation last = invocations.get(invocations.size() - 1); local
111 return last.getLocation();
  /external/oprofile/libpp/
symbol_sort.cpp 137 for (sort_order cur = first; cur != last; cur = sort_order(cur + 1)) {
154 for (sort_order cur = first; cur != last; cur = sort_order(cur + 1)) {
  /external/skia/legacy/src/animator/
SkDisplayTypes.cpp 18 SkDisplayable** last = fDependents.end(); local
19 for (SkDisplayable** depPtr = fDependents.begin(); depPtr < last; depPtr++) {
  /external/skia/src/animator/
SkDisplayTypes.cpp 18 SkDisplayable** last = fDependents.end(); local
19 for (SkDisplayable** depPtr = fDependents.begin(); depPtr < last; depPtr++) {
  /external/srec/srec/cfront/
spec_anl.c 69 the last sample value is stored in lastx.
221 int last; local
232 last = freqobj->cut_off_above;
236 if (last >= num_freq)
237 last = num_freq - 1;
243 ASSERT(density[last] >= 0);
244 peak = density[last];
245 for (i = last - 1; i >= first; i--)
258 for (i = first + 1; i <= last; i++)
  /external/stlport/test/eh/
test_vector.cpp 64 inline void prepare_insert_range( TestVector& vec, size_t, TestClass* first, TestClass* last )
69 EH_DISTANCE( first, last, d );

Completed in 1327 milliseconds

<<11121314151617181920>>