Home
last modified time | relevance | path

Searched full:used (Results 1 – 25 of 1531) sorted by relevance

12345678910>>...62

/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/test/unit/arch/
H A Dsys_arch.c13 * 3. The name of the author may not be used to endorse or promote products
221 mbox->used = 0; in sys_mbox_new()
255 LWIP_ASSERT("q->used >= 0", q->used >= 0); in sys_mbox_post()
258 LWIP_ASSERT("mbox already full", q->used < q->size); in sys_mbox_post()
266 q->used++; in sys_mbox_post()
275 LWIP_ASSERT("q->used >= 0", q->used >= 0); in sys_mbox_trypost()
277 LWIP_ASSERT("q->used <= q->size", q->used <= q->size); in sys_mbox_trypost()
279 if (q->used == q->size) { in sys_mbox_trypost()
300 LWIP_ASSERT("q->used >= 0", q->used >= 0); in sys_arch_mbox_fetch()
303 if (q->used == 0) { in sys_arch_mbox_fetch()
[all …]
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/test/unit/core/
H A Dtest_mem.c40 fail_unless(lwip_stats.mem.used == 0); in START_TEST()
44 fail_unless(lwip_stats.mem.used >= SIZE1); in START_TEST()
45 s1 = lwip_stats.mem.used; in START_TEST()
49 fail_unless(lwip_stats.mem.used >= SIZE2 + s1); in START_TEST()
50 s2 = lwip_stats.mem.used; in START_TEST()
55 fail_unless(lwip_stats.mem.used <= s2 - SIZE2); in START_TEST()
58 fail_unless(lwip_stats.mem.used == 0); in START_TEST()
100 fail_unless(lwip_stats.mem.used == 0); in START_TEST()
105 fail_unless(lwip_stats.mem.used == 0); in START_TEST()
107 fail_unless(lwip_stats.mem.used == 0); in START_TEST()
[all …]
/nrf52832-nimble/rt-thread/documentation/
H A DDoxyfile3 # This file describes the settings to be used by the documentation system
17 # This tag specifies the encoding used for all characters in the config file
18 # that follow. The default is UTF-8 which is also the encoding used for all
31 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
33 # if some version control system is used.
50 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
53 # where doxygen was started. If left blank the current directory will be used.
66 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
94 # that is used to form the text in various listings. Each string
97 # used as the annotated text. Otherwise, the brief description is used as-is.
[all …]
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/core/
H A Dmem.c35 * 3. The name of the author may not be used to endorse or promote products
156 /** mem_init is not used when using pools instead of a heap or using
164 /** mem_trim is not used when using pools instead of a heap or using
217 MEM_STATS_INC_USED_LOCKED(used, size); in mem_malloc()
234 MEM_STATS_DEC_USED_LOCKED(used, *(mem_size_t *)rmem); in mem_free()
291 MEM_STATS_INC_USED_LOCKED(used, element->size); in mem_malloc()
323 MEM_STATS_DEC_USED_LOCKED(used, hmem->size); in mem_free()
354 /** 1: this area is used; 0: this area is unused */
355 u8_t used; member
420 /** pointer to the lowest free block, this is used for faster search */
[all …]
H A Dinet_chksum.c28 * 3. The name of the author may not be used to endorse or promote products
299 * Calculates the IPv4 pseudo Internet checksum used by TCP and UDP for a pbuf chain.
303 * @param src source ip address (used for checksum of pseudo header)
304 * @param dst destination ip address (used for checksum of pseudo header)
305 * @param proto ip protocol (used for checksum of pseudo header)
306 * @param proto_len length of the ip data part (used for checksum of pseudo header)
332 * Calculates the checksum with IPv6 pseudo header used by TCP and UDP for a pbuf chain.
336 * @param proto ipv6 protocol/next header (used for checksum of pseudo header)
337 * @param proto_len length of the ipv6 payload (used for checksum of pseudo header)
338 * @param src source ipv6 address (used for checksum of pseudo header)
[all …]
/nrf52832-nimble/rt-thread/src/
H A Dmem.c29 * 3. The name of the author may not be used to endorse or promote products
98 /* magic and used flag */
100 rt_uint16_t used; member
163 RT_ASSERT(mem->used == 0); in plug_holes()
168 nmem->used == 0 && in plug_holes()
184 if (pmem != mem && pmem->used == 0) in plug_holes()
238 mem->used = 0; in rt_system_heap_init()
246 heap_end->used = 1; in rt_system_heap_init()
311 if ((!mem->used) && (mem->next - (ptr + SIZEOF_STRUCT_MEM)) >= size) in rt_malloc()
313 /* mem is not used and at least perfect fit is possible: in rt_malloc()
[all …]
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/core/
H A Dmem.c35 * 3. The name of the author may not be used to endorse or promote products
71 /** mem_init is not used when using pools instead of a heap or using
79 /** mem_trim is not used when using pools instead of a heap or using
132 MEM_STATS_INC_USED(used, size); in mem_malloc()
149 MEM_STATS_DEC_USED(used, *(mem_size_t*)rmem); in mem_free()
206 MEM_STATS_INC_USED(used, element->size); in mem_malloc()
238 MEM_STATS_DEC_USED(used, hmem->size); in mem_free()
269 /** 1: this area is used; 0: this area is unused */
270 u8_t used; member
298 /** pointer to the lowest free block, this is used for faster search */
[all …]
H A Dinet_chksum.c28 * 3. The name of the author may not be used to endorse or promote products
299 * Calculates the IPv4 pseudo Internet checksum used by TCP and UDP for a pbuf chain.
303 * @param src source ip address (used for checksum of pseudo header)
304 * @param dst destination ip address (used for checksum of pseudo header)
305 * @param proto ip protocol (used for checksum of pseudo header)
306 * @param proto_len length of the ip data part (used for checksum of pseudo header)
332 * Calculates the checksum with IPv6 pseudo header used by TCP and UDP for a pbuf chain.
336 * @param proto ipv6 protocol/next header (used for checksum of pseudo header)
337 * @param proto_len length of the ipv6 payload (used for checksum of pseudo header)
338 * @param src source ipv6 address (used for checksum of pseudo header)
[all …]
/nrf52832-nimble/packages/NimBLE-latest/nimble/controller/
H A Dsyscfg.yml22 Used by package management system to include BLE hardware
28 Used by BSP packages to configure LP clock for controller.
33 Used to enable hardware white list
125 Used to set the initial maximum transmit PDU size in a
146 This is the minimum number of "slots" for WindowOffset value used for
188 used to turn on/off the clock used for the radio (assuming
197 # These feature definitions are used to inform a host or other controller
235 size of tx/rx pdu's used in a connection. This option has only
241 This option is used to enable/disable LL privacy.
246 This option is used to enable/disable the extended scanner filter
[all …]
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/test/unit/core/
H A Dtest_mem.c38 fail_unless(lwip_stats.mem.used == 0); in START_TEST()
42 fail_unless(lwip_stats.mem.used >= SIZE1); in START_TEST()
43 s1 = lwip_stats.mem.used; in START_TEST()
47 fail_unless(lwip_stats.mem.used >= SIZE2 + s1); in START_TEST()
48 s2 = lwip_stats.mem.used; in START_TEST()
53 fail_unless(lwip_stats.mem.used <= s2 - SIZE2); in START_TEST()
56 fail_unless(lwip_stats.mem.used == 0); in START_TEST()
98 fail_unless(lwip_stats.mem.used == 0); in START_TEST()
103 fail_unless(lwip_stats.mem.used == 0); in START_TEST()
105 fail_unless(lwip_stats.mem.used == 0); in START_TEST()
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/core/
H A Dmem.c35 * 3. The name of the author may not be used to endorse or promote products
161 /** 1: this area is used; 0: this area is unused */
162 u8_t used; member
190 /** pointer to the lowest free block, this is used for faster search */
243 LWIP_ASSERT("plug_holes: mem->used == 0", mem->used == 0); in plug_holes()
249 if (mem != nmem && nmem->used == 0 && (u8_t *)nmem != (u8_t *)ram_end) { in plug_holes()
260 if (pmem != mem && pmem->used == 0) { in plug_holes()
287 mem->used = 0; in mem_init()
290 ram_end->used = 1; in mem_init()
338 /* ... which has to be in a used state ... */ in mem_free()
[all …]
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/doc/doxygen/
H A Dlwip.Doxyfile3 # This file describes the settings to be used by the documentation system
20 # This tag specifies the encoding used for all characters in the config file
21 # that follow. The default is UTF-8 which is also the encoding used for all text
31 # project for which the documentation is generated. This name is used in the
37 # The PROJECT_NUMBER tag can be used to enter a project or revision number. This
39 # control system is used.
56 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
59 # left blank the current directory will be used.
75 # characters will be escaped, for example _xE3_x81_x84 will be used for Unicode
81 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
[all …]
H A Dlwip.Doxyfile.cmake.in3 # This file describes the settings to be used by the documentation system
20 # This tag specifies the encoding used for all characters in the config file
21 # that follow. The default is UTF-8 which is also the encoding used for all text
31 # project for which the documentation is generated. This name is used in the
37 # The PROJECT_NUMBER tag can be used to enter a project or revision number. This
39 # control system is used.
56 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
59 # left blank the current directory will be used.
75 # characters will be escaped, for example _xE3_x81_x84 will be used for Unicode
81 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
[all …]
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/doc/doxygen/
H A Dlwip.Doxyfile3 # This file describes the settings to be used by the documentation system
20 # This tag specifies the encoding used for all characters in the config file
21 # that follow. The default is UTF-8 which is also the encoding used for all text
31 # project for which the documentation is generated. This name is used in the
37 # The PROJECT_NUMBER tag can be used to enter a project or revision number. This
39 # control system is used.
56 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
59 # left blank the current directory will be used.
75 # characters will be escaped, for example _xE3_x81_x84 will be used for Unicode
81 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
[all …]
/nrf52832-nimble/packages/NimBLE-latest/docs/
H A Ddoxygen.xml21 # This file describes the settings to be used by the documentation system
38 # This tag specifies the encoding used for all characters in the config file
39 # that follow. The default is UTF-8 which is also the encoding used for all text
49 # project for which the documentation is generated. This name is used in the
55 # The PROJECT_NUMBER tag can be used to enter a project or revision number. This
57 # control system is used.
74 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
77 # left blank the current directory will be used.
93 # characters will be escaped, for example _xE3_x81_x84 will be used for Unicode
99 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
[all …]
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/include/lwip/
H A Dapi_msg.h13 * 3. The name of the author may not be used to endorse or promote products
60 for a netconn in another thread context (mainly used to process netconns
64 which is used to block the application thread until the function finished. */
68 /** Depending on the executed function, one of these union members is used */
70 /** used for do_send */
72 /** used for do_newconn */
76 /** used for do_bind and do_connect */
81 /** used for do_getaddr */
87 /** used for do_write */
96 /** used for do_recv */
[all …]
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/test/unit/core/
H A Dtest_mem.c42 fail_unless(lwip_stats.mem.used == 0); in START_TEST()
46 fail_unless(lwip_stats.mem.used >= SIZE1); in START_TEST()
47 s1 = lwip_stats.mem.used; in START_TEST()
51 fail_unless(lwip_stats.mem.used >= SIZE2 + s1); in START_TEST()
52 s2 = lwip_stats.mem.used; in START_TEST()
57 fail_unless(lwip_stats.mem.used <= s2 - SIZE2); in START_TEST()
60 fail_unless(lwip_stats.mem.used == 0); in START_TEST()
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/include/lwip/priv/
H A Dapi_msg.h18 * 3. The name of the author may not be used to endorse or promote products
77 for a netconn in another thread context (mainly used to process netconns
81 which is used to block the application thread until the function finished. */
85 /** Depending on the executed function, one of these union members is used */
87 /** used for lwip_netconn_do_send */
89 /** used for lwip_netconn_do_newconn */
93 /** used for lwip_netconn_do_bind and lwip_netconn_do_connect */
98 /** used for lwip_netconn_do_getaddr */
104 /** used for lwip_netconn_do_write */
113 /** used for lwip_netconn_do_recv */
[all …]
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/lwip/priv/
H A Dapi_msg.h18 * 3. The name of the author may not be used to endorse or promote products
77 for a netconn in another thread context (mainly used to process netconns
81 which is used to block the application thread until the function finished. */
85 /** Depending on the executed function, one of these union members is used */
87 /** used for lwip_netconn_do_send */
89 /** used for lwip_netconn_do_newconn */
93 /** used for lwip_netconn_do_bind and lwip_netconn_do_connect */
99 /** used for lwip_netconn_do_getaddr */
105 /** used for lwip_netconn_do_write */
122 /** used for lwip_netconn_do_recv */
[all …]
/nrf52832-nimble/rt-thread/components/net/uip/uip/
H A Dpsock.h14 * may be used to endorse or promote products derived from this software
59 * used with extreme care.
68 * in which the protosocket is used. Similarly, the protosocket protothread can
91 * no user-visible elements, but is used through the functions
113 char *bufptr; /* Pointer to the buffer used for buffering
131 * protosocket is used. The initialization also specifies the input buffer
151 * must come before other protosocket calls in the function it is used.
204 * protosocket. This can be used to dynamically generate
289 * almost always be used in conjunction with PSOCK_CLOSE().
317 * This macro is used for declaring that the protosocket's protothread
[all …]
/nrf52832-nimble/rt-thread/components/dfs/filesystems/jffs2/cyg/compress/src/
H A Ddeflate.h6 /* WARNING: this file should *not* be used by applications. It is
19 trailer creation by deflate(). NO_GZIP would be used to avoid linking in
43 /* number of codes used to transfer the bit lengths */
91 * save space in the various tables. IPos is used only for parameter passing.
107 /* used by deflate.c: */
125 * is directly used as sliding window.
162 * are discarded. This is used in the lazy match evaluation.
173 * smaller than this value. This mechanism is used only for compression
179 * max_insert_length is used only for compression levels <= 3.
190 /* used by trees.c: */
[all …]
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/netif/
H A Dbridgeif_fdb.c18 * 3. The name of the author may not be used to endorse or promote products
55 u8_t used; member
84 if (e->used && e->ts) { in bridgeif_fdb_update_src()
101 if (!e->used || !e->ts) { in bridgeif_fdb_update_src()
104 if (!e->used || !e->ts) { in bridgeif_fdb_update_src()
111 e->used = 1; in bridgeif_fdb_update_src()
136 if (e->used && e->ts) { in bridgeif_fdb_get_dst_ports()
164 if (e->used && e->ts) { in bridgeif_fdb_age_one_second()
167 if (e->used && e->ts) { in bridgeif_fdb_age_one_second()
169 e->used = 0; in bridgeif_fdb_age_one_second()
H A Dlowpan6_ble.c20 * 3. The name of the author may not be used to endorse or promote products
45 * so most of the code is re-used.
100 * which is used within IPv6 communication
146 /** Set an address used for stateful compression.
172 /** Set the local address used for stateful compression.
178 /* netif not used for now, the address is stored globally... */ in rfc7668_set_local_addr_eui64()
183 /** Set the local address used for stateful compression.
189 /* netif not used for now, the address is stored globally... */ in rfc7668_set_local_addr_mac48()
194 /** Set the peer address used for stateful compression.
200 /* netif not used for now, the address is stored globally... */ in rfc7668_set_peer_addr_eui64()
[all …]
/nrf52832-nimble/packages/NimBLE-latest/nimble/transport/uart/
H A Dsyscfg.yml40 This count is used in creating a pool of elements used by the
55 description: 'Number of data bits used for HCI uart interface'
58 description: 'Number of stop bits used for HCI uart interface'
61 description: 'Parity used for HCI uart interface'
64 description: 'Flow control used for HCI uart interface'
/nrf52832-nimble/rt-thread/components/dfs/filesystems/jffs2/cyg/compress/include/
H A Dzlib.h26 The data format used by the zlib library is described by RFCs (Request for
56 The compressed data format used by default by the in-memory functions is
94 alloc_func zalloc; /* used to allocate the internal state */
95 free_func zfree; /* used to free the internal state */
112 int xflags; /* extra flags (not used when writing a gzip file) */
122 int done; /* true when done reading gzip header (not used
141 If zlib is used in a multi-threaded application, zalloc and zfree must be
153 The fields total_in and total_out can be used for statistics or
180 * values are errors, positive values are used for special but normal events.
214 If the first character differs, the library code actually used is
[all …]

12345678910>>...62