| /f-stack/freebsd/contrib/device-tree/Bindings/net/ |
| H A D | hisilicon-hns-nic.txt | 7 - ae-handle: accelerator engine handle for hns, 42 - port-idx-in-ae: is the index of port provided by AE. 44 to the CPU. The port-idx-in-ae can be 0 to 5. Here is the diagram: 55 single NIC connected to this switch. In this case, the port-idx-in-ae 73 ae-handle = <&dsaf0>; 74 port-idx-in-ae = <0>;
|
| /f-stack/freebsd/netinet6/ |
| H A D | in6_fib_algo.c | 171 struct radix6_addr_entry *ae; in lradix6_add_route_cb() local 182 ae = (struct radix6_addr_entry *)((char *)lr->radix_mem + lr->num_items * LRADIX6_ITEM_SZ); in lradix6_add_route_cb() 185 ae->nhop = nh; in lradix6_add_route_cb() 190 ae->addr.sin6_len = KEY_LEN_INET6; in lradix6_add_route_cb() 191 ae->addr.sin6_addr = rt_dst->sin6_addr; in lradix6_add_route_cb() 200 rn = lr->rnh->rnh_addaddr((struct sockaddr *)&ae->addr, in lradix6_add_route_cb() 201 (struct sockaddr *)rt_mask, &lr->rnh->rh, ae->rn); in lradix6_add_route_cb()
|
| /f-stack/freebsd/netinet/ |
| H A D | in_fib_algo.c | 603 struct radix4_addr_entry *ae; in lradix4_add_route_cb() local 613 ae = (struct radix4_addr_entry *)(lr->rt_base + lr->num_items * LRADIX4_ITEM_SZ); in lradix4_add_route_cb() 616 ae->nhop = rt_get_raw_nhop(rt); in lradix4_add_route_cb() 619 ae->addr.sin_len = KEY_LEN_INET; in lradix4_add_route_cb() 620 ae->addr.sin_addr = addr4; in lradix4_add_route_cb() 630 rn = lr->rnh->rnh_addaddr((struct sockaddr *)&ae->addr, rt_mask, in lradix4_add_route_cb() 631 &lr->rnh->rh, ae->rn); in lradix4_add_route_cb()
|
| /f-stack/app/redis-5.0.5/deps/hiredis/ |
| H A D | Makefile | 106 hiredis-example-ae: 110 hiredis-example-ae: examples/example-ae.c adapters/ae.h $(STLIBNAME) 111 …$(CC) -o examples/$@ $(REAL_CFLAGS) $(REAL_LDFLAGS) -I. -I$(AE_DIR) $< $(AE_DIR)/ae.o $(AE_DIR)/zm…
|
| /f-stack/freebsd/contrib/device-tree/src/arm64/hisilicon/ |
| H A D | hip06.dtsi | 568 ae-handle = <&dsaf0>; 569 port-idx-in-ae = <4>; 577 ae-handle = <&dsaf0>; 578 port-idx-in-ae = <5>; 586 ae-handle = <&dsaf0>; 587 port-idx-in-ae = <0>; 595 ae-handle = <&dsaf0>; 596 port-idx-in-ae = <1>;
|
| H A D | hip07.dtsi | 1461 ae-handle = <&dsaf0>; 1462 port-idx-in-ae = <4>; 1470 ae-handle = <&dsaf0>; 1471 port-idx-in-ae = <5>; 1479 ae-handle = <&dsaf0>; 1480 port-idx-in-ae = <0>; 1488 ae-handle = <&dsaf0>; 1489 port-idx-in-ae = <1>;
|
| /f-stack/freebsd/contrib/device-tree/Bindings/iio/magnetometer/ |
| H A D | bmc150_magn.txt | 3 http://ae-bst.resource.bosch.com/media/products/dokumente/bmc150/BST-BMC150-DS000-04.pdf
|
| /f-stack/freebsd/net80211/ |
| H A D | ieee80211_mesh.c | 1263 int ae; in mesh_decap() local 1303 "bad AE %d", ae); in mesh_decap() 1318 "bad AE %d", ae); in mesh_decap() 1349 int ae = mc->mc_flags & 3; in mesh_isucastforme() local 1353 KASSERT(ae == IEEE80211_MESH_AE_00 || ae == IEEE80211_MESH_AE_10, in mesh_isucastforme() 1354 ("bad AE %d", ae)); in mesh_isucastforme() 1438 int ae; in mesh_recv_indiv_data_to_me() local 1460 ae == IEEE80211_MESH_AE_10, ("bad AE %d", ae)); in mesh_recv_indiv_data_to_me() 1461 if (ae == IEEE80211_MESH_AE_10) { in mesh_recv_indiv_data_to_me() 1542 uint8_t dir, type, subtype, ae; in mesh_input() local [all …]
|
| /f-stack/freebsd/contrib/device-tree/Bindings/iio/accel/ |
| H A D | bma180.txt | 5 http://ae-bst.resource.bosch.com/media/products/dokumente/bma250/bst-bma250-ds002-05.pdf
|
| H A D | bosch,bma400.yaml | 16 https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BMA400-DS000.pdf
|
| /f-stack/freebsd/kern/ |
| H A D | sys_generic.c | 868 struct specialfd_eventfd *ae; in kern_specialfd() local 878 ae = arg; in kern_specialfd() 879 if ((ae->flags & EFD_CLOEXEC) != 0) in kern_specialfd() 881 error = eventfd_create_file(td, fp, ae->initval, ae->flags); in kern_specialfd() 899 struct specialfd_eventfd ae; in sys___specialfd() local 908 error = copyin(args->req, &ae, sizeof(ae)); in sys___specialfd() 911 if ((ae.flags & ~(EFD_CLOEXEC | EFD_NONBLOCK | in sys___specialfd() 916 error = kern_specialfd(td, args->type, &ae); in sys___specialfd()
|
| /f-stack/app/redis-5.0.5/src/ |
| H A D | Makefile | 185 REDIS_SERVER_OBJ=adlist.o quicklist.o ae.o anet.o anet_ff.o dict.o server.o sds.o zmalloc.o lzf_c.o… 187 REDIS_CLI_OBJ=anet.o adlist.o dict.o redis-cli.o zmalloc.o release.o anet.o anet_ff.o ae.o crc64.o … 189 REDIS_BENCHMARK_OBJ=ae.o anet.o anet_ff.o redis-benchmark.o adlist.o zmalloc.o redis-benchmark.o
|
| /f-stack/dpdk/doc/guides/rawdevs/ |
| H A D | ntb.rst | 57 Get bar base address using ``lspci -vvv -s ae:00.0 | grep Region``. 61 # lspci -vvv -s ae:00.0 | grep Region
|
| /f-stack/freebsd/contrib/openzfs/module/ |
| H A D | Makefile.in | 88 depmod -ae -F $$sysmap @LINUX_VERSION@; \
|
| /f-stack/dpdk/doc/guides/nics/ |
| H A D | kni.rst | 129 ether ae:8e:79:8e:9b:c8 txqueuelen 1000 (Ethernet)
|
| /f-stack/app/nginx-1.16.1/src/http/ |
| H A D | ngx_http_core_module.c | 75 static ngx_int_t ngx_http_gzip_accept_encoding(ngx_str_t *ae); 1943 ngx_table_elt_t *e, *d, *ae; in ngx_http_gzip_ok() local 1952 ae = r->headers_in.accept_encoding; in ngx_http_gzip_ok() 1953 if (ae == NULL) { in ngx_http_gzip_ok() 1957 if (ae->value.len < sizeof("gzip") - 1) { in ngx_http_gzip_ok() 1970 if (ngx_memcmp(ae->value.data, "gzip,", 5) != 0 in ngx_http_gzip_ok() 1971 && ngx_http_gzip_accept_encoding(&ae->value) != NGX_OK) in ngx_http_gzip_ok() 2106 ngx_http_gzip_accept_encoding(ngx_str_t *ae) in ngx_http_gzip_accept_encoding() argument 2110 start = ae->data; in ngx_http_gzip_accept_encoding() 2111 last = start + ae->len; in ngx_http_gzip_accept_encoding()
|
| /f-stack/freebsd/contrib/device-tree/src/arm/ |
| H A D | imx51-zii-rdu1.dts | 593 eeprom@ae {
|
| /f-stack/freebsd/i386/conf/ |
| H A D | GENERIC | 224 device ae # Attansic/Atheros L2 FastEthernet
|
| /f-stack/freebsd/amd64/conf/ |
| H A D | GENERIC | 259 device ae # Attansic/Atheros L2 FastEthernet
|
| /f-stack/app/redis-5.0.5/ |
| H A D | README.md | 408 * `ae.c` implements the Redis event loop, it's a self contained library which is simple to read and…
|
| H A D | 00-RELEASENOTES | 2954 Fix ae.c when a timer finalizerProc adds an event.
|
| /f-stack/dpdk/doc/guides/contributing/ |
| H A D | patches.rst | 259 git config alias.fixline "log -1 --abbrev=12 --format='Fixes: %h (\"%s\")%nCc: %ae'"
|