/nrf52832-nimble/rt-thread/tools/kconfig-frontends/libs/parser/ |
H A D | expr.c | 15 static struct expr *expr_eliminate_yn(struct expr *e); 19 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_symbol() local 20 e->type = E_SYMBOL; in expr_alloc_symbol() 21 e->left.sym = sym; in expr_alloc_symbol() 22 return e; in expr_alloc_symbol() 27 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_one() local 28 e->type = type; in expr_alloc_one() 29 e->left.expr = ce; in expr_alloc_one() 30 return e; in expr_alloc_one() 35 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_two() local [all …]
|
H A D | expr.h | 51 #define expr_list_for_each_sym(l, e, s) \ argument 52 for (e = (l); e && (s = e->right.sym); e = e->left.expr) 211 void expr_free(struct expr *e); 213 tristate expr_calc_value(struct expr *e); 214 struct expr *expr_trans_bool(struct expr *e); 215 struct expr *expr_eliminate_dups(struct expr *e); 216 struct expr *expr_transform(struct expr *e); 219 struct expr *expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym); 222 void expr_fprint(struct expr *e, FILE *out); 224 void expr_gstr_print(struct expr *e, struct gstr *gs); [all …]
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/netif/ppp/polarssl/ |
H A D | sha1.c | 88 unsigned long temp, W[16], A, B, C, D, E; in sha1_process() local 116 #define P(a,b,c,d,e,x) \ in sha1_process() argument 118 e += S(a,5) + F(b,c,d) + K + x; b = S(b,30); \ in sha1_process() 125 E = ctx->state[4]; in sha1_process() 130 P( A, B, C, D, E, W[0] ); in sha1_process() 131 P( E, A, B, C, D, W[1] ); in sha1_process() 132 P( D, E, A, B, C, W[2] ); in sha1_process() 133 P( C, D, E, A, B, W[3] ); in sha1_process() 134 P( B, C, D, E, A, W[4] ); in sha1_process() 135 P( A, B, C, D, E, W[5] ); in sha1_process() [all …]
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/netif/ppp/polarssl/ |
H A D | sha1.c | 88 unsigned long temp, W[16], A, B, C, D, E; in sha1_process() local 116 #define P(a,b,c,d,e,x) \ in sha1_process() argument 118 e += S(a,5) + F(b,c,d) + K + x; b = S(b,30); \ in sha1_process() 125 E = ctx->state[4]; in sha1_process() 130 P( A, B, C, D, E, W[0] ); in sha1_process() 131 P( E, A, B, C, D, W[1] ); in sha1_process() 132 P( D, E, A, B, C, W[2] ); in sha1_process() 133 P( C, D, E, A, B, W[3] ); in sha1_process() 134 P( B, C, D, E, A, W[4] ); in sha1_process() 135 P( A, B, C, D, E, W[5] ); in sha1_process() [all …]
|
/nrf52832-nimble/rt-thread/components/dfs/filesystems/uffs/src/uffs/ |
H A D | uffs_pool.c | 151 uffs_PoolEntry *e; in uffs_PoolGet() local 156 e = pool->free_list; in uffs_PoolGet() 157 if (e) in uffs_PoolGet() 158 pool->free_list = e->next; in uffs_PoolGet() 160 return e; in uffs_PoolGet() 172 uffs_PoolEntry *e; in uffs_PoolGetLocked() local 178 e = pool->free_list; in uffs_PoolGetLocked() 179 if (e) in uffs_PoolGetLocked() 180 pool->free_list = e->next; in uffs_PoolGetLocked() 183 return e; in uffs_PoolGetLocked() [all …]
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/netif/ |
H A D | bridgeif_fdb.c | 83 bridgeif_dfdb_entry_t *e = &fdb->fdb[i]; in bridgeif_fdb_update_src() local 84 if (e->used && e->ts) { in bridgeif_fdb_update_src() 85 if (!memcmp(&e->addr, src_addr, sizeof(struct eth_addr))) { in bridgeif_fdb_update_src() 90 e->ts = BR_FDB_TIMEOUT_SEC; in bridgeif_fdb_update_src() 91 e->port = port_idx; in bridgeif_fdb_update_src() 100 bridgeif_dfdb_entry_t *e = &fdb->fdb[i]; in bridgeif_fdb_update_src() local 101 if (!e->used || !e->ts) { in bridgeif_fdb_update_src() 104 if (!e->used || !e->ts) { in bridgeif_fdb_update_src() 108 memcpy(&e->addr, src_addr, sizeof(struct eth_addr)); in bridgeif_fdb_update_src() 109 e->ts = BR_FDB_TIMEOUT_SEC; in bridgeif_fdb_update_src() [all …]
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/include/netif/ppp/ |
H A D | eui64.h | 56 #define eui64_iszero(e) (((e).e32[0] | (e).e32[1]) == 0) argument 57 #define eui64_equals(e, o) (((e).e32[0] == (o).e32[0]) && \ argument 58 ((e).e32[1] == (o).e32[1])) 59 #define eui64_zero(e) (e).e32[0] = (e).e32[1] = 0; argument 63 #define eui64_magic(e) do { \ argument 64 (e).e32[0] = magic(); \ 65 (e).e32[1] = magic(); \ 66 (e).e8[0] &= ~2; \ 85 #define eui64_set32(e, l) do { \ argument 86 (e).e32[0] = 0; \ [all …]
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/netif/ppp/ |
H A D | eui64.h | 60 #define eui64_iszero(e) (((e).e32[0] | (e).e32[1]) == 0) argument 61 #define eui64_equals(e, o) (((e).e32[0] == (o).e32[0]) && \ argument 62 ((e).e32[1] == (o).e32[1])) 63 #define eui64_zero(e) (e).e32[0] = (e).e32[1] = 0; argument 67 #define eui64_magic(e) do { \ argument 68 (e).e32[0] = magic(); \ 69 (e).e32[1] = magic(); \ 70 (e).e8[0] &= ~2; \ 89 #define eui64_set32(e, l) do { \ argument 90 (e).e32[0] = 0; \ [all …]
|
/nrf52832-nimble/nordic/nrfx/templates/nRF51/ |
H A D | nrfx_config.h | 8 // <e> NRFX_ADC_ENABLED - nrfx_adc - ADC peripheral driver 24 // <e> NRFX_ADC_CONFIG_LOG_ENABLED - Enables logging in the module. 73 // </e> 75 // </e> 77 // <e> NRFX_CLOCK_ENABLED - nrfx_clock - CLOCK peripheral driver 109 // <e> NRFX_CLOCK_CONFIG_LOG_ENABLED - Enables logging in the module. 158 // </e> 160 // </e> 162 // <e> NRFX_GPIOTE_ENABLED - nrfx_gpiote - GPIOTE peripheral driver 183 // <e> NRFX_GPIOTE_CONFIG_LOG_ENABLED - Enables logging in the module. [all …]
|
/nrf52832-nimble/nordic/nrfx/templates/nRF52810/ |
H A D | nrfx_config.h | 8 // <e> NRFX_CLOCK_ENABLED - nrfx_clock - CLOCK peripheral driver 46 // <e> NRFX_CLOCK_CONFIG_LOG_ENABLED - Enables logging in the module. 95 // </e> 97 // </e> 99 // <e> NRFX_COMP_ENABLED - nrfx_comp - COMP peripheral driver 185 // <e> NRFX_COMP_CONFIG_LOG_ENABLED - Enables logging in the module. 234 // </e> 236 // </e> 238 // <e> NRFX_GPIOTE_ENABLED - nrfx_gpiote - GPIOTE peripheral driver 263 // <e> NRFX_GPIOTE_CONFIG_LOG_ENABLED - Enables logging in the module. [all …]
|
/nrf52832-nimble/nordic/nrfx/templates/nRF52840/ |
H A D | nrfx_config.h | 8 // <e> NRFX_CLOCK_ENABLED - nrfx_clock - CLOCK peripheral driver 46 // <e> NRFX_CLOCK_CONFIG_LOG_ENABLED - Enables logging in the module. 95 // </e> 97 // </e> 99 // <e> NRFX_COMP_ENABLED - nrfx_comp - COMP peripheral driver 185 // <e> NRFX_COMP_CONFIG_LOG_ENABLED - Enables logging in the module. 234 // </e> 236 // </e> 238 // <e> NRFX_GPIOTE_ENABLED - nrfx_gpiote - GPIOTE peripheral driver 263 // <e> NRFX_GPIOTE_CONFIG_LOG_ENABLED - Enables logging in the module. [all …]
|
/nrf52832-nimble/rt-thread/tools/kconfig-frontends/scripts/.autostuff/scripts/ |
H A D | depcomp | 65 */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;; 74 base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'` 98 { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" 99 sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile" 225 # The second -e expression handles DOS-style file names with drive 227 sed -e 's/^[^:]*: / /' \ 228 -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" 242 | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ 243 | sed -e 's/$/ :/' >> "$depfile" 276 | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \ [all …]
|
/nrf52832-nimble/drivers/ |
H A D | nrfx_config.h | 8 // <e> NRFX_CLOCK_ENABLED - nrfx_clock - CLOCK peripheral driver 46 // <e> NRFX_CLOCK_CONFIG_LOG_ENABLED - Enables logging in the module. 95 // </e> 97 // </e> 99 // <e> NRFX_COMP_ENABLED - nrfx_comp - COMP peripheral driver 185 // <e> NRFX_COMP_CONFIG_LOG_ENABLED - Enables logging in the module. 234 // </e> 236 // </e> 238 // <e> NRFX_GPIOTE_ENABLED - nrfx_gpiote - GPIOTE peripheral driver 263 // <e> NRFX_GPIOTE_CONFIG_LOG_ENABLED - Enables logging in the module. [all …]
|
/nrf52832-nimble/nordic/nrfx/templates/nRF52832/ |
H A D | nrfx_config.h | 8 // <e> NRFX_CLOCK_ENABLED - nrfx_clock - CLOCK peripheral driver 46 // <e> NRFX_CLOCK_CONFIG_LOG_ENABLED - Enables logging in the module. 95 // </e> 97 // </e> 99 // <e> NRFX_COMP_ENABLED - nrfx_comp - COMP peripheral driver 185 // <e> NRFX_COMP_CONFIG_LOG_ENABLED - Enables logging in the module. 234 // </e> 236 // </e> 238 // <e> NRFX_GPIOTE_ENABLED - nrfx_gpiote - GPIOTE peripheral driver 263 // <e> NRFX_GPIOTE_CONFIG_LOG_ENABLED - Enables logging in the module. [all …]
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/netif/ppp/ |
H A D | eui64.c | 47 char *eui64_ntoa(eui64_t e) { in eui64_ntoa() argument 51 e.e8[0], e.e8[1], e.e8[2], e.e8[3], in eui64_ntoa() 52 e.e8[4], e.e8[5], e.e8[6], e.e8[7]); in eui64_ntoa()
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/netif/ppp/ |
H A D | eui64.c | 47 char *eui64_ntoa(eui64_t e) { in eui64_ntoa() argument 51 e.e8[0], e.e8[1], e.e8[2], e.e8[3], in eui64_ntoa() 52 e.e8[4], e.e8[5], e.e8[6], e.e8[7]); in eui64_ntoa()
|
/nrf52832-nimble/nordic/nrfx/templates/nRF9160/ |
H A D | nrfx_config.h | 77 // <e> NRFX_CLOCK_ENABLED - nrfx_clock - CLOCK peripheral driver. 109 // <e> NRFX_CLOCK_CONFIG_LOG_ENABLED - Enables logging in the module. 158 // </e> 160 // </e> 162 // <e> NRFX_DPPI_ENABLED - nrfx_dppi - DPPI allocator. 167 // <e> NRFX_DPPI_CONFIG_LOG_ENABLED - Enables logging in the module. 216 // </e> 218 // </e> 220 // <e> NRFX_GPIOTE_ENABLED - nrfx_gpiote - GPIOTE peripheral driver. 245 // <e> NRFX_GPIOTE_CONFIG_LOG_ENABLED - Enables logging in the module. [all …]
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/pts/tpg/ |
H A D | 94654-20170317-085122560.tpg | 14 M]X6NG8^EC)N?AH+3[\3SG''R3(?WRGF0NZ#,_4%*E)&>&9R)5[F0OM$A0Y.; 17 MGZT#BI_?NH.HFKN/E?B#&*\.!<2?KFV9BD>%4ZV$FK^(F[P B/[TU86=H%S^ 30 MAY^ (+Y+V8GD:B</')R,'%225'-E,!4W[\60BHNOAZ$,/R>'!S H%G*;=[-\ 34 M3X-@G;H%E[2$DL$P-?W&"JI0-EV0AUP(\>] XIW!BI6DO7I9T33VE._FJ(*_ 35 MKQ6$@E,QFO?! P_#OYFAJ_:"JEF6?]O2PM3:)3"+BYBAK :/H:SLBX.NP<W# 39 MH(=0E:GW!3:0E_/T4ZF!M!D-F1F7NI*^QP;A%%V8M*U:R59]QE^+$NONY](% 43 MY@*/M()=CJ*L4NR5D-+)!="N< ")5YK:G;!7WV,:E?/@I?)*ABQ;B[J,>XM. 53 M=*"27=K8$<H/QY[AXHB>39&:(YNN@Z VJQCV=M VOMJ:E/XOE(L[GZ4;QT"H 59 MO/6S_192P8VR8:J(&-:^?IZ-Y$6V?A?)0UZ,E%:H/YT@L%'%'@W#Q,7V[)^$ 68 MDXN2D@L"PEG3X\S?#I9!&(61@+:/6K0YEXK-.ODV/_?'<;&3^)J!2E##A^,3 [all …]
|
/nrf52832-nimble/rt-thread/components/net/uip/uip/ |
H A D | uip-neighbor.c | 135 struct neighbor_entry *e; in uip_neighbor_update() local 137 e = find_entry(ipaddr); in uip_neighbor_update() 138 if(e != NULL) { in uip_neighbor_update() 139 e->time = 0; in uip_neighbor_update() 146 struct neighbor_entry *e; in uip_neighbor_lookup() local 148 e = find_entry(ipaddr); in uip_neighbor_lookup() 149 if(e != NULL) { in uip_neighbor_lookup() 151 e->addr.addr.addr[0], e->addr.addr.addr[1], e->addr.addr.addr[2], e->addr.addr.addr[3], in uip_neighbor_lookup() 152 e->addr.addr.addr[4], e->addr.addr.addr[5]);*/ in uip_neighbor_lookup() 154 return &e->addr; in uip_neighbor_lookup()
|
/nrf52832-nimble/rt-thread/libcpu/mips/common/ |
H A D | mips_def.h | 251 * V I R T U A L A D D R E S S D E F I N I T I O N S * 362 * C A C H E I N S T R U C T I O N O P E R A T I O N C O D E S * 408 * P R E F E T C H I N S T R U C T I O N H I N T S * 424 * C P U R E G I S T E R D E F I N I T I O N S * 431 * S O F T W A R E G P R N A M E S * 481 * H A R D W A R E G P R N A M E S * 541 * H A R D W A R E G P R I N D I C E S * 586 * S O F T W A R E G P R M A S K S * 627 * C P 0 R E G I S T E R D E F I N I T I O N S * 650 * I N D E X R E G I S T E R ( 0 ) * [all …]
|
/nrf52832-nimble/packages/NimBLE-latest/porting/npl/riot/include/nimble/ |
H A D | nimble_npl_os.h | 42 event_callback_t e; member 53 struct ble_npl_event e; member 86 event_post(&evq->q, &ev->e.super); in ble_npl_eventq_put() 104 event_cancel(&evq->q, &ev->e.super); in ble_npl_eventq_remove() 110 ev->e.super.handler(&ev->e.super); in ble_npl_event_run() 120 ev->e.super.list_node.next = NULL; in ble_npl_event_init() 121 event_callback_init(&ev->e, (void(*)(void *))fn, ev); in ble_npl_event_init() 128 return (ev->e.super.list_node.next != NULL); in ble_npl_event_is_queued()
|
/nrf52832-nimble/rt-thread/components/net/uip/apps/smtp/ |
H A D | smtp.c | 7 * \defgroup smtp SMTP E-mail sender 11 * the standard way of sending and transfering e-mail on the 14 * out e-mail but has not been extensively tested. 223 * Send an e-mail. 225 * \param to The e-mail address of the receiver of the e-mail. 226 * \param cc The e-mail address of the CC: receivers of the e-mail. 227 * \param from The e-mail address of the sender of the e-mail. 228 * \param subject The subject of the e-mail. 229 * \param msg The actual e-mail message. 230 * \param msglen The length of the e-mail message.
|
/nrf52832-nimble/rt-thread/components/dfs/filesystems/uffs/src/inc/uffs/ |
H A D | uffs_flash.h | 77 #define UFFS_FLASH_HAVE_ERR(e) ((e) < 0) argument 80 # define UFFS_FLASH_IS_BAD_BLOCK(e) \ argument 81 …((e) == UFFS_FLASH_ECC_FAIL || (e) == UFFS_FLASH_ECC_OK || (e) == UFFS_FLASH_BAD_BLK || (e) == UFF… 83 # define UFFS_FLASH_IS_BAD_BLOCK(e) \ 84 ((e) == UFFS_FLASH_ECC_FAIL || (e) == UFFS_FLASH_BAD_BLK || (e) == UFFS_FLASH_CRC_ERR) 101 u16 page_data_size; //!< page data size (physical page data size, e.g. 512) 103 u8 spare_size; //!< page spare size (physical page spare size, e.g. 16) 151 …* #UFFS_FLASH_BAD_BLK: if the block is a bad block (e.g., the bad block mark byte is not … 179 …* #UFFS_FLASH_BAD_BLK: if the block is a bad block (e.g., the bad block mark byte is not …
|
/nrf52832-nimble/packages/NimBLE-latest/ |
H A D | CODING_STANDARDS.md | 56 code blocks, i.e., do: 101 * After a function declaration, the braces should be on a newline, i.e. do: 121 line. i.e.: 142 intend to comment, i.e., do: 196 followed by the '_' character, i.e.: 210 * No spaces after function names when calling a function, i.e, do: 223 * Arguments to function calls should have spaces between the comma, i.e. do: 235 * The function type must be on a line by itself preceding the function, i.e. do: 259 hide or alias the underlying type used (e.g. ```os_time_t```.) Indicate
|
/nrf52832-nimble/rt-thread/libcpu/arm/lpc214x/ |
H A D | start_rvds.S | 93 ;// <e> VPBDIV Setup 103 ;// </e> 120 ;// <e> PLL Setup 127 ;// </e> 137 ;// <e> MAM Setup 147 ;// </e> 160 ;// <e> External Memory Controller (EMC) 163 ;// <e> Bank Configuration 0 (BCFG0) 172 ;// </e> 176 ;// <e> Bank Configuration 1 (BCFG1) [all …]
|