Searched refs:remaining (Results 1 - 25 of 259) sorted by relevance

1234567891011

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/alpha/lib/
H A Dsrm_puts.c11 long remaining, written; local
16 for (remaining = len; remaining > 0; remaining -= written)
18 written = callback_puts(0, str, remaining);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/net/
H A Dnexthop.h7 static inline int rtnh_ok(const struct rtnexthop *rtnh, int remaining) argument
9 return remaining >= sizeof(*rtnh) &&
11 rtnh->rtnh_len <= remaining;
15 int *remaining)
19 *remaining -= totlen;
14 rtnh_next(const struct rtnexthop *rtnh, int *remaining) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/lib/
H A Dversion.c32 size_t remaining;
42 remaining = sizeof(samba_version)-strlen(samba_version);
44 strlcat( samba_version, tmp_version, remaining-1 );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dadx_parser.c36 int remaining; member in struct:ADXParseContext
60 s->remaining = i - 7 + s->header_size + s->block_size;
69 if (!s->remaining)
70 s->remaining = s->block_size;
71 if (s->remaining <= buf_size) {
72 next = s->remaining;
73 s->remaining = 0;
75 s->remaining -= buf_size;
H A Dgsm_parser.c34 int remaining; member in struct:GSMParseContext
54 if (!s->remaining)
55 s->remaining = s->block_size;
56 if (s->remaining <= buf_size) {
57 next = s->remaining;
58 s->remaining = 0;
61 s->remaining -= buf_size;
H A Dbethsoftvideo.c73 int remaining = avctx->width; // number of bytes remaining on a line local
103 while(length > remaining){
105 bytestream2_get_buffer(&vid->g, dst, remaining);
107 memset(dst, bytestream2_peek_byte(&vid->g), remaining);
108 length -= remaining; // decrement the number of bytes to be copied
109 dst += remaining + wrap_to_next_line; // skip over extra bytes at end of frame
110 remaining = avctx->width;
115 // copy any remaining bytes after / if line overflows
120 remaining
[all...]
H A Danm.c79 int remaining = width - *x; local
81 int striplen = FFMIN(count, remaining);
91 remaining -= striplen;
93 if (remaining <= 0) {
95 remaining = width;
103 *x = width - remaining;
107 *x = width - remaining;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dadx_parser.c36 int remaining; member in struct:ADXParseContext
60 s->remaining = i - 7 + s->header_size + s->block_size;
69 if (!s->remaining)
70 s->remaining = s->block_size;
71 if (s->remaining <= buf_size) {
72 next = s->remaining;
73 s->remaining = 0;
75 s->remaining -= buf_size;
H A Dgsm_parser.c35 int remaining; member in struct:GSMParseContext
65 if (!s->remaining)
66 s->remaining = s->block_size;
67 if (s->remaining <= buf_size) {
68 next = s->remaining;
69 s->remaining = 0;
72 s->remaining -= buf_size;
H A Dbethsoftvideo.c77 int remaining = avctx->width; // number of bytes remaining on a line local
119 while(length > remaining){
121 bytestream2_get_buffer(&vid->g, dst, remaining);
123 memset(dst, bytestream2_peek_byte(&vid->g), remaining);
124 length -= remaining; // decrement the number of bytes to be copied
125 dst += remaining + wrap_to_next_line; // skip over extra bytes at end of frame
126 remaining = avctx->width;
131 // copy any remaining bytes after / if line overflows
136 remaining
[all...]
H A Danm.c81 int remaining = width - *x; local
83 int striplen = FFMIN(count, remaining);
91 remaining -= striplen;
93 if (remaining <= 0) {
95 remaining = width;
103 *x = width - remaining;
107 *x = width - remaining;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/unittests/tests/
H A DStringFunctionsTest.cpp64 ASSERT_EQUALS(wxT(""), tkz1.remaining());
66 ASSERT_EQUALS(wxT(""), tkz1.remaining());
73 ASSERT_EQUALS(wxT(" abc "), tkz2.remaining());
85 ASSERT_EQUALS(wxT(" a"), tkz1.remaining());
89 ASSERT_EQUALS(wxT("a"), tkz1.remaining());
93 ASSERT_EQUALS(wxT(""), tkz1.remaining());
97 ASSERT_EQUALS(wxT(""), tkz1.remaining());
103 ASSERT_EQUALS(wxT("c "), tkz2.remaining());
107 ASSERT_EQUALS(wxT(""), tkz2.remaining());
111 ASSERT_EQUALS(wxT(""), tkz2.remaining());
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/coreutils/
H A Dsplit.c66 off_t remaining = 0; local
110 if (!remaining) {
115 remaining = cnt;
120 to_write = (bytes_read < remaining) ? bytes_read : remaining;
121 remaining -= to_write;
128 --remaining;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/src/xz/
H A Dmessage.c64 /// and estimate remaining time.
402 /// Make a string indicating elapsed or remaining time. The format is either
434 /// Return a string containing estimated remaining time when
439 // Don't show the estimated remaining time when it wouldn't
454 uint32_t remaining = (double)(expected_in_size - in_pos)
456 if (remaining < 1)
457 remaining = 1;
461 // Select appropriate precision for the estimated remaining time.
462 if (remaining <= 10) {
463 // A maximum of 10 seconds remaining
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/xz/src/xz/
H A Dmessage.c64 /// and estimate remaining time.
402 /// Make a string indicating elapsed or remaining time. The format is either
434 /// Return a string containing estimated remaining time when
439 // Don't show the estimated remaining time when it wouldn't
454 uint32_t remaining = (double)(expected_in_size - in_pos)
456 if (remaining < 1)
457 remaining = 1;
461 // Select appropriate precision for the estimated remaining time.
462 if (remaining <= 10) {
463 // A maximum of 10 seconds remaining
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libpng/libpng-1.2.50/
H A Dpngrio.c105 png_size_t read, remaining, err; local
107 remaining = length;
110 read = MIN(NEAR_BUF_SIZE, remaining);
123 remaining -= read;
125 while (remaining != 0);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/png/
H A Dpngrio.c92 png_size_t read, remaining, err; local
94 remaining = length;
97 read = MIN(NEAR_BUF_SIZE, remaining);
110 remaining -= read;
112 while (remaining != 0);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Drtpdec_qt.c38 int bytes_per_frame, remaining; member in struct:PayloadContext
52 if (qt->remaining) {
60 &qt->pkt.data[(num - qt->remaining) * qt->bytes_per_frame],
62 if (--qt->remaining == 0) {
66 return qt->remaining > 0;
210 qt->remaining = (alen / qt->bytes_per_frame) - 1;
216 if (qt->remaining > 0) {
218 qt->pkt.data = av_realloc(NULL, qt->remaining * qt->bytes_per_frame);
223 qt->pkt.size = qt->remaining * qt->bytes_per_frame;
226 qt->remaining * q
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Drtpdec_qt.c38 int bytes_per_frame, remaining; member in struct:PayloadContext
52 if (qt->remaining) {
60 &qt->pkt.data[(num - qt->remaining) * qt->bytes_per_frame],
62 if (--qt->remaining == 0) {
66 return qt->remaining > 0;
204 qt->remaining = (alen / qt->bytes_per_frame) - 1;
210 if (qt->remaining > 0) {
212 qt->pkt.data = av_malloc(qt->remaining * qt->bytes_per_frame);
217 qt->pkt.size = qt->remaining * qt->bytes_per_frame;
220 qt->remaining * q
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/lib/xz/
H A Dxz_dec_test.c105 size_t remaining; local
119 remaining = size;
120 while ((remaining > 0 || buffers.out_pos == buffers.out_size)
124 buffers.in_size = min(remaining, sizeof(buffer_in));
129 remaining -= buffers.in_size;
145 return size - remaining - (buffers.in_size - buffers.in_pos);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/examples/pcap2nbench/
H A Dreadandxrequest.hpp45 uint16_t remaining; member in struct:ReadAndXRequest
H A Dwriteandxrequest.hpp44 uint16_t remaining; member in struct:WriteAndXRequest
H A Dreadandxrequest.cpp41 memcpy(&remaining, data + 19, 2);
57 << "Remaining: " << rhs.remaining << std::endl
H A Dwriteandxrequest.cpp40 memcpy(&remaining, data + 17, 2);
59 << "Remaining: " << rhs.remaining << std::endl
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dcalclevt.tex4 calculate the amount of the remaining client area that the window should
48 Before the event handler is entered, returns the remaining parent client area that the window
49 could occupy. When the event handler returns, this should contain the remaining parent client rectangle,
62 Call this to specify the new remaining parent client area, after the space occupied by the

Completed in 330 milliseconds

1234567891011