/openbmc/linux/arch/sparc/mm/ |
H A D | tsb.c | 22 …nline unsigned long tsb_hash(unsigned long vaddr, unsigned long hash_shift, unsigned long nentries) in tsb_hash() argument 25 return vaddr & (nentries - 1); in tsb_hash() 71 unsigned long nentries) in __flush_tsb_one_entry() argument 76 hash = tsb_hash(v, hash_shift, nentries); in __flush_tsb_one_entry() 84 unsigned long tsb, unsigned long nentries) in __flush_tsb_one() argument 89 __flush_tsb_one_entry(tsb, tb->vaddrs[i], hash_shift, nentries); in __flush_tsb_one() 95 unsigned long nentries, in __flush_huge_tsb_one_entry() argument 104 nentries); in __flush_huge_tsb_one_entry() 108 unsigned long tsb, unsigned long nentries, in __flush_huge_tsb_one() argument 115 nentries, hugepage_shift); in __flush_huge_tsb_one() [all …]
|
/openbmc/linux/net/xdp/ |
H A D | xsk_queue.c | 20 return struct_size(umem_ring, desc, q->nentries); in xskq_get_ring_size() 21 return struct_size(rxtx_ring, desc, q->nentries); in xskq_get_ring_size() 24 struct xsk_queue *xskq_create(u32 nentries, bool umem_queue) in xskq_create() argument 33 q->nentries = nentries; in xskq_create() 34 q->ring_mask = nentries - 1; in xskq_create()
|
H A D | xsk_queue.h | 42 u32 nentries; member 351 u32 free_entries = q->nentries - (q->cached_prod - q->cached_cons); in xskq_prod_nb_free() 358 free_entries = q->nentries - (q->cached_prod - q->cached_cons); in xskq_prod_nb_free() 459 struct xsk_queue *xskq_create(u32 nentries, bool umem_queue);
|
/openbmc/linux/net/bridge/netfilter/ |
H A D | ebtables.c | 197 int i, nentries; in ebt_do_table() local 213 cb_base = COUNTER_BASE(private->counters, private->nentries, in ebt_do_table() 220 nentries = private->hook_entry[hook]->nentries; in ebt_do_table() 226 while (i < nentries) { in ebt_do_table() 272 nentries = chaininfo->nentries; in ebt_do_table() 298 nentries = chaininfo->nentries; in ebt_do_table() 478 newinfo->nentries = repl->nentries; in ebt_verify_pointers() 565 *n = ((struct ebt_entries *)e)->nentries; in ebt_check_entry_size_and_hooks() 803 int i, chain_nr = -1, pos = 0, nentries = chain->nentries, verdict; in check_chainloops() local 807 while (pos < nentries || chain_nr != -1) { in check_chainloops() [all …]
|
/openbmc/linux/drivers/net/wireless/ath/ath10k/ |
H A D | ce.c | 714 void ath10k_ce_rx_update_write_idx(struct ath10k_ce_pipe *pipe, u32 nentries) in ath10k_ce_rx_update_write_idx() argument 726 if (((cur_write_idx + nentries) & nentries_mask) == dest_ring->sw_index) in ath10k_ce_rx_update_write_idx() 727 nentries -= 1; in ath10k_ce_rx_update_write_idx() 729 write_index = CE_RING_IDX_ADD(nentries_mask, write_index, nentries); in ath10k_ce_rx_update_write_idx() 1363 u32 nentries, ctrl_addr = ath10k_ce_base_address(ar, ce_id); in ath10k_ce_init_src_ring() local 1365 nentries = roundup_pow_of_two(attr->src_nentries); in ath10k_ce_init_src_ring() 1369 nentries * sizeof(struct ce_desc_64)); in ath10k_ce_init_src_ring() 1372 nentries * sizeof(struct ce_desc)); in ath10k_ce_init_src_ring() 1384 ath10k_ce_src_ring_size_set(ar, ctrl_addr, nentries); in ath10k_ce_init_src_ring() 1388 ath10k_ce_src_ring_highmark_set(ar, ctrl_addr, nentries); in ath10k_ce_init_src_ring() [all …]
|
H A D | snoc.c | 247 .nentries = __cpu_to_le32(32), 257 .nentries = __cpu_to_le32(32), 267 .nentries = __cpu_to_le32(64), 277 .nentries = __cpu_to_le32(32), 287 .nentries = __cpu_to_le32(256), 297 .nentries = __cpu_to_le32(1024), 307 .nentries = __cpu_to_le32(32), 317 .nentries = __cpu_to_le32(0), 327 .nentries = __cpu_to_le32(32), 337 .nentries = __cpu_to_le32(32), [all …]
|
H A D | ce.h | 62 unsigned int nentries; member 198 void ath10k_ce_rx_update_write_idx(struct ath10k_ce_pipe *pipe, u32 nentries); 397 __le32 nentries; member
|
/openbmc/linux/drivers/net/wireless/ath/ath12k/ |
H A D | hw.c | 123 .nentries = __cpu_to_le32(32), 133 .nentries = __cpu_to_le32(32), 143 .nentries = __cpu_to_le32(32), 153 .nentries = __cpu_to_le32(32), 163 .nentries = __cpu_to_le32(256), 173 .nentries = __cpu_to_le32(32), 183 .nentries = __cpu_to_le32(32), 193 .nentries = __cpu_to_le32(32), 203 .nentries = __cpu_to_le32(32), 215 .nentries = __cpu_to_le32(32), [all …]
|
H A D | ce.c | 500 params.num_entries = ce_ring->nentries; in ath12k_ce_init_ring() 515 params.low_threshold = ce_ring->nentries - 3; in ath12k_ce_init_ring() 544 ath12k_ce_alloc_ring(struct ath12k_base *ab, int nentries, int desc_sz) in ath12k_ce_alloc_ring() argument 549 ce_ring = kzalloc(struct_size(ce_ring, skb, nentries), GFP_KERNEL); in ath12k_ce_alloc_ring() 553 ce_ring->nentries = nentries; in ath12k_ce_alloc_ring() 554 ce_ring->nentries_mask = nentries - 1; in ath12k_ce_alloc_ring() 561 nentries * desc_sz + CE_DESC_RING_ALIGN, in ath12k_ce_alloc_ring() 585 int nentries; in ath12k_ce_alloc_pipe() local 592 nentries = roundup_pow_of_two(attr->src_nentries); in ath12k_ce_alloc_pipe() 594 ring = ath12k_ce_alloc_ring(ab, nentries, desc_sz); in ath12k_ce_alloc_pipe() [all …]
|
H A D | ce.h | 73 __le32 nentries; member 101 unsigned int nentries; member
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-multimedia/cdrkit/files/ |
H A D | fix-incompatible-pointer-type-error.patch | 4 399 | set_721(&last_section_header->entry_count, nentries); 31 - set_721(&last_section_header->entry_count, nentries); 32 + set_721((char *)(&last_section_header->entry_count), nentries); 33 nentries = 1; 40 - set_721(&last_section_header->entry_count, nentries); 41 + set_721((char *)(&last_section_header->entry_count), nentries);
|
H A D | 0001-add-new-option-eltorito-platform.patch | 46 + int nentries = 0; 111 + set_721(&last_section_header->entry_count, nentries); 112 + nentries = 1; 120 + nentries++; /* Add entry to this section header */ 134 + set_721(&last_section_header->entry_count, nentries);
|
/openbmc/linux/arch/sh/mm/ |
H A D | tlb-debugfs.c | 45 unsigned int nentries, entry; in tlb_seq_show() local 59 nentries = 4; in tlb_seq_show() 65 nentries = 64; in tlb_seq_show() 82 nentries = 4; in tlb_seq_show() 88 nentries = 64; in tlb_seq_show() 93 for (entry = 0; entry < nentries; entry++) { in tlb_seq_show()
|
/openbmc/qemu/hw/pci/ |
H A D | msix.c | 278 static void msix_mask_all(struct PCIDevice *dev, unsigned nentries) in msix_mask_all() argument 282 for (vector = 0; vector < nentries; ++vector) { in msix_mask_all() 312 int msix_init(struct PCIDevice *dev, unsigned short nentries, in msix_init() argument 328 if (nentries < 1 || nentries > PCI_MSIX_FLAGS_QSIZE + 1) { in msix_init() 333 table_size = nentries * PCI_MSIX_ENTRY_SIZE; in msix_init() 334 pba_size = QEMU_ALIGN_UP(nentries, 64) / 8; in msix_init() 357 pci_set_word(config + PCI_MSIX_FLAGS, nentries - 1); in msix_init() 358 dev->msix_entries_nr = nentries; in msix_init() 370 dev->msix_entry_used = g_malloc0(nentries * sizeof *dev->msix_entry_used); in msix_init() 372 msix_mask_all(dev, nentries); in msix_init() [all …]
|
/openbmc/linux/drivers/net/wireless/ath/ath11k/ |
H A D | ce.c | 564 params.num_entries = ce_ring->nentries; in ath11k_ce_init_ring() 579 params.low_threshold = ce_ring->nentries - 3; in ath11k_ce_init_ring() 614 ath11k_ce_alloc_ring(struct ath11k_base *ab, int nentries, int desc_sz) in ath11k_ce_alloc_ring() argument 619 ce_ring = kzalloc(struct_size(ce_ring, skb, nentries), GFP_KERNEL); in ath11k_ce_alloc_ring() 623 ce_ring->nentries = nentries; in ath11k_ce_alloc_ring() 624 ce_ring->nentries_mask = nentries - 1; in ath11k_ce_alloc_ring() 631 nentries * desc_sz + CE_DESC_RING_ALIGN, in ath11k_ce_alloc_ring() 655 int nentries; in ath11k_ce_alloc_pipe() local 662 nentries = roundup_pow_of_two(attr->src_nentries); in ath11k_ce_alloc_pipe() 664 ring = ath11k_ce_alloc_ring(ab, nentries, desc_sz); in ath11k_ce_alloc_pipe() [all …]
|
H A D | hw.c | 1295 .nentries = __cpu_to_le32(32), 1305 .nentries = __cpu_to_le32(32), 1315 .nentries = __cpu_to_le32(32), 1325 .nentries = __cpu_to_le32(32), 1335 .nentries = __cpu_to_le32(256), 1345 .nentries = __cpu_to_le32(32), 1355 .nentries = __cpu_to_le32(32), 1365 .nentries = __cpu_to_le32(32), 1375 .nentries = __cpu_to_le32(32), 1385 .nentries = __cpu_to_le32(32), [all …]
|
H A D | ce.h | 87 __le32 nentries; member 128 unsigned int nentries; member
|
/openbmc/linux/drivers/misc/sgi-xp/ |
H A D | xp_main.c | 135 u16 nentries, u32 assigned_limit, u32 idle_limit) in xpc_connect() argument 140 DBUG_ON(payload_size == 0 || nentries == 0); in xpc_connect() 160 registration->nentries = nentries; in xpc_connect() 213 registration->nentries = 0; in xpc_disconnect()
|
H A D | xpc_uv.c | 1091 int nentries; in xpc_allocate_send_msg_slot_uv() local 1095 for (nentries = ch->local_nentries; nentries > 0; nentries--) { in xpc_allocate_send_msg_slot_uv() 1096 nbytes = nentries * sizeof(struct xpc_send_msg_slot_uv); in xpc_allocate_send_msg_slot_uv() 1101 for (entry = 0; entry < nentries; entry++) { in xpc_allocate_send_msg_slot_uv() 1110 if (nentries < ch->local_nentries) in xpc_allocate_send_msg_slot_uv() 1111 ch->local_nentries = nentries; in xpc_allocate_send_msg_slot_uv() 1125 int nentries; in xpc_allocate_recv_msg_slot_uv() local 1129 for (nentries = ch->remote_nentries; nentries > 0; nentries--) { in xpc_allocate_recv_msg_slot_uv() 1130 nbytes = nentries * ch->entry_size; in xpc_allocate_recv_msg_slot_uv() 1135 for (entry = 0; entry < nentries; entry++) { in xpc_allocate_recv_msg_slot_uv() [all …]
|
/openbmc/linux/include/linux/ |
H A D | nvmem-consumer.h | 87 size_t nentries); 89 size_t nentries); 218 nvmem_add_cell_lookups(struct nvmem_cell_lookup *entries, size_t nentries) {} in nvmem_add_cell_lookups() argument 220 nvmem_del_cell_lookups(struct nvmem_cell_lookup *entries, size_t nentries) {} in nvmem_del_cell_lookups() argument
|
/openbmc/qemu/tests/qtest/ |
H A D | virtio-9p-test.c | 113 uint32_t count, nentries; in fs_readdir() local 133 .count = &count, .nentries = &nentries, .entries = &entries in fs_readdir() 142 nentries, ==, in fs_readdir() 168 uint32_t nentries, npartialentries; in do_readdir_split() local 178 nentries = 0; in do_readdir_split() 202 .count = &count, .nentries = &npartialentries, in do_readdir_split() 209 nentries = npartialentries; in do_readdir_split() 213 nentries += npartialentries; in do_readdir_split() 225 nentries, ==, in do_readdir_split()
|
/openbmc/linux/include/uapi/linux/netfilter_bridge/ |
H A D | ebtables.h | 48 unsigned int nentries; member 64 unsigned int nentries; member 88 unsigned int nentries; member
|
/openbmc/linux/arch/s390/pci/ |
H A D | pci_clp.c | 338 u64 *resume_token, int *nentries) in clp_list_pci_req() argument 361 *nentries = (rrb->response.hdr.len - LIST_PCI_HDR_LEN) / in clp_list_pci_req() 372 int nentries, i, rc; in clp_list_pci() local 375 rc = clp_list_pci_req(rrb, &resume_token, &nentries); in clp_list_pci() 378 for (i = 0; i < nentries; i++) in clp_list_pci() 390 int nentries, i, rc; in clp_find_pci() local 393 rc = clp_list_pci_req(rrb, &resume_token, &nentries); in clp_find_pci() 397 for (i = 0; i < nentries; i++) { in clp_find_pci()
|
/openbmc/qemu/include/hw/pci/ |
H A D | msix.h | 10 int msix_init(PCIDevice *dev, unsigned short nentries, 15 int msix_init_exclusive_bar(PCIDevice *dev, unsigned short nentries,
|
/openbmc/linux/fs/afs/ |
H A D | vlclient.c | 185 u32 uniquifier, nentries, count; in afs_deliver_vl_get_addrs_u() local 207 nentries = ntohl(*bp++); in afs_deliver_vl_get_addrs_u() 210 nentries = min(nentries, count); in afs_deliver_vl_get_addrs_u() 211 alist = afs_alloc_addrlist(nentries, FS_SERVICE, AFS_FS_PORT); in afs_deliver_vl_get_addrs_u() 217 call->count2 = nentries; in afs_deliver_vl_get_addrs_u()
|