Searched refs:field (Results 1 – 10 of 10) sorted by relevance
| /components/drivers/usb/cherryusb/common/ |
| A D | usb_util.h | 161 #define GET_BE16(field) \ argument 162 (((uint16_t)(field)[0] << 8) | ((uint16_t)(field)[1])) 164 #define GET_BE32(field) \ argument 165 …(((uint32_t)(field)[0] << 24) | ((uint32_t)(field)[1] << 16) | ((uint32_t)(field)[2] << 8) | ((uin… 167 #define SET_BE16(field, value) \ argument 169 (field)[0] = (uint8_t)((value) >> 8); \ 170 (field)[1] = (uint8_t)((value) >> 0); \ 173 #define SET_BE24(field, value) \ argument 175 (field)[0] = (uint8_t)((value) >> 16); \ 176 (field)[1] = (uint8_t)((value) >> 8); \ [all …]
|
| A D | usb_list.h | 450 for (pos = usb_dlist_entry((head)->prev, typeof(*pos), field), \
|
| /components/drivers/include/drivers/ |
| A D | misc.h | 61 #define rt_offsetof(s, field) ((rt_size_t)&((s *)0)->field) argument
|
| /components/drivers/ofw/ |
| A D | base.c | 1683 int prep_ak = 0, next_ak, field; in ofw_get_prop_fuzzy_name() local 1690 field = next_ak - prep_ak; in ofw_get_prop_fuzzy_name() 1692 if (rt_strncmp(propname, fuzzy_name, field)) in ofw_get_prop_fuzzy_name() 1697 propname += field; in ofw_get_prop_fuzzy_name() 1698 fuzzy_name += field; in ofw_get_prop_fuzzy_name() 1718 field = next_ak - prep_ak; in ofw_get_prop_fuzzy_name() 1719 propname = str + field - 1; in ofw_get_prop_fuzzy_name() 1720 fuzzy_name += field; in ofw_get_prop_fuzzy_name()
|
| /components/legacy/fdt/libfdt/ |
| A D | libfdt.h | 246 #define fdt_get_header(fdt, field) \ argument 247 (fdt32_to_cpu(((const struct fdt_header *)(fdt))->field))
|
| /components/drivers/ofw/libfdt/ |
| A D | libfdt.h | 247 #define fdt_get_header(fdt, field) \ argument 248 (fdt32_ld(&((const struct fdt_header *)(fdt))->field))
|
| /components/lwp/terminal/freebsd/ |
| A D | tty_ttydisc.c | 68 #define CMP_FLAG(field, opt) (tp->t_termios.c_##field##flag & (opt)) argument
|
| /components/net/lwip/lwip-1.4.1/ |
| A D | CHANGELOG | 1505 * tcpip.h, tcpip.c, api.h, api_lib.c, api_msg.c, sockets.c: replace the field 1520 * tcpip.h, tcpip.c, api.h, api_lib.c, api_msg.c, sockets.c: replace the field 1685 option in socket API, and a new field "multicast_ip" in "struct udp_pcb" (for 1745 Initialize igmp_mac_filter to NULL in netif_add (this field should be set in 1747 and/or the "interface" field (for netconn layer), for join/leave operations. 2597 * pbuf.c: checked in patch #5796: pbuf_alloc: len field claculation caused 2984 * PBUF_POOL chains had their tot_len field not set for non-first 3046 * netif drivers have to be changed to set the hardware address length field 3050 * netif's have a dhcp field that must be initialized to NULL by the driver. 3084 * pbuf_dechain() did not update the ->tot_len field of the tail. [all …]
|
| /components/net/lwip/lwip-2.0.3/ |
| A D | CHANGELOG | 307 if DHCP is active is through netif->dhcp field. 2461 * tcpip.h, tcpip.c, api.h, api_lib.c, api_msg.c, sockets.c: replace the field 2476 * tcpip.h, tcpip.c, api.h, api_lib.c, api_msg.c, sockets.c: replace the field 2701 Initialize igmp_mac_filter to NULL in netif_add (this field should be set in 2703 and/or the "interface" field (for netconn layer), for join/leave operations. 3553 * pbuf.c: checked in patch #5796: pbuf_alloc: len field claculation caused 3940 * PBUF_POOL chains had their tot_len field not set for non-first 4002 * netif drivers have to be changed to set the hardware address length field 4006 * netif's have a dhcp field that must be initialized to NULL by the driver. 4040 * pbuf_dechain() did not update the ->tot_len field of the tail. [all …]
|
| /components/net/lwip/lwip-2.1.2/ |
| A D | CHANGELOG | 560 if DHCP is active is through netif->dhcp field. 2714 * tcpip.h, tcpip.c, api.h, api_lib.c, api_msg.c, sockets.c: replace the field 2729 * tcpip.h, tcpip.c, api.h, api_lib.c, api_msg.c, sockets.c: replace the field 2954 Initialize igmp_mac_filter to NULL in netif_add (this field should be set in 2956 and/or the "interface" field (for netconn layer), for join/leave operations. 3806 * pbuf.c: checked in patch #5796: pbuf_alloc: len field claculation caused 4193 * PBUF_POOL chains had their tot_len field not set for non-first 4255 * netif drivers have to be changed to set the hardware address length field 4259 * netif's have a dhcp field that must be initialized to NULL by the driver. 4293 * pbuf_dechain() did not update the ->tot_len field of the tail. [all …]
|
Completed in 30 milliseconds