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

<<11121314151617181920>>

  /external/qemu/distrib/zlib-1.2.3/
inffast.c 73 unsigned char FAR *last; /* while in < last, enough input available */ local
100 last = in + (strm->avail_in - 5);
285 } while (in < last && out < end);
296 strm->avail_in = (unsigned)(in < last ? 5 + (last - in) : 5 - (in - last));
  /external/v8/src/
safepoint-table.cc 95 int last = entry_size_ - 1; local
96 for (int i = first; i < last; i++) PrintBits(bits[i], kBitsPerByte);
97 int last_bits = code_->stack_slots() - ((last - first) * kBitsPerByte);
98 PrintBits(bits[last], last_bits);
143 return Safepoint(indexes_.last(), registers_.last());
  /external/wpa_supplicant_8/src/crypto/
aes-ccm.c 66 size_t last = len % AES_BLOCK_SIZE; local
75 if (last) {
76 /* XOR zero-padded last block */
77 for (i = 0; i < last; i++)
95 size_t last = len % AES_BLOCK_SIZE; local
107 if (last) {
110 /* XOR zero-padded last block */
111 for (i = 0; i < last; i++)
  /external/zlib/src/
inffast.c 73 unsigned char FAR *last; /* while in < last, enough input available */ local
100 last = in + (strm->avail_in - 5);
307 } while (in < last && out < end);
318 strm->avail_in = (unsigned)(in < last ? 5 + (last - in) : 5 - (in - last));
  /libcore/luni/src/main/java/java/lang/
StringToReal.java 252 char last = s.charAt(length - 1); local
253 if (last == 'y' || last == 'N') {
293 char last = s.charAt(length - 1); local
294 if (last == 'y' || last == 'N') {
  /libcore/luni/src/main/java/java/util/
MiniEnumSet.java 61 private E last; field in class:MiniEnumSet.MiniEnumSetIterator
73 last = enums[ordinal];
78 return last;
82 if (last == null) {
86 MiniEnumSet.this.remove(last);
87 last = null;
  /libcore/luni/src/main/java/libcore/net/http/
RawHeaders.java 96 int last = mark + 3; local
97 if (last > statusLine.length()) {
98 last = statusLine.length();
100 this.responseCode = Integer.parseInt(statusLine.substring(mark, last));
101 if (last + 1 <= statusLine.length()) {
102 this.responseMessage = statusLine.substring(last + 1);
219 * Returns the last value corresponding to the specified field, or null.
281 * present, the null field's last element will be used to set the status
  /external/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 100 // Detach comment handler once last active source file completed.
105 // Check diagnostics once last file completed.
475 for (size_t last = 0;; loc = C.find('\\', last)) {
477 C2 += C.substr(last);
480 C2 += C.substr(last, loc-last);
481 last = loc + 1;
483 if (C[last] == '\n' || C[last] == '\r')
    [all...]
  /external/skia/legacy/src/utils/
SkJSON.cpp 431 int last = fCount - 1; local
436 for (int i = 0; i <= last; ++i) {
443 SkDebugf(i < last ? "}," : "}");
445 SkDebugf(i < last ? "null," : "null");
452 for (int i = 0; i <= last; ++i) {
459 SkDebugf(i < last ? "]," : "]");
461 SkDebugf(i < last ? "null," : "null");
467 for (int i = 0; i < last; ++i) {
471 const char* str = fArray.fStrings[last];
475 for (int i = 0; i < last; ++i)
    [all...]
  /external/skia/src/utils/
SkJSON.cpp 431 int last = fCount - 1; local
436 for (int i = 0; i <= last; ++i) {
443 SkDebugf(i < last ? "}," : "}");
445 SkDebugf(i < last ? "null," : "null");
452 for (int i = 0; i <= last; ++i) {
459 SkDebugf(i < last ? "]," : "]");
461 SkDebugf(i < last ? "null," : "null");
467 for (int i = 0; i < last; ++i) {
471 const char* str = fArray.fStrings[last];
475 for (int i = 0; i < last; ++i)
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
TokenRewriteStream.js 288 var programName, first, last, text;
292 last = arguments[0];
297 last = arguments[1];
302 last = arguments[2];
310 if (last instanceof org.antlr.runtime.Token) {
311 last = last.index; // that's ugly
314 if ( first > last || last<0 || first<0 ) {
319 new trs.ReplaceOp(first, last, text))
    [all...]
  /external/libvorbis/lib/
envelope.c 14 last mod: $Id: envelope.c 16227 2009-07-08 06:58:46Z xiphmont $
224 int last=v->pcm_current/ve->searchstep-VE_WIN; local
228 if(last+VE_WIN+VE_POST>ve->storage){
229 ve->storage=last+VE_WIN+VE_POST; /* be sure */
233 for(j=first;j<last;j++){
259 ve->current=last*ve->searchstep;
298 for(l=0;l<last;l++)marker[l*ve->searchstep]=ve->filter[m].markers[l]*.1;
305 for(l=0;l<last;l++)marker[l*ve->searchstep]=ve->filter[m+VE_BANDS].markers[l]*.1;
309 for(l=0;l<last;l++)marker[l*ve->searchstep]=ve->mark[l]*.4;
348 long last=endW/ve->searchstep local
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderObjectChildList.cpp 301 RenderObject* last = const_cast<RenderObject*>(owner); local
303 last = last->lastChild();
304 } while (last && last->isAnonymous() && last->style()->styleType() == NOPSEUDO && !last->isListMarker());
305 if (last && last->style()->styleType() != AFTER)
307 return last;
    [all...]
  /external/openssh/
loginrec.c 58 * (utmp and friends) and last login time retrieval.
89 * Retrieving the time of last login ('lastlog') is in some ways even
95 * we look backwards in the wtmp or wtmpx file for the last login entry
128 * getlast_entry(), which tries one of three methods to find the last
258 * login_get_lastlog_time(int) - Retrieve the last login time
260 * Retrieve the last login time for the given uid. Will try to use the
309 * reliably search wtmp(x) for the last login (see
502 ** getlast_entry: Call low-level functions to retrieve the last login
506 /* take the uid in li and return the last login time */
519 /* On some systems we shouldn't even try to obtain last logi
1536 struct lastlog last; local
1589 struct lastlog last; local
    [all...]
  /external/libxslt/libxslt/
templates.c 517 ret->children = ret->last = NULL;
543 ret->last = ret->children = text;
619 xmlAttrPtr attr, copy, last; local
635 last = target->properties;
636 while (last->next != NULL)
637 last = last->next;
639 last = NULL;
695 if (last == NULL) {
697 last = copy
    [all...]
  /external/zlib/src/examples/
gzlog.c 18 valid state. The last data to be appended or compressed is saved in an
22 gzlog maintains another auxiliary file with the last 32K of data from the
32 foo.add -- last message to append or last data to compress
33 foo.dict -- dictionary of the last 32K of data for next compression
48 extra field has the necessary information to restore the start of the last
115 - Pointer to the last stored block length. This is the same as above, but
116 for the last stored block of the uncompressed data in the gzip file.
119 stored block as added, at which point the last stored block length pointer
121 different, the first bit of the last stored block header is eight bits, o
297 off_t last; \/* offset of last stored block first length byte *\/ member in struct:log
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
LinkedBlockingDeque.java 65 * or "last" (for prev links).
107 * Invariant: (first == null && last == null) ||
113 * Pointer to last node.
114 * Invariant: (first == null && last == null) ||
115 * (last.next == null && last.item != null)
117 transient Node<E> last; field in class:LinkedBlockingDeque
192 if (last == null)
193 last = node;
202 * Links node as last element, or returns false if full
    [all...]
  /external/openssl/crypto/perlasm/
x86_64-xlate.pl 450 last;
455 last;
471 last;
477 last;
482 last;
538 last;
549 last;
575 last;
579 last;
584 last;
    [all...]
  /libcore/luni/src/main/java/java/text/
SimpleDateFormat.java 281 int next, last = -1, count = 0; local
288 validateFormat((char) last);
291 if (last == next) {
292 last = -1;
294 last = next;
300 && (last == next || (next >= 'a' && next <= 'z') || (next >= 'A' && next <= 'Z'))) {
301 if (last == next) {
305 validateFormat((char) last);
307 last = next;
312 validateFormat((char) last);
526 int next, last = -1, count = 0; local
1017 int next, last = -1, count = 0, offset = position.getIndex(); local
    [all...]
  /external/libxml2/
tree.c 124 (n)->last = NULL; \
131 (n)->last = ulccur; \
993 doc->last = (xmlNodePtr) cur;
1009 cur->prev = doc->last;
1012 doc->last = (xmlNodePtr) cur;
1258 xmlNodePtr ret = NULL, last = NULL; local
1277 if ((last != NULL) && (last->type == XML_TEXT_NODE)) {
1278 xmlNodeAddContentLen(last, q, cur - q);
1282 if (last == NULL
1455 xmlNodePtr ret = NULL, last = NULL; local
5640 xmlNodePtr last, newNode, tmp; local
7628 xmlNsMapItemPtr last; member in struct:xmlNsMap
    [all...]
xinclude.c 4 * World Wide Web Consortium W3C Last Call Working Draft 10 November 2003
845 xmlNodePtr cur, res, result = NULL, last = NULL; local
855 result = last = res;
857 last->next = res;
858 res->prev = last;
859 last = res;
911 xmlNodePtr list = NULL, last = NULL, listParent = NULL; local
939 * last is a pointer to the last node added to the output tree
940 * lastLevel is the depth of last (relative to the root
1122 xmlNodePtr list = NULL, last = NULL; local
    [all...]
  /external/libvorbis/vq/
vqgen.c 14 last mod: $Id: vqgen.c 16037 2009-05-26 21:10:58Z xiphmont $
178 float last=0.f; local
180 if(mindel>_now(v,j)[k]-last)mindel=_now(v,j)[k]-last;
181 if(maxdel<_now(v,j)[k]-last)maxdel=_now(v,j)[k]-last;
182 if(q->sequencep)last=_now(v,j)[k];
200 float last=0; local
203 float now=rint((val-last-mindel)/delta);
217 if(q->sequencep)last=(now*delta)+mindel+last
230 float last=0.f; local
    [all...]
  /external/openssl/crypto/x509v3/
pcy_tree.c 268 * issued and not the last in the chain.
313 X509_POLICY_LEVEL *last = curr - 1; local
317 for (i = 0; i < sk_X509_POLICY_NODE_num(last->nodes); i++)
319 node = sk_X509_POLICY_NODE_value(last->nodes, i);
320 if (policy_node_match(last, node, data->valid_policy))
327 if (!matched && last->anyPolicy)
329 if (!level_add_node(curr, data, last->anyPolicy, NULL))
407 const X509_POLICY_LEVEL *last = curr - 1; local
410 if ( (last->flags & X509_V_FLAG_INHIBIT_MAP)
449 X509_POLICY_LEVEL *last = curr - 1 local
    [all...]
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
StringCharacterIteratorTest.java 249 * @tests java.text.StringCharacterIterator.last()
253 assertEquals('e', fixture.last());
255 assertEquals('e', fixture.last());
257 assertEquals('e', fixture.last());
260 assertEquals('e', fixture.last());
262 assertEquals('t', fixture.last());
384 assertEquals('x', fixture.last());
451 it1.last();
486 * @tests java.text.StringCharacterIterator#last()
491 assertEquals("Wrong last char", 'n', it1.last())
    [all...]
  /external/qemu/android/utils/
path.c 123 const char* last; local
146 /* find last separator */
147 last = end;
148 while (last > path && !ispathsep(last[-1]))
149 last -= 1;
152 if (last == path) {
161 if (last == path+1) {
170 basename = substring_dup(last,end);
184 *pdirname = substring_dup(path,last-1)
    [all...]

Completed in 821 milliseconds

<<11121314151617181920>>