/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)))
|
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;
|
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;
|
init.c | 915 int nleft; /* number of chars left in this line */ member in struct:parsefile
|
/external/chromium_org/third_party/openssl/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;
|
/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/tcpdump/ |
print-ip.c | 278 int nleft = len; local 289 while (nleft > 1) { 291 nleft -= 2; 293 if (nleft == 1)
|
/external/chromium_org/third_party/freetype/src/cff/ |
cffload.c | 906 FT_UInt nleft; local 921 if ( FT_READ_USHORT( nleft ) ) 926 if ( FT_READ_BYTE( nleft ) ) 930 /* try to rescue some of the SIDs if `nleft' is too large */ 931 if ( glyph_sid > 0xFFFFL - nleft ) 934 " nleft=%d -> %d\n", nleft, 0xFFFFL - glyph_sid )); 935 nleft = ( FT_UInt )( 0xFFFFL - glyph_sid ); 938 /* Fill in the range of sids -- `nleft + 1' glyphs. */ 939 for ( i = 0; j < num_glyphs && i <= nleft; i++, j++, glyph_sid++ 1143 FT_UInt nleft; local [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/freetype/src/cff/ |
cffload.c | 906 FT_UInt nleft; local 921 if ( FT_READ_USHORT( nleft ) ) 926 if ( FT_READ_BYTE( nleft ) ) 930 /* try to rescue some of the SIDs if `nleft' is too large */ 931 if ( glyph_sid > 0xFFFFL - nleft ) 934 " nleft=%d -> %d\n", nleft, 0xFFFFL - glyph_sid )); 935 nleft = ( FT_UInt )( 0xFFFFL - glyph_sid ); 938 /* Fill in the range of sids -- `nleft + 1' glyphs. */ 939 for ( i = 0; j < num_glyphs && i <= nleft; i++, j++, glyph_sid++ 1143 FT_UInt nleft; local [all...] |
/external/iputils/ |
ping.c | 951 register int nleft = len; local 962 while (nleft > 1) { 964 nleft -= 2; 968 if (nleft == 1) [all...] |
rdisc.c | 923 register int nleft = len; local 934 while( nleft > 1 ) { 936 nleft -= 2; 940 if( nleft == 1 ) [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...] |