Searched refs:last (Results 251 - 275 of 1039) sorted by relevance

<<11121314151617181920>>

/external/fsck_msdos/
H A Ddir.c447 int last; local
461 last = boot->RootDirEnts * 32;
464 last = boot->SecPerClust * boot->BytesPerSec;
469 buf = malloc(last);
480 if (read(f, buf, last) != last) {
485 last /= 32;
531 int i, j, k, last; local
555 last = boot->RootDirEnts * 32;
558 last
[all...]
/external/google-breakpad/src/processor/
H A Dstatic_map.h100 inline iterator last() const { return IteratorAtIndex(num_nodes_ - 1); } function in class:google_breakpad::StaticMap
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DEmptyContiguousSet.java39 @Override public C last() { method in class:EmptyContiguousSet
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
H A DCompoundTransliteratorTest.java201 int last = 0;
206 result[current++] = s.substring(last,i);
207 last = i+1;
210 result[current++] = s.substring(last,i);
/external/iproute2/misc/
H A Dlnstat_util.c66 static int time_after(struct timeval *last, argument
70 if (now->tv_sec > last->tv_sec + tout->tv_sec)
73 if (now->tv_sec == last->tv_sec + tout->tv_sec) {
74 if (now->tv_usec > last->tv_usec + tout->tv_usec)
/external/libedit/src/
H A Dhist.c63 el->el_history.last = el->el_history.buf;
107 (el->el_history.last - el->el_history.buf);
205 el->el_history.last = newbuf +
206 (el->el_history.last - el->el_history.buf);
/external/llvm/include/llvm/IR/
H A DSymbolTableListTraits.h68 ilist_iterator<ValueSubClass> last);
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_pixel_bitmap.c115 GLint first, last; local
124 last = 0;
129 last = h-1;
135 for (row = first; row != (last+incr); row += incr) {
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_pixel_bitmap.c115 GLint first, last; local
124 last = 0;
129 last = h-1;
135 for (row = first; row != (last+incr); row += incr) {
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_pixel_bitmap.c115 GLint first, last; local
124 last = 0;
129 last = h-1;
135 for (row = first; row != (last+incr); row += incr) {
/external/sonivox/arm-hybrid-22k/lib_src/
H A DARM_synth_constants_gnu.inc123 .equ m_pLoopEnd, 0 @ /* points to last PCM sample (not 1 beyond last) */
/external/sonivox/arm-wt-22k/lib_src/
H A DARM_synth_constants_gnu.inc123 .equ m_pLoopEnd, 0 @ /* points to last PCM sample (not 1 beyond last) */
/external/v8/test/mjsunit/regress/
H A Dregress-2073.js57 child.left = this.last;
/external/valgrind/memcheck/tests/
H A Drecursive-merge.c14 void stacktrace(char*last, char* callsequence)
/external/vixl/test/
H A Dtest-runner.h45 static Test* last() { return last_; } function in class:vixl::Test
/external/webp/src/enc/
H A Dcost.h29 int last; member in struct:__anon16960
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_methods.c315 struct eap_method *m, *last = NULL; local
326 last = m;
329 if (last)
330 last->next = method;
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_methods.c315 struct eap_method *m, *last = NULL; local
326 last = m;
329 if (last)
330 last->next = method;
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Deap_methods.c315 struct eap_method *m, *last = NULL; local
326 last = m;
329 if (last)
330 last->next = method;
/external/freetype/src/gzip/
H A Dinfblock.c1 /* infblock.c -- interpret and process block types to last block
44 Huffman codes, but the last two had better not show up in the data.
57 really is 258. The last length deserves its own, short code
141 s->last = t & 1;
146 s->last ? " (last)" : ""));
154 s->last ? " (last)" : ""));
173 s->last ? " (last)"
[all...]
/external/libxml2/
H A Dtree.c127 (n)->last = NULL; \
134 (n)->last = ulccur; \
1005 doc->last = (xmlNodePtr) cur;
1021 cur->prev = doc->last;
1024 doc->last = (xmlNodePtr) cur;
1270 xmlNodePtr ret = NULL, last = NULL; local
1386 if (last == NULL) {
1387 last = ret = node;
1389 last = xmlAddNextSibling(last, nod
1478 xmlNodePtr ret = NULL, last = NULL; local
5763 xmlNodePtr last, newNode, tmp; local
7798 xmlNsMapItemPtr last; member in struct:xmlNsMap
[all...]
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dvgu.c269 VGfloat last = startAngle + angleExtent; local
297 while (angle < last) {
311 coords[i+3] = x+cos(DEGREES_TO_RADIANS(last))*width/2;
312 coords[i+4] = y+sin(DEGREES_TO_RADIANS(last))*height/2;
320 while (angle > last) {
334 coords[i+3] = x + cos(DEGREES_TO_RADIANS(last)) * width/2;
335 coords[i+4] = y + sin(DEGREES_TO_RADIANS(last)) * height/2;
/external/skia/src/utils/
H A DSkParseColor.cpp24 // !!! the bit to end the word (last) is at the low bit for binary search
191 bool last = false; local
206 if (len <= 6) { // last
208 last = true;
213 } while (last == false);
375 bool last = false; local
397 last = ch < 'a' || ch > 'z';
398 if (last)
402 } while (last == false && len > 0);
413 if ((*sixMatchPtr & 1) == 0) { // last
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
H A Drewrite.rb325 first, last = loc.first.to_i, loc.last.to_i
326 loc.exclude_end? and last -= 1
327 return cast_range( args.unshift( first, last ), extra )
333 first, last = args.shift( 2 ).map! { |arg| arg.to_i }
334 if first < 0 and last < 0
336 last += @stream.length
338 last < 0 and last += @stream.length
341 return( args.unshift( first .. last ) )
[all...]
/external/libvncserver/x11vnc/misc/
H A Ddesktop.cgi1012 last;
1206 last;
1406 last;
1410 last;
1414 last;
1418 last if $ok;
1523 last;
1525 last;
1534 last;
1539 last i
[all...]

Completed in 2858 milliseconds

<<11121314151617181920>>