Home
last modified time | relevance | path

Searched full:max (Results 1 – 25 of 246) sorted by relevance

12345678910

/nrf52832-nimble/rt-thread/components/utilities/utest/
H A Dutest_assert.h43 * @macro uassert_in_range if @value is in range of min and max, not assert, means passing.
44 * @macro uassert_not_in_range if @value is not in range of min and max, not assert, means passing.
61 …ssert_in_range(value, min, max) __utest_assert(((value >= min) && (value <= max)), "(" #value … argument
62 …sert_not_in_range(value, min, max) __utest_assert(!((value >= min) && (value <= max)), "(" #value … argument
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/core/
H A Dstats.c110 LWIP_PLATFORM_DIAG(("max: %"MEM_SIZE_F"\n\t", mem->max)); in stats_display_mem()
131 LWIP_PLATFORM_DIAG(("sem.max: %"STAT_COUNTER_F"\n\t", sys->sem.max)); in stats_display_sys()
134 LWIP_PLATFORM_DIAG(("mutex.max: %"STAT_COUNTER_F"\n\t", sys->mutex.max)); in stats_display_sys()
137 LWIP_PLATFORM_DIAG(("mbox.max: %"STAT_COUNTER_F"\n\t", sys->mbox.max)); in stats_display_sys()
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/core/
H A Dstats.c110 LWIP_PLATFORM_DIAG(("max: %"U32_F"\n\t", (u32_t)mem->max)); in stats_display_mem()
131 LWIP_PLATFORM_DIAG(("sem.max: %"U32_F"\n\t", (u32_t)sys->sem.max)); in stats_display_sys()
134 LWIP_PLATFORM_DIAG(("mutex.max: %"U32_F"\n\t", (u32_t)sys->mutex.max)); in stats_display_sys()
137 LWIP_PLATFORM_DIAG(("mbox.max: %"U32_F"\n\t", (u32_t)sys->mbox.max)); in stats_display_sys()
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/core/
H A Dstats.c118 LWIP_PLATFORM_DIAG(("max: %"U32_F"\n\t", (u32_t)mem->max)); in stats_display_mem()
143 LWIP_PLATFORM_DIAG(("sem.max: %"U32_F"\n\t", (u32_t)sys->sem.max)); in stats_display_sys()
146 LWIP_PLATFORM_DIAG(("mutex.max: %"U32_F"\n\t", (u32_t)sys->mutex.max)); in stats_display_sys()
149 LWIP_PLATFORM_DIAG(("mbox.max: %"U32_F"\n\t", (u32_t)sys->mbox.max)); in stats_display_sys()
/nrf52832-nimble/rt-thread/components/dfs/filesystems/jffs2/cyg/compress/src/
H A Dinftrees.c42 unsigned min, max; /* minimum and maximum code lengths */ local
114 for (max = MAXBITS; max >= 1; max--)
115 if (count[max] != 0) break;
116 if (root > max) root = max;
117 if (max == 0) { /* no symbols to code at all */
137 if (left > 0 && (type == CODES || max != 1))
176 all codes of length max, i.e. all codes, have been processed. This
255 if (len == max) break;
271 while (curr + drop < max) {
/nrf52832-nimble/rt-thread/components/drivers/include/drivers/
H A Dmmcsd_card.h39 rt_uint8_t tran_speed; /* max data transfer rate */
41 rt_uint8_t rd_blk_len; /* max read data block length */
49 rt_uint8_t wr_blk_len; /* max wtire data block length */
121 rt_uint32_t enable_timeout_val; /* max enable timeout in msec */
141 rt_uint32_t max_data_rate; /* max data transfer rate */
158 rt_uint32_t hs_max_data_rate; /* max data transfer rate in high speed mode */
/nrf52832-nimble/packages/NimBLE-latest/apps/btshell/src/
H A Dparse.c100 parse_long_bounds(char *sval, long min, long max, int *out_status) in parse_long_bounds() argument
107 lval >= min && lval <= max) { in parse_long_bounds()
118 parse_arg_long_bounds_peek(char *name, long min, long max, int *out_status) in parse_arg_long_bounds_peek() argument
127 return parse_long_bounds(sval, min, max, out_status); in parse_arg_long_bounds_peek()
131 parse_arg_long_bounds(char *name, long min, long max, int *out_status) in parse_arg_long_bounds() argument
140 return parse_long_bounds(sval, min, max, out_status); in parse_arg_long_bounds()
144 parse_arg_long_bounds_dflt(char *name, long min, long max, in parse_arg_long_bounds_dflt() argument
150 val = parse_arg_long_bounds(name, min, max, &rc); in parse_arg_long_bounds_dflt()
162 parse_arg_uint64_bounds(char *name, uint64_t min, uint64_t max, int *out_status) in parse_arg_uint64_bounds() argument
176 lval >= min && lval <= max) { in parse_arg_uint64_bounds()
H A Dcmd.h34 long parse_arg_long_bounds(char *name, long min, long max, int *out_status);
35 long parse_arg_long_bounds_dflt(char *name, long min, long max,
38 uint64_t max, int *out_status);
/nrf52832-nimble/rt-thread/components/finsh/
H A Dfinsh.h17 #define FINSH_NAME_MAX 16 /* max length of identifier */
18 #define FINSH_NODE_MAX 16 /* max number of node */
20 #define FINSH_HEAP_MAX 128 /* max length of heap */
21 #define FINSH_STRING_MAX 128 /* max length of string */
22 #define FINSH_VARIABLE_MAX 8 /* max number of variable */
24 #define FINSH_STACK_MAX 64 /* max stack size */
25 #define FINSH_TEXT_MAX 128 /* max text segment size */
/nrf52832-nimble/rt-thread/components/dfs/filesystems/uffs/src/emu/
H A Dcmdline.h77 #define CHK_ARGC(min, max) \ argument
78 if (argc < min || (max > 0 && argc > max)) \
H A Dhelper_cmds.c618 int i, max; in cmd_wl() local
637 max = -1; in cmd_wl()
644 max = (max == -1 ? n : in cmd_wl()
645 (emu->em_monitor_block[n] > emu->em_monitor_block[max] ? n : max) in cmd_wl()
659 par->end - par->start, max == -1 ? 0 : emu->em_monitor_block[max], max); in cmd_wl()
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/lwip/apps/
H A Dtftp_opts.h75 * Max. number of retries when a file is read from server
89 * Max. length of TFTP filename
96 * Max. length of TFTP mode
H A Dmqtt_opts.h61 …* If one wants to avoid fragmented incoming publish, set length to max incoming topic length + max
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/include/lwip/apps/
H A Dtftp_opts.h74 * Max. number of retries when a file is read from server
88 * Max. length of TFTP filename
95 * Max. length of TFTP mode
H A Dmqtt_opts.h61 …* If one wants to avoid fragmented incoming publish, set length to max incoming topic length + max
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/include/netif/ppp/
H A Dppp_opts.h412 * CHAP_DEFTRANSMITS: max # times to send challenge
435 * EAP_DEFALLOWREQ: max # times to accept requests
450 * EAP_DEFTRANSMITS: max # times to transmit
480 * PPP_MAXIDLEFLAG: Max Xmit idle time (in ms) before resend flag char.
530 * MAXNAMELEN: max length of hostname or name for auth
537 * MAXSECRETLEN: max length of password or secret
/nrf52832-nimble/rt-thread/tools/kconfig-frontends/frontends/nconf/
H A Dnconf.gui.c277 total_width = max(msg_width, btns_width); in btn_dialog()
385 prompt_width = max(prompt_width, len); in dialog_inputbox()
389 prompt_width = max(prompt_width, strlen(title)); in dialog_inputbox()
393 prompt_lines = max(win_lines-6, 0); in dialog_inputbox()
394 prompt_width = max(win_cols-7, 0); in dialog_inputbox()
573 total_cols = max(total_cols, len+2); in show_scroll_win()
583 text_lines = max(win_lines-4, 0); in show_scroll_win()
584 text_cols = max(win_cols-2, 0); in show_scroll_win()
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/doc/
H A Dmdns.txt22 The max number of services supported per netif is defined by MDNS_MAX_SERVICES,
96 Since a hostname struct is used for TXT storage each single item can be max
97 63 bytes long, and the total max length (including length bytes for each
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/netif/ppp/
H A Dppp_opts.h424 * CHAP_DEFTRANSMITS: max # times to send challenge
447 * EAP_DEFALLOWREQ: max # times to accept requests
462 * EAP_DEFTRANSMITS: max # times to transmit
492 * PPP_MAXIDLEFLAG: Max Xmit idle time (in ms) before resend flag char.
542 * MAXNAMELEN: max length of hostname or name for auth
549 * MAXSECRETLEN: max length of password or secret
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/doc/
H A Dmdns.txt22 The max number of services supported per netif is defined by MDNS_MAX_SERVICES,
96 Since a hostname struct is used for TXT storage each single item can be max
97 63 bytes long, and the total max length (including length bytes for each
/nrf52832-nimble/rt-thread/components/dfs/filesystems/jffs2/kernel/linux/
H A Dkernel.h28 #ifndef max
29 #define max(x,y) (x<y?y:x) macro
/nrf52832-nimble/packages/NimBLE-latest/ext/tinycrypt/src/
H A Dhmac_prng.c45 * max bytes in the seed string;
51 * max bytes in the personalization string;
57 * max bytes in the additional_info string;
63 * max number of generates between re-seeds;
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/include/lwip/
H A Dstats.h96 mem_size_t max; member
103 STAT_COUNTER max; member
156 if (lwip_stats.x.max < lwip_stats.x.used) { \
157 lwip_stats.x.max = lwip_stats.x.used; \
/nrf52832-nimble/packages/NimBLE-latest/porting/nimble/include/os/
H A Dos.h31 #ifndef max
32 #define max(a, b) ((a)>(b)?(a):(b)) macro
/nrf52832-nimble/rt-thread/libcpu/ppc/ppc405/include/
H A Dconfig.h48 #define CONFIG_SYS_MAX_FLASH_BANKS 2 /* max number of memory banks */
49 #define CONFIG_SYS_MAX_FLASH_SECT 256 /* max number of sectors on one chip */

12345678910