Home
last modified time | relevance | path

Searched defs:x (Results 1 – 25 of 78) sorted by relevance

1234

/mOS-networking-stack/samples/lighttpd-1.4.32/src/
H A Dbuffer.h70 #define buffer_copy_off_t(x, y) buffer_copy_long(x, y) argument
71 #define buffer_append_off_t(x, y) buffer_append_long(x, y) argument
116 #define BUFFER_APPEND_STRING_CONST(x, y) \ argument
119 #define BUFFER_COPY_STRING_CONST(x, y) \ argument
122 #define BUFFER_APPEND_SLASH(x) \ argument
125 #define CONST_STR_LEN(x) x, x ? sizeof(x) - 1 : 0 argument
126 #define CONST_BUF_LEN(x) x->ptr, x->used ? x->used - 1 : 0 argument
131 #define UNUSED(x) ( (void)(x) ) argument
H A Dmd5.c78 #define F(x, y, z) (((x) & (y)) | ((~x) & (z))) argument
79 #define G(x, y, z) (((x) & (z)) | ((y) & (~z))) argument
80 #define H(x, y, z) ((x) ^ (y) ^ (z)) argument
81 #define I(x, y, z) ((y) ^ ((x) | (~z))) argument
85 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) argument
90 #define FF(a, b, c, d, x, s, ac) { \ argument
95 #define GG(a, b, c, d, x, s, ac) { \ argument
100 #define HH(a, b, c, d, x, s, ac) { \ argument
105 #define II(a, b, c, d, x, s, ac) { \ argument
198 UINT4 a = state[0], b = state[1], c = state[2], d = state[3], x[16]; in li_MD5Transform() local
H A Dplugin.c105 #define PLUGIN_INIT(x)\ in plugins_load() argument
232 #define PLUGIN_TO_SLOT(x, y) \ argument
280 #define PLUGIN_TO_SLOT(x, y) \ in PLUGIN_TO_SLOT() argument
379 #define PLUGIN_TO_SLOT(x, y) \ argument
H A Dplugin.h7 #define SERVER_FUNC(x) \ argument
10 #define CONNECTION_FUNC(x) \ argument
13 #define INIT_FUNC(x) \ argument
H A Dconnections.c689 #define CLEAN(x) \ argument
756 #define CLEAN(x) \ argument
829 #define CLEAN(x) \ argument
861 #define CLEAN(x) \ argument
866 #define CLEAN(x) \ argument
H A Dsys-socket.h13 #define hstrerror(x) "" argument
H A Dsplaytree.h18 #define splaytree_size(x) (((x)==NULL) ? 0 : ((x)->size)) argument
H A Dlighttpd-angel.c30 #define UNUSED(x) ( (void)(x) ) argument
H A Dsettings.h12 #define BV(x) (1 << x) argument
H A Dserver.c211 #define CLEAN(x) \ in server_init() argument
236 #define CLEAN(x) \ in server_init() argument
299 #define CLEAN(x) \ in server_free() argument
360 #define CLEAN(x) \ in server_free() argument
H A Dsplaytree.c166 splay_tree * x; in splaytree_delete() local
H A Dfdevent_select.c111 #define SET(x) \ in fdevent_select_init() argument
H A Dmod_mysql_vhost.c260 #define FOO(x) (s->x->used ? s->x->ptr : NULL) argument
298 #define PATCH(x) \ argument
H A Dfdevent_libmtcp.c133 #define SET(x) \ in fdevent_libmtcp_epoll_init() argument
/mOS-networking-stack/util/include/
H A Dnetlib.h15 #define MAX(x, y) ((x) > (y) ? (x) : (y)) argument
19 #define MIN(x, y) ((x) < (y) ? (x) : (y)) argument
23 #define VERIFY(x) if (!(x)) {fprintf(stderr, "error: FILE:%s LINE:%d FUNC: %s", __FILE__, __LINE__,… argument
27 #define FREE(x) if (x) {free(x); (x) = NULL;} argument
/mOS-networking-stack/core/src/include/bpf/
H A Dsfbpf.h76 #define SFBPF_WORDALIGN(x) (((x)+(SFBPF_ALIGNMENT-1))&~(SFBPF_ALIGNMENT-1)) argument
81 #define ISSET_BPFFILTER(x) (x.bf_insns) argument
82 #define CLR_BPFFILTER(x) x.bf_insns = 0 argument
83 #define SET_BPFFILTER(x, y) sfbpf_compile(ETH_FRAME_LEN, DLT_EN10MB, x, y, 1, 0) argument
84 #define EVAL_BPFFILTER(x, y, z) sfbpf_filter(x.bf_insns, y, z, z) argument
H A Dsfbpf-int.h42 #define strlcpy(x, y, z) \ argument
/mOS-networking-stack/util/
H A Dhttp_parsing.c10 #define SPACE_OR_TAB(x) ((x) == ' ' || (x) == '\t') argument
11 #define CR_OR_NEWLINE(x) ((x) == '\r' || (x) == '\n') argument
/mOS-networking-stack/core/src/
H A Dutil.c338 # define XXH_rotl32(x,r) _rotl(x,r) argument
339 # define XXH_rotl64(x,r) _rotl64(x,r) argument
341 # define XXH_rotl32(x,r) ((x << r) | (x >> (32 - r))) argument
342 # define XXH_rotl64(x,r) ((x << r) | (x >> (64 - r))) argument
352 static U32 XXH_swap32 (U32 x) in XXH_swap32()
359 static U64 XXH_swap64 (U64 x) in XXH_swap64()
H A Dmos_api.c17 #define MAX(x, y) (((x) > (y)) ? (x) : (y)) argument
18 #define MIN(x, y) (((x) < (y)) ? (x) : (y)) argument
19 #define SKIP_SPACES(x) while (*x && isspace((int)*x)) x++; argument
20 #define SKIP_CHAR(x) while((*x) && !isspace(*x)) x++; argument
/mOS-networking-stack/samples/simple_firewall/
H A Dsimple_firewall.c31 #define NELEMS(x) (sizeof(x) / sizeof(x[0])) argument
33 #define SKIP_SPACES(x) while (*x && isspace((int)*x)) x++; argument
35 #define SKIP_CHAR(x) while((*x) && !isspace(*x)) x++; argument
37 #define SKIP_DIGIT(x) while((*x) && isdigit(*x)) x++; argument
39 #define IP_NETMASK(x, y) x & (0xFFFFFFFF >> (32 - y)); argument
/mOS-networking-stack/core/test/tcprb/
H A Dtest.c7 #define FREE(x) do { free(x); x = NULL; } while (0) argument
/mOS-networking-stack/core/src/include/
H A Dmtcp.h36 #define likely(x) __builtin_expect((x),1) argument
39 #define unlikely(x) __builtin_expect((x),0) argument
95 #define MTCP_SET(a, x) (a |= x) argument
96 #define MTCP_ISSET(a, x) (a & x) argument
99 #define CB_SET(a, x) MTCP_SET(a, x) argument
100 #define CB_ISSET(a, x) MTCP_ISSET(a, x) argument
103 #define ACTION_SET(a,x) MTCP_SET(a, x) argument
104 #define ACTION_ISSET(a, x) MTCP_ISSET(a, x) argument
/mOS-networking-stack/samples/common/
H A Dapplib.c72 #define SKIP_SPACES(x) while (*x && isspace((int)*x)) x++; argument
/mOS-networking-stack/core/src/bpf/
H A Dsf_nametoaddr.c87 #define NTOHL(x) (x) = ntohl(x) argument
88 #define NTOHS(x) (x) = ntohs(x) argument

1234