Home
last modified time | relevance | path

Searched full:split (Results 1 – 25 of 118) sorted by relevance

12345

/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/
H A DSConscript7 lwipcore_SRCS = Split("""
27 lwipcore_altcp_SRCS = Split("""
34 lwipcore4_SRCS = Split("""
46 lwipcore6_SRCS = Split("""
59 lwipapi_SRCS = Split("""
72 lwipnetif_SRCS = Split("""
78 lwipnetif_bridgeif_SRCS = Split("""
84 lwipnetif_slipif_SRCS = Split("""
89 lwipsixlowpan_SRCS = Split("""
95 lwipsixlowpan_ble_SRCS = Split("""
[all …]
/nrf52832-nimble/packages/NimBLE-latest/
H A DSConscript26 src += Split('''
83 src += Split('''
87 src += Split('''
102 src += Split('''
123 src += Split("""
152 src += Split("""
162 src += Split("""
172 src += Split("""
181 src += Split("""
191 src += Split("""
[all …]
/nrf52832-nimble/rt-thread/components/net/freemodbus/
H A DSConscript4 src = Split("""
12 master_rtu_src = Split("""
25 slave_rtu_src = Split("""
38 master_slave_rtu_src = Split("""
/nrf52832-nimble/rt-thread/components/finsh/
H A DSConscript5 src = Split('''
11 fsh_src = Split('''
24 msh_src = Split('''
H A Dfinsh_heap.c78 /* split block */ in finsh_heap_allocate()
211 * split block
218 * split header into two node: in finsh_block_split()
/nrf52832-nimble/rt-thread/components/net/uip/doc/html/
H A Da00154.html23 The uip-split module is a hack which tries to remedy this situation. By splitting maximum sized out…
24 The uip-split module uses the uip-fw module (uIP IP packet forwarding) for sending packets. Therefo…
29 …<td class="memItemRight" valign="bottom"><a class="el" href="a00134.html">uip-split.h</a></td></tr>
40 <a class="anchor" name="gb4b17aaf20d630f30919b19937b966a3"></a><!-- doxytag: member="uip-split.h::u…
67 …w_output() function. If the packet is a full-sized TCP segment it will be split into two segments …
70 …ass="el" href="a00199.html#l00049">49</a> of file <a class="el" href="a00199.html">uip-split.c</a>.
H A Da00134.html3 <title>uIP 1.0: uip/uip-split.h File Reference</title>
21 <h1>uip/uip-split.h File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
27 Definition in file <a class="el" href="a00200.html">uip-split.h</a>.
H A Da00200.html3 <title>uIP 1.0: uip/uip-split.h Source File</title>
21 <h1>uip/uip-split.h</h1><a href="a00134.html">Go to the documentation of this file.</a><div class="…
53 <a name="l00033"></a>00033 <span class="comment"> * $Id: uip-split.h,v 1.2 2006/06/12 08:00:30 adam…
70 <a name="l00050"></a>00050 <span class="comment"> * The uip-split module is a hack which tries to r…
76 <a name="l00056"></a>00056 <span class="comment"> * The uip-split module uses the uip-fw module (uI…
100 <a name="l00080"></a>00080 <span class="comment"> * full-sized TCP segment it will be split into tw…
H A Da00199.html3 <title>uIP 1.0: uip/uip-split.c Source File</title>
21 <h1>uip/uip-split.c</h1><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <spa…
53 <a name="l00033"></a>00033 <span class="comment"> * $Id: uip-split.c,v 1.2 2006/06/12 08:00:30 adam…
58 …038 <span class="preprocessor">#include "<a class="code" href="a00134.html">uip-split.h</a>"</span>
73 <a name="l00053"></a>00053 <span class="comment">/* We only try to split maximum sized TCP segmen…
78 <a name="l00058"></a>00058 <span class="comment">/* Split the segment in two. If the original p…
/nrf52832-nimble/rt-thread/components/net/uip/uip/
H A Duip-split.h33 * $Id: uip-split.h,v 1.2 2006/06/12 08:00:30 adam Exp $
50 * The uip-split module is a hack which tries to remedy this
56 * The uip-split module uses the uip-fw module (uIP IP packet
80 * full-sized TCP segment it will be split into two segments and
H A Duip-split.c33 * $Id: uip-split.c,v 1.2 2006/06/12 08:00:30 adam Exp $
38 #include "uip-split.h"
53 /* We only try to split maximum sized TCP segments. */ in uip_split_output()
58 /* Split the segment in two. If the original packet length was in uip_split_output()
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/
H A DSConscript3 src = Split("""
34 ipv4_src = Split("""
45 ipv6_src = Split("""
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/
H A DSConscript4 src = Split("""
42 snmp_src = Split("""
51 ppp_src = Split("""
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/core/
H A Dtcp_out.c815 * Split segment on the head of the unsent queue. If return is not
818 * The split is accomplished by creating a new TCP segment and pbuf
819 * which holds the remainder payload after the split. The original
823 * @param pcb the tcp_pcb for which to split the unsent head
824 * @param split the amount of payload to remain in the head
827 tcp_split_unsent_seg(struct tcp_pcb *pcb, u16_t split) in tcp_split_unsent_seg() argument
850 if (split == 0) { in tcp_split_unsent_seg()
851 LWIP_ASSERT("Can't split segment into length 0", 0); in tcp_split_unsent_seg()
855 if (useg->len <= split) { in tcp_split_unsent_seg()
859 LWIP_ASSERT("split <= mss", split <= pcb->mss); in tcp_split_unsent_seg()
[all …]
/nrf52832-nimble/rt-thread/components/lwp/
H A Dlwp_memheap.c164 /* determine if the block needs to be split. */ in rt_lwp_memheap_alloc()
169 /* split the block. */ in rt_lwp_memheap_alloc()
174 ("split: block[0x%08x] nextm[0x%08x] prevm[0x%08x] to new[0x%08x]\n", in rt_lwp_memheap_alloc()
392 /* don't split when there is less than one node space left */ in rt_lwp_memheap_realloc()
405 /* split the block. */ in rt_lwp_memheap_realloc()
410 ("split: block[0x%08x] nextm[0x%08x] prevm[0x%08x] to new[0x%08x]\n", in rt_lwp_memheap_realloc()
448 /* insert the split block to free list */ in rt_lwp_memheap_realloc()
/nrf52832-nimble/rt-thread/src/
H A Dmemheap.c187 /* determine if the block needs to be split. */ in rt_memheap_alloc()
192 /* split the block. */ in rt_memheap_alloc()
197 ("split: block[0x%08x] nextm[0x%08x] prevm[0x%08x] to new[0x%08x]\n", in rt_memheap_alloc()
419 /* don't split when there is less than one node space left */ in rt_memheap_realloc()
432 /* split the block. */ in rt_memheap_realloc()
437 ("split: block[0x%08x] nextm[0x%08x] prevm[0x%08x] to new[0x%08x]\n", in rt_memheap_realloc()
475 /* insert the split block to free list */ in rt_memheap_realloc()
/nrf52832-nimble/rt-thread/tools/
H A Dutils.py42 loc, child = os.path.split(prev)
250 la = ver1.split('.')
251 lb = ver2.split('.')
/nrf52832-nimble/rt-thread/tools/kconfig-frontends/frontends/qconf/
H A Dqconf.cc1274 split = new QSplitter(this); in ConfigSearchWindow()
1275 split->setOrientation(Qt::Vertical); in ConfigSearchWindow()
1276 list = new ConfigView(split, name); in ConfigSearchWindow()
1278 info = new ConfigInfoView(split, name); in ConfigSearchWindow()
1284 layout1->addWidget(split); in ConfigSearchWindow()
1299 QList<int> sizes = configSettings->readSizes("/split", &ok); in ConfigSearchWindow()
1301 split->setSizes(sizes); in ConfigSearchWindow()
1315 configSettings->writeSizes("/split", split->sizes()); in saveSettings()
1413 splitViewAction = new QAction(QPixmap(xpm_split_view), _("Split View"), this); in ConfigMainWindow()
1518 else /*if (listMode == "split")*/ in ConfigMainWindow()
[all …]
/nrf52832-nimble/rt-thread/examples/nanopb/
H A DSConscript5 src = Split('''
/nrf52832-nimble/rt-thread/components/drivers/cputime/
H A DSConscript5 src = Split('''
/nrf52832-nimble/rt-thread/components/utilities/logtrace/
H A DSConscript4 src = Split('''
/nrf52832-nimble/rt-thread/components/drivers/sdio/
H A DSConscript5 src = Split("""
/nrf52832-nimble/rt-thread/components/drivers/i2c/
H A DSConscript5 src = Split("""
/nrf52832-nimble/rt-thread/tools/kconfig-frontends/
H A DSConstruct12 src = Split('''
/nrf52832-nimble/rt-thread/examples/kernel/
H A DSConscript3 src = Split("""

12345