| /OK3568_Linux_fs/kernel/net/dccp/ |
| H A D | ackvec.c | 19 struct dccp_ackvec *av = kmem_cache_zalloc(dccp_ackvec_slab, priority); in dccp_ackvec_alloc() local 21 if (av != NULL) { in dccp_ackvec_alloc() 22 av->av_buf_head = av->av_buf_tail = DCCPAV_MAX_ACKVEC_LEN - 1; in dccp_ackvec_alloc() 23 INIT_LIST_HEAD(&av->av_records); in dccp_ackvec_alloc() 25 return av; in dccp_ackvec_alloc() 28 static void dccp_ackvec_purge_records(struct dccp_ackvec *av) in dccp_ackvec_purge_records() argument 32 list_for_each_entry_safe(cur, next, &av->av_records, avr_node) in dccp_ackvec_purge_records() 34 INIT_LIST_HEAD(&av->av_records); in dccp_ackvec_purge_records() 37 void dccp_ackvec_free(struct dccp_ackvec *av) in dccp_ackvec_free() argument 39 if (likely(av != NULL)) { in dccp_ackvec_free() [all …]
|
| H A D | ackvec.h | 106 void dccp_ackvec_free(struct dccp_ackvec *av); 108 void dccp_ackvec_input(struct dccp_ackvec *av, struct sk_buff *skb); 109 int dccp_ackvec_update_records(struct dccp_ackvec *av, u64 seq, u8 sum); 110 void dccp_ackvec_clear_state(struct dccp_ackvec *av, const u64 ackno); 111 u16 dccp_ackvec_buflen(const struct dccp_ackvec *av); 113 static inline bool dccp_ackvec_is_empty(const struct dccp_ackvec *av) in dccp_ackvec_is_empty() argument 115 return av->av_overflow == 0 && av->av_buf_head == av->av_buf_tail; in dccp_ackvec_is_empty()
|
| /OK3568_Linux_fs/kernel/drivers/infiniband/hw/mlx4/ |
| H A D | ah.c | 48 ah->av.ib.port_pd = cpu_to_be32(to_mpd(ib_ah->pd)->pdn | in create_ib_ah() 50 ah->av.ib.g_slid = rdma_ah_get_path_bits(ah_attr); in create_ib_ah() 51 ah->av.ib.sl_tclass_flowlabel = in create_ib_ah() 56 ah->av.ib.g_slid |= 0x80; in create_ib_ah() 57 ah->av.ib.gid_index = grh->sgid_index; in create_ib_ah() 58 ah->av.ib.hop_limit = grh->hop_limit; in create_ib_ah() 59 ah->av.ib.sl_tclass_flowlabel |= in create_ib_ah() 62 memcpy(ah->av.ib.dgid, grh->dgid.raw, 16); in create_ib_ah() 65 ah->av.ib.dlid = cpu_to_be16(rdma_ah_get_dlid(ah_attr)); in create_ib_ah() 73 ah->av.ib.stat_rate = static_rate; in create_ib_ah() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/infiniband/sw/rxe/ |
| H A D | rxe_av.c | 10 void rxe_init_av(struct rdma_ah_attr *attr, struct rxe_av *av) in rxe_init_av() argument 12 rxe_av_from_attr(rdma_ah_get_port_num(attr), av, attr); in rxe_init_av() 13 rxe_av_fill_ip_info(av, attr); in rxe_init_av() 14 memcpy(av->dmac, attr->roce.dmac, ETH_ALEN); in rxe_init_av() 44 void rxe_av_from_attr(u8 port_num, struct rxe_av *av, in rxe_av_from_attr() argument 49 memset(av, 0, sizeof(*av)); in rxe_av_from_attr() 50 memcpy(av->grh.dgid.raw, grh->dgid.raw, sizeof(grh->dgid.raw)); in rxe_av_from_attr() 51 av->grh.flow_label = grh->flow_label; in rxe_av_from_attr() 52 av->grh.sgid_index = grh->sgid_index; in rxe_av_from_attr() 53 av->grh.hop_limit = grh->hop_limit; in rxe_av_from_attr() [all …]
|
| H A D | rxe_net.c | 113 struct rxe_av *av) in rxe_find_route() argument 124 if (av->network_type == RXE_NETWORK_TYPE_IPV4) { in rxe_find_route() 128 saddr = &av->sgid_addr._sockaddr_in.sin_addr; in rxe_find_route() 129 daddr = &av->dgid_addr._sockaddr_in.sin_addr; in rxe_find_route() 131 } else if (av->network_type == RXE_NETWORK_TYPE_IPV6) { in rxe_find_route() 135 saddr6 = &av->sgid_addr._sockaddr_in6.sin6_addr; in rxe_find_route() 136 daddr6 = &av->dgid_addr._sockaddr_in6.sin6_addr; in rxe_find_route() 308 struct rxe_av *av = rxe_get_av(pkt); in prepare4() local 309 struct in_addr *saddr = &av->sgid_addr._sockaddr_in.sin_addr; in prepare4() 310 struct in_addr *daddr = &av->dgid_addr._sockaddr_in.sin_addr; in prepare4() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/infiniband/hw/mthca/ |
| H A D | mthca_av.c | 159 struct mthca_av *av = NULL; in mthca_create_ah() local 164 ah->av = kmalloc(sizeof *ah->av, GFP_ATOMIC); in mthca_create_ah() 165 if (!ah->av) in mthca_create_ah() 169 av = ah->av; in mthca_create_ah() 178 av = kmalloc(sizeof *av, GFP_ATOMIC); in mthca_create_ah() 179 if (!av) in mthca_create_ah() 189 ah->av = dma_pool_zalloc(dev->av_table.pool, in mthca_create_ah() 191 if (!ah->av) in mthca_create_ah() 194 av = ah->av; in mthca_create_ah() 199 av->port_pd = cpu_to_be32(pd->pd_num | in mthca_create_ah() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/infiniband/hw/hns/ |
| H A D | hns_roce_ah.c | 64 ah->av.port = rdma_ah_get_port_num(ah_attr); in hns_roce_create_ah() 65 ah->av.gid_index = grh->sgid_index; in hns_roce_create_ah() 68 ah->av.stat_rate = IB_RATE_10_GBPS; in hns_roce_create_ah() 70 ah->av.hop_limit = grh->hop_limit; in hns_roce_create_ah() 71 ah->av.flowlabel = grh->flow_label; in hns_roce_create_ah() 72 ah->av.udp_sport = get_ah_udp_sport(ah_attr); in hns_roce_create_ah() 73 ah->av.sl = rdma_ah_get_sl(ah_attr); in hns_roce_create_ah() 74 ah->av.tclass = get_tclass(grh); in hns_roce_create_ah() 76 memcpy(ah->av.dgid, grh->dgid.raw, HNS_ROCE_GID_SIZE); in hns_roce_create_ah() 77 memcpy(ah->av.mac, ah_attr->roce.dmac, ETH_ALEN); in hns_roce_create_ah() [all …]
|
| /OK3568_Linux_fs/u-boot/drivers/mtd/ubi/ |
| H A D | attach.c | 177 * @av: information about the volume this logical eraseblock belongs to 190 const struct ubi_ainf_volume *av, int pnum) in validate_vid_hdr() argument 197 if (av->leb_count != 0) { in validate_vid_hdr() 206 if (vol_id != av->vol_id) { in validate_vid_hdr() 211 if (av->vol_type == UBI_STATIC_VOLUME) in validate_vid_hdr() 221 if (used_ebs != av->used_ebs) { in validate_vid_hdr() 226 if (data_pad != av->data_pad) { in validate_vid_hdr() 237 ubi_dump_av(av); in validate_vid_hdr() 251 * to the allocated "av" object in case of success and a negative error code in 258 struct ubi_ainf_volume *av; in add_volume() local [all …]
|
| H A D | vtbl.c | 363 * @av: layout volume attaching information 371 struct ubi_ainf_volume *av) argument 407 ubi_rb_for_each_entry(rb, aeb, &av->root, u.rb) { 533 struct ubi_ainf_volume *av; local 589 av = ubi_find_av(ai, i); 590 if (!av || !av->leb_count) { 602 if (av->leb_count != av->used_ebs) { 608 av->vol_id, av->used_ebs - av->leb_count); 613 vol->used_ebs = av->used_ebs; 616 vol->used_bytes += av->last_data_size; [all …]
|
| H A D | fastmap.c | 188 struct ubi_ainf_volume *av; in add_vol() local 193 av = rb_entry(parent, struct ubi_ainf_volume, rb); in add_vol() 195 if (vol_id > av->vol_id) in add_vol() 197 else if (vol_id < av->vol_id) in add_vol() 203 av = kmalloc(sizeof(struct ubi_ainf_volume), GFP_KERNEL); in add_vol() 204 if (!av) in add_vol() 207 av->highest_lnum = av->leb_count = av->used_ebs = 0; in add_vol() 208 av->vol_id = vol_id; in add_vol() 209 av->data_pad = data_pad; in add_vol() 210 av->last_data_size = last_eb_bytes; in add_vol() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/infiniband/hw/mlx5/ |
| H A D | ah.c | 62 memcpy(ah->av.rgid, &grh->dgid, 16); in create_ib_ah() 63 ah->av.grh_gid_fl = cpu_to_be32(grh->flow_label | in create_ib_ah() 66 ah->av.hop_limit = grh->hop_limit; in create_ib_ah() 67 ah->av.tclass = grh->traffic_class; in create_ib_ah() 70 ah->av.stat_rate_sl = (rdma_ah_get_static_rate(ah_attr) << 4); in create_ib_ah() 79 memcpy(ah->av.rmac, ah_attr->roce.dmac, in create_ib_ah() 81 ah->av.udp_sport = mlx5_ah_get_udp_sport(dev, ah_attr); in create_ib_ah() 82 ah->av.stat_rate_sl |= (rdma_ah_get_sl(ah_attr) & 0x7) << 1; in create_ib_ah() 85 ah->av.tclass |= MLX5_ECN_ENABLED; in create_ib_ah() 87 ah->av.rlid = cpu_to_be16(rdma_ah_get_dlid(ah_attr)); in create_ib_ah() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/mtd/ubi/ |
| H A D | attach.c | 107 struct ubi_ainf_volume *av; in find_or_add_av() local 113 av = rb_entry(parent, struct ubi_ainf_volume, rb); in find_or_add_av() 115 if (vol_id == av->vol_id) { in find_or_add_av() 121 return av; in find_or_add_av() 124 if (vol_id > av->vol_id) in find_or_add_av() 134 av = kzalloc(sizeof(*av), GFP_KERNEL); in find_or_add_av() 135 if (!av) in find_or_add_av() 138 av->vol_id = vol_id; in find_or_add_av() 143 rb_link_node(&av->rb, parent, p); in find_or_add_av() 144 rb_insert_color(&av->rb, &ai->volumes); in find_or_add_av() [all …]
|
| H A D | vtbl.c | 355 * @av: layout volume attaching information 363 struct ubi_ainf_volume *av) in process_lvol() argument 399 ubi_rb_for_each_entry(rb, aeb, &av->root, u.rb) { in process_lvol() 525 struct ubi_ainf_volume *av; in init_volumes() local 594 av = ubi_find_av(ai, i); in init_volumes() 595 if (!av || !av->leb_count) { in init_volumes() 607 if (av->leb_count != av->used_ebs) { in init_volumes() 613 av->vol_id, av->used_ebs - av->leb_count); in init_volumes() 618 vol->used_ebs = av->used_ebs; in init_volumes() 621 vol->used_bytes += av->last_data_size; in init_volumes() [all …]
|
| H A D | fastmap.c | 179 struct ubi_ainf_volume *av; in add_vol() local 181 av = ubi_add_av(ai, vol_id); in add_vol() 182 if (IS_ERR(av)) in add_vol() 183 return av; in add_vol() 185 av->data_pad = data_pad; in add_vol() 186 av->last_data_size = last_eb_bytes; in add_vol() 187 av->compat = 0; in add_vol() 188 av->vol_type = vol_type; in add_vol() 189 if (av->vol_type == UBI_STATIC_VOLUME) in add_vol() 190 av->used_ebs = used_ebs; in add_vol() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/rtmpdump/git/ |
| H A D | rtmpsrv.c | 131 #define STR2AVAL(av,str) av.av_val = str; av.av_len = strlen(av.av_val) argument 179 AVal av; in SendConnectResult() local 194 STR2AVAL(av, "FMS/3,5,1,525"); in SendConnectResult() 195 enc = AMF_EncodeNamedString(enc, pend, &av_fmsVer, &av); in SendConnectResult() 204 STR2AVAL(av, "status"); in SendConnectResult() 205 enc = AMF_EncodeNamedString(enc, pend, &av_level, &av); in SendConnectResult() 206 STR2AVAL(av, "NetConnection.Connect.Success"); in SendConnectResult() 207 enc = AMF_EncodeNamedString(enc, pend, &av_code, &av); in SendConnectResult() 208 STR2AVAL(av, "Connection succeeded."); in SendConnectResult() 209 enc = AMF_EncodeNamedString(enc, pend, &av_description, &av); in SendConnectResult() [all …]
|
| H A D | rtmpsuck.c | 106 #define STR2AVAL(av,str) av.av_val = str; av.av_len = strlen(av.av_val) argument 310 AVal av; in ServeInvoke() local 321 AMFProp_GetString(AMF_GetProp(&obj, NULL, 3), &av); in ServeInvoke() 322 server->rc.Link.playpath = av; in ServeInvoke() 323 if (!av.av_val) in ServeInvoke() 329 if (AVMATCH(&av, &fl->f_path)) in ServeInvoke() 333 q = memchr(av.av_val, '?', av.av_len); in ServeInvoke() 336 if (q == av.av_val) in ServeInvoke() 338 av.av_val++; in ServeInvoke() 339 av.av_len--; in ServeInvoke() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/infiniband/hw/ocrdma/ |
| H A D | ocrdma_ah.c | 126 memcpy(&ah->av->eth_hdr, ð, eth_sz); in set_av_attr() 139 memcpy((u8 *)ah->av + eth_sz, &ipv4, sizeof(struct iphdr)); in set_av_attr() 150 memcpy((u8 *)ah->av + eth_sz, &grh, sizeof(struct ocrdma_grh)); in set_av_attr() 153 ah->av->valid |= OCRDMA_AV_VLAN_VALID; in set_av_attr() 154 ah->av->valid = cpu_to_le32(ah->av->valid); in set_av_attr() 230 struct ocrdma_av *av = ah->av; in ocrdma_query_ah() local 234 if (ah->av->valid & OCRDMA_AV_VALID) { in ocrdma_query_ah() 235 grh = (struct ocrdma_grh *)((u8 *)ah->av + in ocrdma_query_ah() 237 rdma_ah_set_sl(attr, be16_to_cpu(av->eth_hdr.vlan_tag) >> 13); in ocrdma_query_ah() 239 grh = (struct ocrdma_grh *)((u8 *)ah->av + in ocrdma_query_ah()
|
| /OK3568_Linux_fs/u-boot/cmd/ |
| H A D | md5sum.c | 83 char * const *av; in do_md5sum() local 89 av = argv + 1; in do_md5sum() 91 if (strcmp(*av, "-v") == 0) { in do_md5sum() 93 av++; in do_md5sum() 99 addr = simple_strtoul(*av++, NULL, 16); in do_md5sum() 100 len = simple_strtoul(*av++, NULL, 16); in do_md5sum() 113 store_result(output, *av); in do_md5sum() 115 char *verify_str = *av++; in do_md5sum()
|
| H A D | sha1sum.c | 20 char * const *av; in do_sha1sum() local 25 av = argv + 1; in do_sha1sum() 28 if (strcmp(*av, "-v") == 0) { in do_sha1sum() 30 av++; in do_sha1sum() 35 return hash_command("sha1", flags, cmdtp, flag, ac, av); in do_sha1sum()
|
| /OK3568_Linux_fs/kernel/Documentation/ABI/testing/ |
| H A D | sysfs-platform-lg-laptop | 4 Contact: "Matan Ziv-Av <matan@svgalib.org> 11 Contact: "Matan Ziv-Av <matan@svgalib.org> 18 Contact: "Matan Ziv-Av <matan@svgalib.org> 25 Contact: "Matan Ziv-Av <matan@svgalib.org> 32 Contact: "Matan Ziv-Av <matan@svgalib.org>
|
| /OK3568_Linux_fs/buildroot/dl/alsa-plugins/ |
| HD | alsa-plugins-1.2.6.tar.bz2 | ... 6/arcam-av/50-arcam-av-ctl.conf
alsa-plugins-1.2. ... |
| /OK3568_Linux_fs/kernel/drivers/ps3/ |
| H A D | ps3av_cmd.c | 6 * AV backend support for PS3 29 u32 av; member 34 .av = PS3AV_CMD_AV_CS_RGB_8, 38 .av = PS3AV_CMD_AV_CS_RGB_8, 42 .av = PS3AV_CMD_AV_CS_RGB_8, 46 .av = PS3AV_CMD_AV_CS_YUV444_8, 50 .av = PS3AV_CMD_AV_CS_YUV444_8, 54 .av = PS3AV_CMD_AV_CS_YUV444_8, 58 .av = PS3AV_CMD_AV_CS_YUV422_8, 62 .av = PS3AV_CMD_AV_CS_YUV422_8, [all …]
|
| /OK3568_Linux_fs/kernel/arch/powerpc/boot/ |
| H A D | hack-coff.c | 28 main(int ac, char **av) in main() argument 41 if ((fd = open(av[1], 2)) == -1) { in main() 42 perror(av[2]); in main() 49 fprintf(stderr, "%s: not an xcoff file\n", av[1]); in main() 71 fprintf(stderr, "%s: write error\n", av[1]); in main() 78 fprintf(stderr, "%s: read error or file too short\n", av[1]); in main()
|
| /OK3568_Linux_fs/buildroot/package/gupnp-av/ |
| H A D | Config.in | 2 bool "gupnp-av" 10 GUPnP-AV is a collection of helpers for building AV 15 comment "gupnp-av needs a toolchain w/ wchar, threads"
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/nouveau/nvkm/engine/gr/ |
| H A D | gk20a.c | 64 struct gk20a_fw_av *av = &((struct gk20a_fw_av *)blob.data)[i]; in gk20a_gr_av_to_init() local 66 ent->addr = av->addr; in gk20a_gr_av_to_init() 67 ent->data = av->data; in gk20a_gr_av_to_init() 114 struct gk20a_fw_aiv *av = &((struct gk20a_fw_aiv *)blob.data)[i]; in gk20a_gr_aiv_to_init() local 116 ent->addr = av->addr; in gk20a_gr_aiv_to_init() 117 ent->data = av->data; in gk20a_gr_aiv_to_init() 160 struct gk20a_fw_av *av = &((struct gk20a_fw_av *)blob.data)[i]; in gk20a_gr_av_to_method() local 161 u32 class = av->addr & 0xffff; in gk20a_gr_av_to_method() 162 u32 addr = (av->addr & 0xffff0000) >> 14; in gk20a_gr_av_to_method() 178 init->data = av->data; in gk20a_gr_av_to_method()
|