Home
last modified time | relevance | path

Searched refs:entry (Results 501 - 525 of 7900) sorted by relevance

1...<<21222324252627282930>>...316

/kernel/linux/linux-6.6/kernel/bpf/
H A Ddispatcher.c46 struct bpf_dispatcher_prog *entry; in bpf_dispatcher_add_prog() local
51 entry = bpf_dispatcher_find_prog(d, prog); in bpf_dispatcher_add_prog()
52 if (entry) { in bpf_dispatcher_add_prog()
53 refcount_inc(&entry->users); in bpf_dispatcher_add_prog()
57 entry = bpf_dispatcher_find_free(d); in bpf_dispatcher_add_prog()
58 if (!entry) in bpf_dispatcher_add_prog()
62 entry->prog = prog; in bpf_dispatcher_add_prog()
63 refcount_set(&entry->users, 1); in bpf_dispatcher_add_prog()
71 struct bpf_dispatcher_prog *entry; in bpf_dispatcher_remove_prog() local
76 entry in bpf_dispatcher_remove_prog()
[all...]
/kernel/linux/linux-6.6/kernel/printk/
H A Dindex.c46 struct pi_entry *entry = pi_get_entry(mod, *pos); in pi_next() local
50 return entry; in pi_next()
57 * pi_next() still has to return the entry at index 0 later. in pi_start()
75 const struct pi_entry *entry = v; in pi_show() local
85 if (!entry->fmt) in pi_show()
88 if (entry->level) in pi_show()
89 printk_parse_prefix(entry->level, &level, &flags); in pi_show()
91 prefix_len = printk_parse_prefix(entry->fmt, &level, &flags); in pi_show()
107 seq_printf(s, " %s:%d %s \"", entry->file, entry in pi_show()
[all...]
/third_party/f2fs-tools/fsck/
H A Dxattr.h115 #define IS_XATTR_LAST_ENTRY(entry) (*(__u32 *)(entry) == 0)
121 #define XATTR_NEXT_ENTRY(entry) ((struct f2fs_xattr_entry *) ((char *)(entry) +\
122 ENTRY_SIZE(entry)))
127 #define ENTRY_SIZE(entry) (XATTR_ALIGN(sizeof(struct f2fs_xattr_entry) + \
128 entry->e_name_len + le16_to_cpu(entry->e_value_size)))
130 #define list_for_each_xattr(entry, addr) \
131 for (entry
[all...]
/third_party/skia/src/core/
H A DSkLRUCache.h50 Entry* entry = *value; in find() local
51 if (entry != fLRU.head()) { in find()
52 fLRU.remove(entry); in find()
53 fLRU.addToHead(entry); in find()
55 return &entry->fValue; in find()
61 Entry* entry = new Entry(key, std::move(value)); in insert() local
62 fMap.set(entry); in insert()
63 fLRU.addToHead(entry); in insert()
67 return &entry->fValue; in insert()
114 Entry* entry in remove() local
[all...]
/kernel/linux/linux-5.10/net/x25/
H A Dx25_route.c30 struct list_head *entry; in x25_add_route() local
35 list_for_each(entry, &x25_route_list) { in x25_add_route()
36 rt = list_entry(entry, struct x25_route, node); in x25_add_route()
81 struct list_head *entry; in x25_del_route() local
86 list_for_each(entry, &x25_route_list) { in x25_del_route()
87 rt = list_entry(entry, struct x25_route, node); in x25_del_route()
107 struct list_head *entry, *tmp; in x25_route_device_down() local
111 list_for_each_safe(entry, tmp, &x25_route_list) { in x25_route_device_down()
112 rt = list_entry(entry, struct x25_route, node); in x25_route_device_down()
152 struct list_head *entry; in x25_get_route() local
213 struct list_head *entry, *tmp; x25_route_free() local
[all...]
/third_party/rust/crates/nix/src/
H A Dmacros.rs220 $entry:ident
228 $entry = libc::$entry,
232 libc::$entry => Ok($BitFlags::$entry),
243 $entry:ident,
252 $entry = libc::$entry,
256 libc::$entry => Ok($BitFlags::$entry),
[all...]
/third_party/node/deps/v8/src/profiler/
H A Dheap-snapshot-generator.h161 void VerifyReference(HeapGraphEdge::Type type, HeapEntry* entry,
165 HeapEntry* entry, HeapSnapshotGenerator* generator,
168 HeapEntry* entry, HeapSnapshotGenerator* generator,
247 void AddLocation(HeapEntry* entry, int scriptId, int line, int col);
269 // backing storage, thus all entry pointers remain valid for the duration
407 void ExtractLocation(HeapEntry* entry, HeapObject object);
408 void ExtractLocationForJSFunction(HeapEntry* entry, JSFunction func);
409 void ExtractReferences(HeapEntry* entry, HeapObject obj);
410 void ExtractJSGlobalProxyReferences(HeapEntry* entry, JSGlobalProxy proxy);
411 void ExtractJSObjectReferences(HeapEntry* entry, JSObjec
592 FindHeapThingForHeapEntry(HeapEntry* entry) FindHeapThingForHeapEntry() argument
614 HeapEntry* entry = FindEntry(ptr); FindOrAddEntry() local
619 HeapEntry* entry = FindEntry(smi); FindOrAddEntry() local
[all...]
/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/heif_impl/heif_parser/box/
H A Ditem_property_box.cpp88 PropertyEntry entry; in ParseContent() local
90 entry.itemId = reader.Read16(); in ParseContent()
92 entry.itemId = reader.Read32(); in ParseContent()
108 entry.associations.push_back(association); in ParseContent()
110 entries_.push_back(entry); in ParseContent()
117 auto iter = std::find_if(entries_.begin(), entries_.end(), [&itemId](const auto& entry) { in GetProperties()
118 return entry.itemId == itemId; in GetProperties()
133 PropertyEntry entry; in AddProperty() local
134 entry.itemId = itemId; in AddProperty()
135 entries_.push_back(entry); in AddProperty()
[all...]
/kernel/linux/linux-5.10/fs/efivarfs/
H A Dsuper.c111 struct efivar_entry *entry; in efivarfs_callback() local
120 entry = kzalloc(sizeof(*entry), GFP_KERNEL); in efivarfs_callback()
121 if (!entry) in efivarfs_callback()
124 memcpy(entry->var.VariableName, name16, name_size); in efivarfs_callback()
125 memcpy(&(entry->var.VendorGuid), &vendor, sizeof(efi_guid_t)); in efivarfs_callback()
127 len = ucs2_utf8size(entry->var.VariableName); in efivarfs_callback()
134 ucs2_as_utf8(name, entry->var.VariableName, len); in efivarfs_callback()
136 if (efivar_variable_is_removable(entry->var.VendorGuid, name, len)) in efivarfs_callback()
141 efi_guid_to_str(&entry in efivarfs_callback()
184 efivarfs_destroy(struct efivar_entry *entry, void *data) efivarfs_destroy() argument
[all...]
/kernel/linux/linux-6.6/mm/
H A Dpage_vma_mapped.c46 swp_entry_t entry; in map_pte() local
53 * a special swap entry, nonetheless it still does in map_pte()
63 entry = pte_to_swp_entry(ptent); in map_pte()
64 if (!is_device_private_entry(entry) && in map_pte()
65 !is_device_exclusive_entry(entry)) in map_pte()
88 * entry that points to [pvmw->pfn, @pvmw->pfn + @pvmw->nr_pages)
102 swp_entry_t entry; in check_pte() local
105 entry = pte_to_swp_entry(ptent); in check_pte()
107 if (!is_migration_entry(entry) && in check_pte()
108 !is_device_exclusive_entry(entry)) in check_pte()
113 swp_entry_t entry; check_pte() local
243 swp_entry_t entry; page_vma_mapped_walk() local
[all...]
/third_party/benchmark/test/
H A Doutput_test.h159 #define CHECK_RESULT_VALUE_IMPL(entry, getfn, var_type, var_name, relationship, value) \
161 (entry.getfn< var_type >(var_name), (value)) << "\n" \
162 << __FILE__ << ":" << __LINE__ << ": " << (entry).name << ":\n" \
165 << "=" << (entry).getfn< var_type >(var_name) \
170 #define CHECK_FLOAT_RESULT_VALUE_IMPL(entry, getfn, var_type, var_name, relationship, value, eps_factor) \
172 (entry.getfn< var_type >(var_name), (value), (eps_factor) * (value)) << "\n" \
173 << __FILE__ << ":" << __LINE__ << ": " << (entry).name << ":\n" \
176 << "=" << (entry).getfn< var_type >(var_name) \
181 << "but delta was " << ((entry).getfn< var_type >(var_name) - (value)) \
182 << " (" << (((entry)
[all...]
/third_party/mesa3d/src/gallium/drivers/freedreno/a2xx/
H A Dfd2_query.c88 struct fd_batch_query_entry *entry = &data->query_entries[i]; variable
89 const struct fd_perfcntr_group *g = &screen->perfcntr_groups[entry->gid];
90 unsigned counter_idx = counters_per_group[entry->gid]++;
95 OUT_RING(ring, g->countables[entry->cid].selector);
102 struct fd_batch_query_entry *entry = &data->query_entries[i]; variable
103 const struct fd_perfcntr_group *g = &screen->perfcntr_groups[entry->gid];
104 unsigned counter_idx = counters_per_group[entry->gid]++;
129 struct fd_batch_query_entry *entry = &data->query_entries[i]; variable
130 const struct fd_perfcntr_group *g = &screen->perfcntr_groups[entry->gid];
131 unsigned counter_idx = counters_per_group[entry
192 struct fd_batch_query_entry *entry = &data->query_entries[i]; fd2_create_batch_query() local
[all...]
/kernel/linux/linux-5.10/net/atm/
H A Dmpc.c87 static void purge_egress_shortcut(struct atm_vcc *vcc, eg_cache_entry *entry);
175 * Overwrites the old entry or makes a new one.
179 struct atm_mpoa_qos *entry; in atm_mpoa_add_qos() local
181 entry = atm_mpoa_search_qos(dst_ip); in atm_mpoa_add_qos()
182 if (entry != NULL) { in atm_mpoa_add_qos()
183 entry->qos = *qos; in atm_mpoa_add_qos()
184 return entry; in atm_mpoa_add_qos()
187 entry = kmalloc(sizeof(struct atm_mpoa_qos), GFP_KERNEL); in atm_mpoa_add_qos()
188 if (entry == NULL) { in atm_mpoa_add_qos()
190 return entry; in atm_mpoa_add_qos()
219 atm_mpoa_delete_qos(struct atm_mpoa_qos *entry) atm_mpoa_delete_qos() argument
494 in_cache_entry *entry; send_via_shortcut() local
1083 in_cache_entry *entry; MPOA_trigger_rcvd() local
1116 check_qos_and_open_shortcut(struct k_message *msg, struct mpoa_client *client, in_cache_entry *entry) check_qos_and_open_shortcut() argument
1158 in_cache_entry *entry = mpc->in_ops->get(dst_ip, mpc); MPOA_res_reply_rcvd() local
1210 in_cache_entry *entry = mpc->in_ops->get_with_mask(dst_ip, mpc, mask); ingress_purge_rcvd() local
1232 eg_cache_entry *entry = mpc->eg_ops->get_by_cache_id(cache_id, mpc); egress_purge_rcvd() local
1247 purge_egress_shortcut(struct atm_vcc *vcc, eg_cache_entry *entry) purge_egress_shortcut() argument
1286 eg_cache_entry *entry; mps_death() local
1312 eg_cache_entry *entry = mpc->eg_ops->get_by_cache_id(msg->content.eg_info.cache_id, mpc); MPOA_cache_impos_rcvd() local
1392 eg_cache_entry *entry; clean_up() local
[all...]
/kernel/linux/linux-6.6/net/atm/
H A Dmpc.c87 static void purge_egress_shortcut(struct atm_vcc *vcc, eg_cache_entry *entry);
175 * Overwrites the old entry or makes a new one.
179 struct atm_mpoa_qos *entry; in atm_mpoa_add_qos() local
181 entry = atm_mpoa_search_qos(dst_ip); in atm_mpoa_add_qos()
182 if (entry != NULL) { in atm_mpoa_add_qos()
183 entry->qos = *qos; in atm_mpoa_add_qos()
184 return entry; in atm_mpoa_add_qos()
187 entry = kmalloc(sizeof(struct atm_mpoa_qos), GFP_KERNEL); in atm_mpoa_add_qos()
188 if (entry == NULL) { in atm_mpoa_add_qos()
190 return entry; in atm_mpoa_add_qos()
219 atm_mpoa_delete_qos(struct atm_mpoa_qos *entry) atm_mpoa_delete_qos() argument
494 in_cache_entry *entry; send_via_shortcut() local
1083 in_cache_entry *entry; MPOA_trigger_rcvd() local
1116 check_qos_and_open_shortcut(struct k_message *msg, struct mpoa_client *client, in_cache_entry *entry) check_qos_and_open_shortcut() argument
1158 in_cache_entry *entry = mpc->in_ops->get(dst_ip, mpc); MPOA_res_reply_rcvd() local
1210 in_cache_entry *entry = mpc->in_ops->get_with_mask(dst_ip, mpc, mask); ingress_purge_rcvd() local
1232 eg_cache_entry *entry = mpc->eg_ops->get_by_cache_id(cache_id, mpc); egress_purge_rcvd() local
1247 purge_egress_shortcut(struct atm_vcc *vcc, eg_cache_entry *entry) purge_egress_shortcut() argument
1286 eg_cache_entry *entry; mps_death() local
1312 eg_cache_entry *entry = mpc->eg_ops->get_by_cache_id(msg->content.eg_info.cache_id, mpc); MPOA_cache_impos_rcvd() local
1392 eg_cache_entry *entry; clean_up() local
[all...]
/kernel/linux/linux-5.10/arch/arm/kernel/
H A Djump_label.c7 static void __arch_jump_label_transform(struct jump_entry *entry, in __arch_jump_label_transform() argument
11 void *addr = (void *)entry->code; in __arch_jump_label_transform()
15 insn = arm_gen_branch(entry->code, entry->target); in __arch_jump_label_transform()
25 void arch_jump_label_transform(struct jump_entry *entry, in arch_jump_label_transform() argument
28 __arch_jump_label_transform(entry, type, false); in arch_jump_label_transform()
31 void arch_jump_label_transform_static(struct jump_entry *entry, in arch_jump_label_transform_static() argument
34 __arch_jump_label_transform(entry, type, true); in arch_jump_label_transform_static()
/kernel/linux/linux-5.10/drivers/firmware/efi/
H A Desrt.c74 /* entry attribute */
77 ssize_t (*show)(struct esre_entry *entry, char *buf);
78 ssize_t (*store)(struct esre_entry *entry,
95 struct esre_entry *entry = to_entry(kobj); in esre_attr_show() local
102 return attr->show(entry, buf); in esre_attr_show()
110 static ssize_t fw_class_show(struct esre_entry *entry, char *buf) in fw_class_show() argument
114 efi_guid_to_str(&entry->esre.esre1->fw_class, str); in fw_class_show()
124 static ssize_t name##_show(struct esre_entry *entry, char *buf) \
127 le##size##_to_cpu(entry->esre.esre1->name)); \
151 struct esre_entry *entry in esre_release() local
169 struct esre_entry *entry; esre_create_sysfs_entry() local
370 struct esre_entry *entry, *next; cleanup_entry_list() local
[all...]
/kernel/linux/linux-5.10/arch/x86/kvm/
H A Dcpuid.h75 * the leaf being queried must have an entry in the lookup table.
109 static __always_inline u32 *__cpuid_entry_get_reg(struct kvm_cpuid_entry2 *entry, in __cpuid_entry_get_reg() argument
114 return &entry->eax; in __cpuid_entry_get_reg()
116 return &entry->ebx; in __cpuid_entry_get_reg()
118 return &entry->ecx; in __cpuid_entry_get_reg()
120 return &entry->edx; in __cpuid_entry_get_reg()
127 static __always_inline u32 *cpuid_entry_get_reg(struct kvm_cpuid_entry2 *entry, in cpuid_entry_get_reg() argument
132 return __cpuid_entry_get_reg(entry, cpuid.reg); in cpuid_entry_get_reg()
135 static __always_inline u32 cpuid_entry_get(struct kvm_cpuid_entry2 *entry, in cpuid_entry_get() argument
138 u32 *reg = cpuid_entry_get_reg(entry, x86_featur in cpuid_entry_get()
143 cpuid_entry_has(struct kvm_cpuid_entry2 *entry, unsigned int x86_feature) cpuid_entry_has() argument
149 cpuid_entry_clear(struct kvm_cpuid_entry2 *entry, unsigned int x86_feature) cpuid_entry_clear() argument
157 cpuid_entry_set(struct kvm_cpuid_entry2 *entry, unsigned int x86_feature) cpuid_entry_set() argument
165 cpuid_entry_change(struct kvm_cpuid_entry2 *entry, unsigned int x86_feature, bool set) cpuid_entry_change() argument
181 cpuid_entry_override(struct kvm_cpuid_entry2 *entry, enum cpuid_leafs leaf) cpuid_entry_override() argument
194 struct kvm_cpuid_entry2 *entry; guest_cpuid_get_register() local
[all...]
/kernel/linux/linux-5.10/tools/testing/selftests/kvm/lib/s390x/
H A Dprocessor.c38 * a page table (ri == 4). Returns a suitable region/segment table entry
58 uint64_t *entry; in virt_pg_map() local
78 entry = addr_gpa2hva(vm, vm->pgd); in virt_pg_map()
81 if (entry[idx] & REGION_ENTRY_INVALID) in virt_pg_map()
82 entry[idx] = virt_alloc_region(vm, ri, memslot); in virt_pg_map()
83 entry = addr_gpa2hva(vm, entry[idx] & REGION_ENTRY_ORIGIN); in virt_pg_map()
86 /* Fill in page table entry */ in virt_pg_map()
88 if (!(entry[idx] & PAGE_INVALID)) in virt_pg_map()
91 entry[id in virt_pg_map()
97 uint64_t *entry; addr_gva2gpa() local
136 uint64_t addr, *entry; virt_dump_region() local
[all...]
/kernel/linux/linux-5.10/drivers/misc/vmw_vmci/
H A Dvmci_datagram.c36 struct datagram_entry *entry; member
48 * Create a datagram entry given a handle pointer.
59 struct datagram_entry *entry; in dg_create_handle() local
74 entry = kmalloc(sizeof(*entry), GFP_KERNEL); in dg_create_handle()
75 if (!entry) { in dg_create_handle()
76 pr_warn("Failed allocating memory for datagram entry\n"); in dg_create_handle()
80 entry->run_delayed = (flags & VMCI_FLAG_DG_DELAYED_CB) ? true : false; in dg_create_handle()
81 entry->flags = flags; in dg_create_handle()
82 entry in dg_create_handle()
461 struct datagram_entry *entry; vmci_datagram_destroy_handle() local
[all...]
/kernel/linux/linux-6.6/drivers/misc/vmw_vmci/
H A Dvmci_datagram.c36 struct datagram_entry *entry; member
48 * Create a datagram entry given a handle pointer.
59 struct datagram_entry *entry; in dg_create_handle() local
74 entry = kmalloc(sizeof(*entry), GFP_KERNEL); in dg_create_handle()
75 if (!entry) { in dg_create_handle()
76 pr_warn("Failed allocating memory for datagram entry\n"); in dg_create_handle()
80 entry->run_delayed = (flags & VMCI_FLAG_DG_DELAYED_CB) ? true : false; in dg_create_handle()
81 entry->flags = flags; in dg_create_handle()
82 entry in dg_create_handle()
461 struct datagram_entry *entry; vmci_datagram_destroy_handle() local
[all...]
/kernel/linux/linux-6.6/drivers/firmware/efi/
H A Desrt.c74 /* entry attribute */
77 ssize_t (*show)(struct esre_entry *entry, char *buf);
78 ssize_t (*store)(struct esre_entry *entry,
95 struct esre_entry *entry = to_entry(kobj); in esre_attr_show() local
98 return attr->show(entry, buf); in esre_attr_show()
106 static ssize_t fw_class_show(struct esre_entry *entry, char *buf) in fw_class_show() argument
110 efi_guid_to_str(&entry->esre.esre1->fw_class, str); in fw_class_show()
120 static ssize_t name##_show(struct esre_entry *entry, char *buf) \
123 le##size##_to_cpu(entry->esre.esre1->name)); \
149 struct esre_entry *entry in esre_release() local
167 struct esre_entry *entry; esre_create_sysfs_entry() local
363 struct esre_entry *entry, *next; cleanup_entry_list() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/transform_feedback/
H A DvktTransformFeedbackFuzzLayoutCase.cpp159 std::ostream& operator<< (std::ostream& stream, const BlockLayoutEntry& entry) in operator <<() argument
161 stream << entry.name << " { name = " << entry.name in operator <<()
162 << ", buffer = " << entry.xfbBuffer in operator <<()
163 << ", offset = " << entry.xfbOffset in operator <<()
164 << ", size = " << entry.xfbSize in operator <<()
165 << ", blockDeclarationNdx = " << entry.blockDeclarationNdx in operator <<()
166 << ", instanceNdx = " << entry.instanceNdx in operator <<()
169 for (std::vector<int>::const_iterator i = entry.activeInterfaceIndices.begin(); i != entry in operator <<()
180 operator <<(std::ostream& stream, const InterfaceLayoutEntry& entry) operator <<() argument
209 const InterfaceLayoutEntry& entry = layout.interfaces[layout.blocks[blockNdx].activeInterfaceIndices[entryNdx]]; operator <<() local
461 createMask(void* maskBasePtr, const InterfaceLayoutEntry& entry, const void* basePtr0, const void* basePtr) createMask() argument
519 const InterfaceLayoutEntry& entry = layout.interfaces[layout.blocks[blockNdx].activeInterfaceIndices[entryNdx]]; createMask() local
571 InterfaceLayoutEntry entry; computeXfbLayout() local
623 InterfaceLayoutEntry entry; computeXfbLayout() local
651 InterfaceLayoutEntry entry; computeXfbLayout() local
904 generateValue(const InterfaceLayoutEntry& entry, void* basePtr, de::Random& rnd) generateValue() argument
956 const InterfaceLayoutEntry& entry = layout.interfaces[layout.blocks[blockNdx].activeInterfaceIndices[entryNdx]]; generateValues() local
1205 generateValueSrc(std::ostringstream& src, const InterfaceLayoutEntry& entry, const void* basePtr, int elementNdx) generateValueSrc() argument
1266 writeMatrixTypeSrc(int columnCount, int rowCount, std::string type, std::ostringstream& src, const std::string& srcName, const void* basePtr, const InterfaceLayoutEntry& entry, bool vector) writeMatrixTypeSrc() argument
1341 generateTestSrcMatrixPerVec(std::ostringstream& src, glu::DataType elementType, const std::string& srcName, const void* basePtr, const InterfaceLayoutEntry& entry) generateTestSrcMatrixPerVec() argument
1360 generateTestSrcMatrixPerElement(std::ostringstream& src, glu::DataType elementType, const std::string& srcName, const void* basePtr, const InterfaceLayoutEntry& entry) generateTestSrcMatrixPerElement() argument
1380 generateSingleAssignment(std::ostringstream& src, glu::DataType elementType, const std::string& srcName, const void* basePtr, const InterfaceLayoutEntry& entry, MatrixLoadFlags matrixLoadFlag) generateSingleAssignment() argument
1419 const InterfaceLayoutEntry& entry = layout.interfaces[interfaceLayoutNdx]; generateAssignment() local
1795 validateValue(const InterfaceLayoutEntry& entry, const void* basePtr0, const void* basePtr, const void* receivedBasePtr) validateValue() argument
1892 const InterfaceLayoutEntry& entry = m_layout.interfaces[m_layout.blocks[blockNdx].activeInterfaceIndices[entryNdx]]; validateValues() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/transform_feedback/
H A DvktTransformFeedbackFuzzLayoutCase.cpp159 std::ostream& operator<< (std::ostream& stream, const BlockLayoutEntry& entry) in operator <<() argument
161 stream << entry.name << " { name = " << entry.name in operator <<()
162 << ", buffer = " << entry.xfbBuffer in operator <<()
163 << ", offset = " << entry.xfbOffset in operator <<()
164 << ", size = " << entry.xfbSize in operator <<()
165 << ", blockDeclarationNdx = " << entry.blockDeclarationNdx in operator <<()
166 << ", instanceNdx = " << entry.instanceNdx in operator <<()
169 for (std::vector<int>::const_iterator i = entry.activeInterfaceIndices.begin(); i != entry in operator <<()
180 operator <<(std::ostream& stream, const InterfaceLayoutEntry& entry) operator <<() argument
209 const InterfaceLayoutEntry& entry = layout.interfaces[layout.blocks[blockNdx].activeInterfaceIndices[entryNdx]]; operator <<() local
461 createMask(void* maskBasePtr, const InterfaceLayoutEntry& entry, const void* basePtr0, const void* basePtr) createMask() argument
519 const InterfaceLayoutEntry& entry = layout.interfaces[layout.blocks[blockNdx].activeInterfaceIndices[entryNdx]]; createMask() local
571 InterfaceLayoutEntry entry; computeXfbLayout() local
623 InterfaceLayoutEntry entry; computeXfbLayout() local
651 InterfaceLayoutEntry entry; computeXfbLayout() local
904 generateValue(const InterfaceLayoutEntry& entry, void* basePtr, de::Random& rnd) generateValue() argument
956 const InterfaceLayoutEntry& entry = layout.interfaces[layout.blocks[blockNdx].activeInterfaceIndices[entryNdx]]; generateValues() local
1205 generateValueSrc(std::ostringstream& src, const InterfaceLayoutEntry& entry, const void* basePtr, int elementNdx) generateValueSrc() argument
1266 writeMatrixTypeSrc(int columnCount, int rowCount, std::string type, std::ostringstream& src, const std::string& srcName, const void* basePtr, const InterfaceLayoutEntry& entry, bool vector) writeMatrixTypeSrc() argument
1341 generateTestSrcMatrixPerVec(std::ostringstream& src, glu::DataType elementType, const std::string& srcName, const void* basePtr, const InterfaceLayoutEntry& entry) generateTestSrcMatrixPerVec() argument
1360 generateTestSrcMatrixPerElement(std::ostringstream& src, glu::DataType elementType, const std::string& srcName, const void* basePtr, const InterfaceLayoutEntry& entry) generateTestSrcMatrixPerElement() argument
1380 generateSingleAssignment(std::ostringstream& src, glu::DataType elementType, const std::string& srcName, const void* basePtr, const InterfaceLayoutEntry& entry, MatrixLoadFlags matrixLoadFlag) generateSingleAssignment() argument
1419 const InterfaceLayoutEntry& entry = layout.interfaces[interfaceLayoutNdx]; generateAssignment() local
1795 validateValue(const InterfaceLayoutEntry& entry, const void* basePtr0, const void* basePtr, const void* receivedBasePtr) validateValue() argument
1892 const InterfaceLayoutEntry& entry = m_layout.interfaces[m_layout.blocks[blockNdx].activeInterfaceIndices[entryNdx]]; validateValues() local
[all...]
/kernel/linux/linux-5.10/drivers/net/wireless/ath/
H A Dkey.c42 bool ath_hw_keyreset(struct ath_common *common, u16 entry) in ath_hw_keyreset() argument
47 if (entry >= common->keymax) { in ath_hw_keyreset()
48 ath_err(common, "keyreset: keycache entry %u out of range\n", in ath_hw_keyreset()
49 entry); in ath_hw_keyreset()
53 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry)); in ath_hw_keyreset()
57 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0); in ath_hw_keyreset()
58 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0); in ath_hw_keyreset()
59 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0); in ath_hw_keyreset()
60 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0); in ath_hw_keyreset()
61 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), in ath_hw_keyreset()
87 ath_hw_keysetmac(struct ath_common *common, u16 entry, const u8 *mac) ath_hw_keysetmac() argument
129 ath_hw_set_keycache_entry(struct ath_common *common, u16 entry, const struct ath_keyval *k, const u8 *mac) ath_hw_set_keycache_entry() argument
[all...]
/kernel/linux/linux-6.6/drivers/net/wireless/ath/
H A Dkey.c42 bool ath_hw_keyreset(struct ath_common *common, u16 entry) in ath_hw_keyreset() argument
47 if (entry >= common->keymax) { in ath_hw_keyreset()
48 ath_err(common, "keyreset: keycache entry %u out of range\n", in ath_hw_keyreset()
49 entry); in ath_hw_keyreset()
53 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry)); in ath_hw_keyreset()
57 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0); in ath_hw_keyreset()
58 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0); in ath_hw_keyreset()
59 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0); in ath_hw_keyreset()
60 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0); in ath_hw_keyreset()
61 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), in ath_hw_keyreset()
87 ath_hw_keysetmac(struct ath_common *common, u16 entry, const u8 *mac) ath_hw_keysetmac() argument
129 ath_hw_set_keycache_entry(struct ath_common *common, u16 entry, const struct ath_keyval *k, const u8 *mac) ath_hw_set_keycache_entry() argument
[all...]

Completed in 16 milliseconds

1...<<21222324252627282930>>...316