Searched refs:remain (Results 1 - 25 of 52) sorted by relevance

123

/external/ltp/testcases/network/tcp_cmds/echo/
H A Dcreatefile.c24 int n, remain; local
40 remain = fsize % BUFSIZ;
42 remain = fsize;
47 if ((n = write(fd, buf, remain)) != remain)
/external/libmtp/src/
H A Dutil.c102 uint32_t remain = n; local
108 while (remain) {
111 ln = ( remain > 16 ) ? 16 : remain;
132 remain -= ln;
/external/curl/docs/cmdline-opts/
H A Dpost301.d10 consistency. However, a server may require a POST to remain a POST after such
H A Dpost302.d10 consistency. However, a server may require a POST to remain a POST after such
H A Dpost303.d10 consistency. However, a server may require a POST to remain a POST after such
H A Dkeepalive-time.d6 This option sets the time a connection needs to remain idle before sending
/external/mdnsresponder/mDNSPosix/
H A DIdentify.c189 struct timeval now, remain = end; local
194 if (remain.tv_usec < now.tv_usec) { remain.tv_usec += 1000000; remain.tv_sec--; }
195 if (remain.tv_sec < now.tv_sec)
200 remain.tv_usec -= now.tv_usec;
201 remain.tv_sec -= now.tv_sec;
202 mDNSPosixGetFDSet(m, &nfds, &readfds, &remain);
203 result = select(nfds, &readfds, NULL, NULL, &remain);
/external/mesa3d/src/mesa/main/
H A Dtexcompress_cpal.c83 GLuint remain, i; local
90 remain = num_pixels % 2;
95 if (remain) {
/external/icu/icu4c/source/data/misc/
H A Dmiscfiles.mk12 # Then, you can have your local changes remain even if you upgrade or re-
/external/icu/icu4c/source/data/sprep/
H A Dsprepfiles.mk12 # Then, you can have your local changes remain even if you upgrade or
/external/icu/icu4c/source/data/translit/
H A Dtrnsfiles.mk12 # Then, you can have your local changes remain even if you upgrade or re
/external/libunwind/doc/
H A Dunw_regname.tex23 therefore guaranteed to remain valid until the application terminates.
H A Dunw_get_accessors.tex23 guaranteed to remain valid until address space \Var{as} is destroyed
H A Dunw_init_local.tex23 starts. The machine-state must remain valid for the duration for
/external/e2fsprogs/lib/ext2fs/
H A Dext_attr.c666 unsigned int remain, prefix_len; local
677 remain = storage_size;
678 while (remain >= sizeof(struct ext2_ext_attr_entry) &&
682 remain -= sizeof(struct ext2_ext_attr_entry);
685 if (EXT2_EXT_ATTR_SIZE(end->e_name_len) > remain)
689 remain -= EXT2_EXT_ATTR_SIZE(end->e_name_len);
694 remain = storage_size;
695 while (remain >= sizeof(struct ext2_ext_attr_entry) &&
700 remain -= sizeof(struct ext2_ext_attr_entry);
703 remain
[all...]
/external/ltp/utils/sctp/func_tests/
H A Dtest_fragments.c264 int remain; local
272 remain = test_recvmsg(sk2, &inmessage, MSG_WAITALL);
273 test_check_msg_data(&inmessage, remain,
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtp_utility.cc266 const ptrdiff_t remain = _ptrRTPDataEnd - ptr; local
267 if (remain < 4) {
281 if (static_cast<size_t>(remain) < (4 + XLen)) {
/external/python/cpython2/Lib/
H A Dinspect.py761 stack, remain, count = [], [], []
770 remain.append(value)
777 # `remain` is empty here, we have such a sublist.
778 if not remain:
782 remain[-1] = remain[-1] - 1
783 while remain[-1] == 0:
784 remain.pop()
787 if not remain: break
788 remain[
[all...]
/external/libnfnetlink/src/
H A Dlibnfnetlink.c651 int remain; local
669 remain = recvmsg(nfnlh->fd, &msg, 0);
670 if (remain < 0) {
681 if (remain == 0) {
691 for (h = (struct nlmsghdr *)buf; remain >= sizeof(*h);) {
696 if (l < 0 || len > remain) {
722 //h = NLMSG_NEXT(h, remain);
723 remain -= NLMSG_ALIGN(len);
730 if (remain) {
731 nfnl_error("remnant size %d", remain);
[all...]
/external/valgrind/coregrind/m_syswrap/
H A Dsyscall-mips32-linux.S109 # TODO: this should remain, keep it just for now
/external/autotest/client/common_lib/
H A Dbarrier_unittest.py66 b = barrier.barrier('127.0.0.1#', 'remain', 100)
67 remain = b._remaining()
68 self.assertEqual(remain, 100)
/external/ant-glob/
H A DNOTICE45 * of this License, Derivative Works shall not include works that remain
241 all times remain with copyright holders.
/external/libdivsufsort/lib/
H A Dtrsort.c195 saidx_t remain; member in struct:_trbudget_t
204 budget->remain = budget->incval = incval;
210 if(size <= budget->remain) { budget->remain -= size; return 1; }
212 budget->remain += budget->incval - size;
/external/libevent/
H A Dbuffer.c1549 size_t remain, to_alloc; local
1577 remain = chain->buffer_len - (size_t)chain->misalign - chain->off;
1578 if (remain >= datlen) {
1600 remain = 0;
1613 if (remain) {
1615 data, remain);
1616 chain->off += remain;
1617 buf->total_len += remain;
1618 buf->n_add_for_cb += remain;
1621 data += remain;
[all...]
/external/python/cpython2/Objects/
H A Dtypeobject.c1464 set_mro_error(PyObject *to_merge, int *remain) argument
1475 if (remain[i] < PyList_GET_SIZE(L)) {
1476 PyObject *c = PyList_GET_ITEM(L, remain[i]);
1505 int *remain; local
1510 /* remain stores an index into each sublist of to_merge.
1511 remain[i] is the index of the next base in to_merge[i]
1514 remain = (int *)PyMem_MALLOC(SIZEOF_INT*to_merge_size);
1515 if (remain == NULL)
1518 remain[i] = 0;
1527 if (remain[
[all...]

Completed in 1438 milliseconds

123