Home
last modified time | relevance | path

Searched refs:d (Results 1 – 25 of 56) sorted by relevance

123

/mOS-networking-stack/core/src/include/
H A Dnetmap_user.h258 #define IS_NETMAP_DESC(d) ((d) && P2NMD(d)->self == P2NMD(d)) argument
259 #define NETMAP_FD(d) (P2NMD(d)->fd) argument
801 d->first_tx_ring = d->last_tx_ring = d->req.nr_tx_rings; in nm_open()
802 d->first_rx_ring = d->last_rx_ring = d->req.nr_rx_rings; in nm_open()
827 d->first_tx_ring, d->last_tx_ring, d->req.nr_tx_rings, in nm_open()
864 if (d == NULL || d->self != d) in nm_close()
866 if (d->done_mmap && d->mem) in nm_close()
867 munmap(d->mem, d->memsize); in nm_close()
872 bzero(d, sizeof(*d)); in nm_close()
891 d->memsize = d->req.nr_memsize; in nm_mmap()
[all …]
/mOS-networking-stack/samples/lighttpd-1.4.32/src/
H A Dmd5.c90 #define FF(a, b, c, d, x, s, ac) { \ argument
91 (a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \
95 #define GG(a, b, c, d, x, s, ac) { \ argument
96 (a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \
100 #define HH(a, b, c, d, x, s, ac) { \ argument
101 (a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \
105 #define II(a, b, c, d, x, s, ac) { \ argument
106 (a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \
203 FF (a, b, c, d, x[ 0], S11, 0xd76aa478); /* 1 */ in li_MD5Transform()
204 FF (d, a, b, c, x[ 1], S12, 0xe8c7b756); /* 2 */ in li_MD5Transform()
[all …]
H A Ddata_integer.c17 static void data_integer_free(data_unset *d) { in data_integer_free() argument
18 data_integer *ds = (data_integer *)d; in data_integer_free()
22 free(d); in data_integer_free()
25 static void data_integer_reset(data_unset *d) { in data_integer_reset() argument
26 data_integer *ds = (data_integer *)d; in data_integer_reset()
41 static void data_integer_print(const data_unset *d, int depth) { in data_integer_print() argument
42 data_integer *ds = (data_integer *)d; in data_integer_print()
H A Ddata_count.c17 static void data_count_free(data_unset *d) { in data_count_free() argument
18 data_count *ds = (data_count *)d; in data_count_free()
22 free(d); in data_count_free()
25 static void data_count_reset(data_unset *d) { in data_count_reset() argument
26 data_count *ds = (data_count *)d; in data_count_reset()
44 static void data_count_print(const data_unset *d, int depth) { in data_count_print() argument
45 data_count *ds = (data_count *)d; in data_count_print()
H A Ddata_array.c18 static void data_array_free(data_unset *d) { in data_array_free() argument
19 data_array *ds = (data_array *)d; in data_array_free()
24 free(d); in data_array_free()
27 static void data_array_reset(data_unset *d) { in data_array_reset() argument
28 data_array *ds = (data_array *)d; in data_array_reset()
43 static void data_array_print(const data_unset *d, int depth) { in data_array_print() argument
44 data_array *ds = (data_array *)d; in data_array_print()
H A Ddata_fastcgi.c18 static void data_fastcgi_free(data_unset *d) { in data_fastcgi_free() argument
19 data_fastcgi *ds = (data_fastcgi *)d; in data_fastcgi_free()
24 free(d); in data_fastcgi_free()
27 static void data_fastcgi_reset(data_unset *d) { in data_fastcgi_reset() argument
28 data_fastcgi *ds = (data_fastcgi *)d; in data_fastcgi_reset()
43 static void data_fastcgi_print(const data_unset *d, int depth) { in data_fastcgi_print() argument
44 data_fastcgi *ds = (data_fastcgi *)d; in data_fastcgi_print()
H A Ddata_string.c18 static void data_string_free(data_unset *d) { in data_string_free() argument
19 data_string *ds = (data_string *)d; in data_string_free()
24 free(d); in data_string_free()
27 static void data_string_reset(data_unset *d) { in data_string_reset() argument
28 data_string *ds = (data_string *)d; in data_string_reset()
70 static void data_string_print(const data_unset *d, int depth) { in data_string_print() argument
71 data_string *ds = (data_string *)d; in data_string_print()
H A Ddata_config.c18 static void data_config_free(data_unset *d) { in data_config_free() argument
19 data_config *ds = (data_config *)d; in data_config_free()
34 free(d); in data_config_free()
37 static void data_config_reset(data_unset *d) { in data_config_reset() argument
38 data_config *ds = (data_config *)d; in data_config_reset()
54 static void data_config_print(const data_unset *d, int depth) { in data_config_print() argument
55 data_config *ds = (data_config *)d; in data_config_print()
H A Dlog.c300 int d; in log_error_write() local
317 d = va_arg(ap, int); in log_error_write()
318 buffer_append_long(srv->errorlog_buf, d); in log_error_write()
327 d = va_arg(ap, int); in log_error_write()
329 buffer_append_long_hex(srv->errorlog_buf, d); in log_error_write()
341 d = va_arg(ap, int); in log_error_write()
342 buffer_append_long(srv->errorlog_buf, d); in log_error_write()
349 d = va_arg(ap, int); in log_error_write()
351 buffer_append_long_hex(srv->errorlog_buf, d); in log_error_write()
H A Dmod_cml_funcs.c93 DIR *d; in f_dir_files_iter() local
96 d = lua_touserdata(L, lua_upvalueindex(1)); in f_dir_files_iter()
98 if (NULL == (de = readdir(d))) { in f_dir_files_iter()
100 closedir(d); in f_dir_files_iter()
110 DIR *d; in f_dir_files() local
124 if (NULL == (d = opendir(lua_tostring(L, 1)))) { in f_dir_files()
130 lua_pushlightuserdata(L, d); in f_dir_files()
H A Dbuffer.c768 unsigned char *ds, *d; in buffer_append_string_encoded() local
836 d[d_len++] = '%'; in buffer_append_string_encoded()
838 d[d_len++] = hex_chars[(*ds) & 0x0F]; in buffer_append_string_encoded()
842 d[d_len++] = '&'; in buffer_append_string_encoded()
843 d[d_len++] = '#'; in buffer_append_string_encoded()
844 d[d_len++] = 'x'; in buffer_append_string_encoded()
846 d[d_len++] = hex_chars[(*ds) & 0x0F]; in buffer_append_string_encoded()
847 d[d_len++] = ';'; in buffer_append_string_encoded()
854 d[d_len++] = *ds; in buffer_append_string_encoded()
855 d[d_len++] = '\t'; in buffer_append_string_encoded()
[all …]
H A Dmod_webdav.c580 physical d; in webdav_delete_dir() local
582 d.path = buffer_init(); in webdav_delete_dir()
639 d.rel_path->ptr, in webdav_delete_dir()
655 buffer_free(d.path); in webdav_delete_dir()
656 buffer_free(d.rel_path); in webdav_delete_dir()
743 physical s, d; in webdav_copy_dir() local
748 d.path = buffer_init(); in webdav_copy_dir()
821 buffer_free(d.path); in webdav_copy_dir()
822 buffer_free(d.rel_path); in webdav_copy_dir()
1401 physical d; in URIHANDLER_FUNC() local
[all …]
/mOS-networking-stack/
H A Dsetup.sh226 for d in * ; do
228 cp $CUR_DIR/samples/$d/Makefile.in $CUR_DIR/samples/$d/Makefile
417 node=$(basename $d)
582 for d in * ; do
583 create_config $FL_DPDK "samples/$d/config" $d
606 for d in * ; do
608 create_config $FL_PCAP "samples/$d/config" $d
624 for d in * ; do
626 create_config $FL_NETMAP "samples/$d/config" $d
771 cd $d
[all …]
/mOS-networking-stack/samples/lighttpd-1.4.32/
H A Ddepcomp378 tmpdepfile=$base.d
384 lockdir=$base.d-lock
445 tmpdepfile1=$dir$base.d
446 tmpdepfile2=$dir.libs/$base.d
449 tmpdepfile1=$dir$base.d
450 tmpdepfile2=$dir$base.d
495 tmpdepfile1=$dir$base.o.d # libtool 1.5
496 tmpdepfile2=$dir.libs/$base.o.d # Likewise.
500 tmpdepfile1=$dir$base.d
501 tmpdepfile2=$dir$base.d
[all …]
H A Dinstall-sh340 d????-?r-*) different_mode=700;;
341 d????-?--*) different_mode=755;;
388 for d
390 test X"$d" = X && continue
392 prefix=$prefix$d
498 # time-stamp-format: "%:y-%02m-%02d.%02H"
/mOS-networking-stack/core/src/
H A Dnetmap_module.c163 struct nm_desc *d; in netmap_recv_pkts() local
165 d = npc->local_nmd[ifidx]; in netmap_recv_pkts()
168 int c, got = 0, ri = d->cur_rx_ring; in netmap_recv_pkts()
169 int n = d->last_rx_ring - d->first_rx_ring + 1; in netmap_recv_pkts()
178 ri = d->cur_rx_ring + c; in netmap_recv_pkts()
179 if (ri > d->last_rx_ring) in netmap_recv_pkts()
180 ri = d->first_rx_ring; in netmap_recv_pkts()
181 ring = NETMAP_RXRING(d->nifp, ri); in netmap_recv_pkts()
191 d->cur_rx_ring = ri; in netmap_recv_pkts()
H A Dfhash.c17 #define get16bits(d) (*((const uint16_t *) (d))) argument
21 #define get16bits(d) ((((uint32_t)(((const uint8_t *)(d))[1])) << 8)\ argument
22 +(uint32_t)(((const uint8_t *)(d))[0]) )
/mOS-networking-stack/core/src/bpf/
H A Dsfbpf-int.c166 register int c, d, i; in pcap_next_etherent() local
189 d = xdtoi(c); in pcap_next_etherent()
193 d <<= 4; in pcap_next_etherent()
194 d |= xdtoi(c); in pcap_next_etherent()
197 e.addr[i] = d; in pcap_next_etherent()
226 d = sizeof(e.name) - 1; in pcap_next_etherent()
231 } while (!isspace(c) && c != EOF && --d > 0); in pcap_next_etherent()
H A Dsf_nametoaddr.c417 register u_int d; in pcap_ether_aton() local
427 d = xdtoi(*s++); in pcap_ether_aton()
430 d <<= 4; in pcap_ether_aton()
431 d |= xdtoi(*s++); in pcap_ether_aton()
433 *ep++ = d; in pcap_ether_aton()
/mOS-networking-stack/samples/lighttpd-1.4.32/doc/config/vhosts.d/
H A DMakefile.in91 subdir = doc/config/vhosts.d
296 $(AUTOMAKE) --foreign doc/config/vhosts.d/Makefile
340 if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
341 if test -d $$d/$$file; then \
344 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
346 if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
348 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
350 cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
353 || cp -p $$d/$$file "$(distdir)/$$file" \
/mOS-networking-stack/samples/lighttpd-1.4.32/doc/config/conf.d/
H A DMakefile.in91 subdir = doc/config/conf.d
321 $(AUTOMAKE) --foreign doc/config/conf.d/Makefile
365 if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
366 if test -d $$d/$$file; then \
369 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
371 if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
373 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
375 cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
378 || cp -p $$d/$$file "$(distdir)/$$file" \
/mOS-networking-stack/samples/lighttpd-1.4.32/doc/config/
H A DMakefile.am1 SUBDIRS=conf.d vhosts.d
H A DMakefile.in341 SUBDIRS = conf.d vhosts.d
494 if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
495 if test -d $$d/$$file; then \
498 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
500 if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
502 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
504 cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
507 || cp -p $$d/$$file "$(distdir)/$$file" \
/mOS-networking-stack/samples/lighttpd-1.4.32/tests/docroot/123/
H A DMakefile.in340 if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
341 if test -d $$d/$$file; then \
344 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
346 if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
348 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
350 cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
353 || cp -p $$d/$$file "$(distdir)/$$file" \
/mOS-networking-stack/samples/lighttpd-1.4.32/tests/docroot/www/indexfile/
H A DMakefile.in340 if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
341 if test -d $$d/$$file; then \
344 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
346 if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
348 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
350 cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
353 || cp -p $$d/$$file "$(distdir)/$$file" \

123