/nrf52832-nimble/rt-thread/components/utilities/utest/ |
H A D | utest_assert.h | 43 * @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 D | stats.c | 110 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 D | stats.c | 110 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 D | stats.c | 118 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 D | inftrees.c | 42 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 D | mmcsd_card.h | 39 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 D | parse.c | 100 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 D | cmd.h | 34 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 D | finsh.h | 17 #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 D | cmdline.h | 77 #define CHK_ARGC(min, max) \ argument 78 if (argc < min || (max > 0 && argc > max)) \
|
H A D | helper_cmds.c | 618 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 D | tftp_opts.h | 75 * 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 D | mqtt_opts.h | 61 …* 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 D | tftp_opts.h | 74 * 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 D | mqtt_opts.h | 61 …* 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 D | ppp_opts.h | 412 * 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 D | nconf.gui.c | 277 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 D | mdns.txt | 22 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 D | ppp_opts.h | 424 * 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 D | mdns.txt | 22 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 D | kernel.h | 28 #ifndef max 29 #define max(x,y) (x<y?y:x) macro
|
/nrf52832-nimble/packages/NimBLE-latest/ext/tinycrypt/src/ |
H A D | hmac_prng.c | 45 * 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 D | stats.h | 96 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 D | os.h | 31 #ifndef max 32 #define max(a, b) ((a)>(b)?(a):(b)) macro
|
/nrf52832-nimble/rt-thread/libcpu/ppc/ppc405/include/ |
H A D | config.h | 48 #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 */
|