Lines Matching refs:x

153 #define STATS_INC(x) ++lwip_stats.x
154 #define STATS_DEC(x) --lwip_stats.x
155 #define STATS_INC_USED(x, y) do { lwip_stats.x.used += y; \
156 if (lwip_stats.x.max < lwip_stats.x.used) { \
157 lwip_stats.x.max = lwip_stats.x.used; \
162 #define STATS_INC(x)
163 #define STATS_DEC(x)
164 #define STATS_INC_USED(x)
168 #define TCP_STATS_INC(x) STATS_INC(x)
171 #define TCP_STATS_INC(x)
176 #define UDP_STATS_INC(x) STATS_INC(x)
179 #define UDP_STATS_INC(x)
184 #define ICMP_STATS_INC(x) STATS_INC(x)
187 #define ICMP_STATS_INC(x)
192 #define IGMP_STATS_INC(x) STATS_INC(x)
195 #define IGMP_STATS_INC(x)
200 #define IP_STATS_INC(x) STATS_INC(x)
203 #define IP_STATS_INC(x)
208 #define IPFRAG_STATS_INC(x) STATS_INC(x)
211 #define IPFRAG_STATS_INC(x)
216 #define ETHARP_STATS_INC(x) STATS_INC(x)
219 #define ETHARP_STATS_INC(x)
224 #define LINK_STATS_INC(x) STATS_INC(x)
227 #define LINK_STATS_INC(x)
232 #define MEM_STATS_AVAIL(x, y) lwip_stats.mem.x = y
233 #define MEM_STATS_INC(x) STATS_INC(mem.x)
234 #define MEM_STATS_INC_USED(x, y) STATS_INC_USED(mem, y)
235 #define MEM_STATS_DEC_USED(x, y) lwip_stats.mem.x -= y
238 #define MEM_STATS_AVAIL(x, y)
239 #define MEM_STATS_INC(x)
240 #define MEM_STATS_INC_USED(x, y)
241 #define MEM_STATS_DEC_USED(x, y)
246 #define MEMP_STATS_AVAIL(x, i, y) lwip_stats.memp[i].x = y
247 #define MEMP_STATS_INC(x, i) STATS_INC(memp[i].x)
248 #define MEMP_STATS_DEC(x, i) STATS_DEC(memp[i].x)
249 #define MEMP_STATS_INC_USED(x, i) STATS_INC_USED(memp[i], 1)
252 #define MEMP_STATS_AVAIL(x, i, y)
253 #define MEMP_STATS_INC(x, i)
254 #define MEMP_STATS_DEC(x, i)
255 #define MEMP_STATS_INC_USED(x, i)
260 #define SYS_STATS_INC(x) STATS_INC(sys.x)
261 #define SYS_STATS_DEC(x) STATS_DEC(sys.x)
262 #define SYS_STATS_INC_USED(x) STATS_INC_USED(sys.x, 1)
265 #define SYS_STATS_INC(x)
266 #define SYS_STATS_DEC(x)
267 #define SYS_STATS_INC_USED(x)