HomeSort by relevance Sort by last modified time
    Searched refs:nleft (Results 1 - 15 of 15) sorted by null

  /system/core/sh/
eval.h 46 int nleft; /* number of chars in buffer */ member in struct:backcmd
output.h 43 int nleft; member in struct:output
76 #define outc(c, file) (--(file)->nleft < 0? (emptyoutbuf(file), *(file)->nextc++ = (c)) : (*(file)->nextc++ = (c)))
output.c 112 file->nleft = --length;
153 dest->nleft = sizeof out_junk;
159 dest->nleft = dest->bufsize;
166 dest->nleft = dest->bufsize - offset;
172 dest->nleft--;
193 dest->nleft = dest->bufsize;
204 output.nleft = 0;
250 strout.nleft = length;
input.c 92 int nleft; /* number of chars left in this line */ member in struct:parsefile
102 int parsenleft; /* copy of parsefile->nleft */
147 int nleft = len; local
150 while (--nleft > 0) {
505 parsefile->nleft = parsenleft;
532 parsenleft = parsefile->nleft;
eval.c 561 result->nleft = 0;
602 TRACE(("evalbackcmd done: fd=%d buf=0x%x nleft=%d jp=0x%x\n",
603 result->fd, result->buf, result->nleft, result->jp));
981 memout.nleft = 0;
1050 backcmd->nleft = memout.nextc - memout.buf;
jobs.c 1398 int nleft; local
1406 nleft = cmdnleft;
1407 while (nleft > 0 && (c = *p++) != 0) {
1478 } while (--nleft > 0 && str && (c = *str++));
1481 if ((quoted & 1) && nleft) {
1483 nleft--;
1485 cmdnleft = nleft;
expand.c 441 if (--in.nleft < 0) {
449 in.nleft = i - 1;
init.c 915 int nleft; /* number of chars left in this line */ member in struct:parsefile
  /external/openssl/crypto/cmac/
cmac.c 231 size_t nleft; local
232 nleft = bl - ctx->nlast_block;
233 if (dlen < nleft)
234 nleft = dlen;
235 memcpy(ctx->last_block + ctx->nlast_block, data, nleft);
236 dlen -= nleft;
237 ctx->nlast_block += nleft;
241 data += nleft;
  /cts/tests/tests/view/src/android/view/cts/
View_LayoutPositionTest.java 93 int nleft = vLocation[0] - pLocation[0]; local
95 int nright = nleft + vRect.width();
98 assertEquals(left + h_offset , nleft);
  /external/freetype/src/cff/
cffload.c 905 FT_UInt nleft; local
920 if ( FT_READ_USHORT( nleft ) )
925 if ( FT_READ_BYTE( nleft ) )
929 /* try to rescue some of the SIDs if `nleft' is too large */
930 if ( glyph_sid > 0xFFFFL - nleft )
933 " nleft=%d -> %d\n", nleft, 0xFFFFL - glyph_sid ));
934 nleft = ( FT_UInt )( 0xFFFFL - glyph_sid );
937 /* Fill in the range of sids -- `nleft + 1' glyphs. */
938 for ( i = 0; j < num_glyphs && i <= nleft; i++, j++, glyph_sid++
1142 FT_UInt nleft; local
    [all...]
  /external/tcpdump/
print-ip.c 278 int nleft = len; local
289 while (nleft > 1) {
291 nleft -= 2;
293 if (nleft == 1)
  /external/ping/
ping.c 871 register int nleft = len; local
882 while (nleft > 1) {
884 nleft -= 2;
888 if (nleft == 1)
    [all...]
  /external/elfutils/src/
ar.c 576 size_t nleft; local
577 char *data = elf_rawfile (subelf, &nleft);
636 while ((n = TEMP_FAILURE_RETRY (write (xfd, data, nleft))) != -1)
638 nleft -= n;
639 if (nleft == 0)
    [all...]
  /external/mdnsresponder/mDNSShared/
uds_daemon.c 3569 mDNSu32 nleft = sizeof(ipc_msg_hdr) - req->hdr_bytes; local
3603 mDNSu32 nleft = req->hdr.datalen - req->data_bytes; local
    [all...]

Completed in 441 milliseconds