Home
last modified time | relevance | path

Searched refs:m (Results 1 – 13 of 13) sorted by relevance

/lib/liblwip/src/include/lwip/
Dtcpip.h62 #define TCPIP_APIMSG(m) tcpip_apimsg_lock(m) argument
63 #define TCPIP_APIMSG_ACK(m) argument
64 #define TCPIP_NETIFAPI(m) tcpip_netifapi_lock(m) argument
65 #define TCPIP_NETIFAPI_ACK(m) argument
69 #define TCPIP_APIMSG(m) tcpip_apimsg(m)
70 #define TCPIP_APIMSG_ACK(m) sys_sem_signal(&m->conn->op_completed)
71 #define TCPIP_NETIFAPI(m) tcpip_netifapi(m)
72 #define TCPIP_NETIFAPI_ACK(m) sys_sem_signal(&m->sem)
110 err_t mem_free_callback(void *m);
Dsys.h62 #define sys_mbox_new(m, s) ERR_OK argument
63 #define sys_mbox_fetch(m,d) argument
64 #define sys_mbox_tryfetch(m,d) argument
65 #define sys_mbox_post(m,d) argument
66 #define sys_mbox_trypost(m,d) argument
67 #define sys_mbox_free(m) argument
68 #define sys_mbox_valid(m) argument
69 #define sys_mbox_set_invalid(m) argument
/sys/kern/
Dktime.c63 uint64_t m; in KTime_Fixup() local
67 for (m = 0; m < tm->month; m++) { in KTime_Fixup()
68 yday += KTimeDaysInMonth(tm->year, m); in KTime_Fixup()
80 uint64_t y, m; in KTime_ToEpoch() local
92 for (m = 0; m < tm->month; m++) { in KTime_ToEpoch()
93 yday += KTimeDaysInMonth(tm->year, m); in KTime_ToEpoch()
113 uint64_t y, m; in KTime_FromEpoch() local
150 for (m = 0; ; m++) { in KTime_FromEpoch()
151 uint64_t daysOfMonth = KTimeDaysInMonth(tm->year, m); in KTime_FromEpoch()
155 tm->month = m; in KTime_FromEpoch()
/lib/libc/
Dtime.c112 uint64_t y, m; in gmtime_r() local
149 for (m = 0; ; m++) { in gmtime_r()
150 uint64_t daysOfMonth = Time_DaysInMonth(tm->tm_year + 1900, m); in gmtime_r()
154 tm->tm_mon = m; in gmtime_r()
189 uint64_t y, m; in mktime() local
200 for (m = 0; m < tm->tm_mon; m++) { in mktime()
201 yday += Time_DaysInMonth(tm->tm_year + 1900, m); in mktime()
/lib/liblwip/src/core/
Dmemp.c220 u8_t *m; in memp_overflow_check_element_overflow() local
222 m = (u8_t*)p + MEMP_SIZE + memp_sizes[memp_type]; in memp_overflow_check_element_overflow()
224 if (m[k] != 0xcd) { in memp_overflow_check_element_overflow()
253 u8_t *m; in memp_overflow_check_element_underflow() local
255 m = (u8_t*)p + MEMP_SIZE - MEMP_SANITY_REGION_BEFORE_ALIGNED; in memp_overflow_check_element_underflow()
257 if (m[k] != 0xcd) { in memp_overflow_check_element_underflow()
312 u8_t *m; in memp_overflow_init() local
319 m = (u8_t*)p + MEMP_SIZE - MEMP_SANITY_REGION_BEFORE_ALIGNED; in memp_overflow_init()
320 memset(m, 0xcd, MEMP_SANITY_REGION_BEFORE_ALIGNED); in memp_overflow_init()
323 m = (u8_t*)p + MEMP_SIZE + memp_sizes[i]; in memp_overflow_init()
[all …]
Dtcp_in.c855 s16_t m; in tcp_receive() local
1094 m = (s16_t)(tcp_ticks - pcb->rttest); in tcp_receive()
1097 m, m * TCP_SLOW_INTERVAL)); in tcp_receive()
1100 m = m - (pcb->sa >> 3); in tcp_receive()
1101 pcb->sa += m; in tcp_receive()
1102 if (m < 0) { in tcp_receive()
1103 m = -m; in tcp_receive()
1105 m = m - (pcb->sv >> 2); in tcp_receive()
1106 pcb->sv += m; in tcp_receive()
/lib/liblwip/src/netif/ppp/
Dppp_impl.h217 #define PRINTMSG(m, l) { m[l] = '\0'; LWIP_DEBUGF(LOG_INFO, ("Remote message: %s\n", m)); } argument
219 #define PRINTMSG(m, l) argument
Dppp.c1418 sifaddr( int pd, u32_t o, u32_t h, u32_t m, u32_t ns1, u32_t ns2) in sifaddr() argument
1429 SMEMCPY(&pc->addrs.netmask, &m, sizeof(m)); in sifaddr()
/lib/liblwip/src/api/
Dtcpip.c506 mem_free_callback(void *m) in mem_free_callback() argument
508 return tcpip_callback_with_block(mem_free, m, 0); in mem_free_callback()
/lib/liblwip/doc/
Dsavannah.txt91 cvs commit -R -m "Merged from DEVEL to main."
/
DSConstruct204 … newfs = Builder(action = 'build/tools/newfs_o2fs/newfs_o2fs -s $BOOTDISK_SIZE -m $SOURCE $TARGET')
/docs/
DDoxyfile956 # *.inc, *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C
987 *.m \
/lib/liblwip/
DCHANGELOG1486 in lwipopts.h or use pbuf_free_callback(p)/mem_free_callback(m) to free pbufs
2578 cases just assert if it fails as I'm not sure how to fix them, but