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

1 2 3 4 5 67 8 91011>>

  /external/smack/src/org/xbill/DNS/
Address.java 80 int last = tokens.length - 1; local
86 if (last - first > 0 && tokens[1].length() == 0)
92 if (tokens[last].length() == 0) {
93 // If the last two tokens are empty, it means the string
94 // ended with ::, which is fine. If only the last is
96 if (last - first > 0 && tokens[last - 1].length() == 0)
97 last--;
102 if (last - first + 1 > 8)
106 for (i = first, j = 0; i <= last; i++)
    [all...]
  /external/v8/test/cctest/
test-list.cc 109 CHECK_EQ(1, list.last());
115 CHECK_EQ(3, list.last());
118 CHECK_EQ(2, list.last());
126 CHECK_EQ(j, list.last());
  /external/webkit/Source/JavaScriptCore/runtime/
RopeImpl.cpp 55 RopeImpl* rope = workQueue.last();
  /external/webkit/Source/WebCore/bindings/v8/
IntrusiveDOMWrapperMap.h 79 Chunk* last = m_chunks; local
81 Chunk* previous = last->m_previous;
84 delete last;
86 last = previous;
89 m_chunks = last;
111 static void clearEntries(T* first, T* last)
113 for (T* entry = first; entry < last; entry++)
117 static void visitEntries(DOMDataStore* store, T* first, T* last, typename Traits::Visitor* visitor)
119 for (T* entry = first; entry < last; entry++)
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_Queue.h 45 EXYNOS_QElem *last; member in struct:_EXYNOS_QUEUE
  /hardware/ti/omap4xxx/
heaptracker.c 91 static struct hdr *last; variable in typeref:struct:hdr
162 static inline void __add(struct hdr *hdr, struct hdr **first, struct hdr **last)
165 hdr->next = *last;
166 if (*last)
167 (*last)->prev = hdr;
170 *last = hdr;
173 static inline int __del(struct hdr *hdr, struct hdr **first, struct hdr **last)
178 *last = hdr->next;
194 __add(hdr, &first, &last);
204 __del(hdr, &first, &last);
    [all...]
  /libcore/luni/src/main/java/java/util/jar/
InitManifest.java 100 // if the last line break is missed, the line
132 int last = pos; local
152 valueBuffer.write(buf, mark, last - mark);
163 last = pos;
166 valueBuffer.write(buf, mark, last - mark);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
BoundedTreeSet.java 38 if (comparator().compare(e, last()) > 0) return false;
40 pollLast(); // removes the last element
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
vlc_dequant.cpp 69 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...]
  /external/stlport/test/eh/
test_insert.h 96 key_iterator last = EH_STD::unique( keys.begin(), keys.end() ); local
99 for ( key_iterator tmp = keys.begin(); tmp != last; ++tmp )
452 Iter first, Iter last, sequence_container_tag )
457 c_inst.insert( pos, first, last );
462 Iter first, Iter last, associative_container_tag )
464 c.insert( first, last );
468 void do_insert_range( C& c, Position, Iter first, Iter last, multiset_tag )
470 c.insert( first, last );
474 void do_insert_range( C& c, Position, Iter first, Iter last, multimap_tag )
476 c.insert( first, last );
    [all...]
  /external/e2fsprogs/lib/blkid/
devname.c 404 int which = 0, last = 0; local
428 last = which;
466 * If last was a whole disk and we just found a partition
470 if (lens[last] && !strncmp(ptnames[last], ptname, lens[last])) {
477 if (tmp->bid_devno == devs[last]) {
486 lens[last] = 0;
489 * If last was not checked because it looked like a whole-disk
491 * check last as well
    [all...]
  /external/zlib/src/contrib/infback9/
infback9.c 230 int lastblock; /* true if processing last block */
246 code last; /* parent table entry */ local
274 /* Inflate until end of block marked as last */
290 lastblock ? " (last)" : ""));
299 lastblock ? " (last)" : ""));
304 lastblock ? " (last)" : ""));
477 last = here;
479 here = lencode[last.val +
480 (BITS(last.bits + last.op) >> last.bits)]
    [all...]
  /external/valgrind/main/callgrind/
dump.c 262 Context* last; local
272 last = 0;
283 last = cxt->fn[i-1]->pure_cxt;
285 /* If the last context was the context to print, we are finished */
286 if ((last == cxt) && (rec_index == 0)) return;
332 * the <last> position, update <last>
335 static Bool print_fn_pos(int fd, FnPos* last, BBCC* bbcc)
347 if (last->rec_index != bbcc->rec_index) {
350 last->rec_index = bbcc->rec_index
    [all...]
  /external/srec/portable/src/
pmemory.c 84 * Pointer to last memory allocation associated with the same tag.
86 struct MemoryData_t* last; member in struct:MemoryData_t
107 * Last memory allocation associated with this tag.
110 MemoryData* last; member in struct:MemMapEntry_t
191 gMemoryMap[idx].last = NULL;
418 if (e->last != NULL && e->last == data)
419 e->last = data->last;
420 if (data->last != NULL
    [all...]
  /external/libxml2/
nanohttp.c 149 int last; /* return code for last operation */ member in struct:xmlNanoHTTPCtxt
534 ctxt->last = -1;
560 ctxt->last = -1;
567 ctxt->last = recv(ctxt->fd, ctxt->inptr, XML_NANO_HTTP_CHUNK, 0);
568 if (ctxt->last > 0) {
569 ctxt->inptr += ctxt->last;
570 return (ctxt->last);
572 if (ctxt->last == 0) {
575 if (ctxt->last == -1)
730 const xmlChar *charset, *last, *mime; local
756 const xmlChar *charset, *last, *mime; local
    [all...]
  /external/e2fsprogs/lib/uuid/
gen_uuid.c 309 THREAD_LOCAL struct timeval last = {0, 0}; local
354 last.tv_sec = tv1;
355 last.tv_usec = tv2;
360 if ((last.tv_sec == 0) && (last.tv_usec == 0)) {
363 gettimeofday(&last, 0);
364 last.tv_sec--;
369 if ((tv.tv_sec < last.tv_sec) ||
370 ((tv.tv_sec == last.tv_sec) &&
371 (tv.tv_usec < last.tv_usec)))
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
infback.c 257 code last; /* parent table entry */ local
271 state->last = 0;
280 /* Inflate until end of block marked as last */
285 if (state->last) {
291 state->last = BITS(1);
296 state->last ? " (last)" : ""));
302 state->last ? " (last)" : ""));
307 state->last ? " (last)" : ""))
    [all...]
  /external/zlib/src/
infback.c 266 code last; /* parent table entry */ local
280 state->last = 0;
289 /* Inflate until end of block marked as last */
294 if (state->last) {
300 state->last = BITS(1);
305 state->last ? " (last)" : ""));
311 state->last ? " (last)" : ""));
316 state->last ? " (last)" : ""))
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/examples/id/
id.pl 17 last if $token->get_type() == IDLexer->EOF;
  /external/e2fsprogs/lib/ext2fs/
res_gdt.c 126 unsigned int grp, last = 0; local
170 if (!gdt_buf[last]) {
173 expect, grp, gdt_blk, last);
175 gdt_buf[last] = expect;
178 } else if (gdt_buf[last] != expect) {
181 gdt_buf[last], expect, gdt_blk, last);
186 last++;
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-indic-machine.rl 95 if (0) fprintf (stderr, "syllable %d..%d %s\n", last, p+1, #syllable_type); \
96 for (unsigned int i = last; i < p+1; i++) \
98 last = p+1; \
117 unsigned int last = 0;
hb-ot-shape-complex-myanmar-machine.rl 94 if (0) fprintf (stderr, "syllable %d..%d %s\n", last, p+1, #syllable_type); \
95 for (unsigned int i = last; i < p+1; i++) \
97 last = p+1; \
116 unsigned int last = 0;
  /external/llvm/utils/
profile.pl 29 last if /^--$/; # Stop processing arguments on --
  /external/openssh/regress/
forwarding.sh 10 last=$PORT
16 c=$last
19 last=$a
28 ${SSH} -$q -F $OBJ/ssh_config -p$last -o 'ConnectionAttempts=4' \
  /external/oprofile/daemon/
opd_trans.h 44 struct sfile * last; member in struct:transient
67 trans->last = trans->current;

Completed in 775 milliseconds

1 2 3 4 5 67 8 91011>>