Home
last modified time | relevance | path

Searched refs:entry (Results 2276 - 2300 of 7464) sorted by relevance

1...<<919293949596979899100>>...299

/kernel/linux/linux-6.6/fs/fat/
H A Dfat.h125 loff_t i_pos; /* on-disk position of directory entry or 0 */
134 loff_t i_pos; /* on-disk position of directory entry */
343 int entry; member
357 fatent->entry = 0; in fatent_init()
363 static inline void fatent_set_entry(struct fat_entry *fatent, int entry) in fatent_set_entry() argument
365 fatent->entry = entry; in fatent_set_entry()
380 static inline bool fat_valid_entry(struct msdos_sb_info *sbi, int entry) in fat_valid_entry() argument
382 return FAT_START_ENT <= entry && entry < sb in fat_valid_entry()
[all...]
/kernel/linux/linux-6.6/fs/exfat/
H A Dexfat_fs.h117 * helpers for fat entry.
142 /* 19 entries = 1 file entry + 1 stream entry + 17 filename entries */
146 * 19 entries x 32 bytes/entry = 608 bytes.
172 /* first empty entry hint information */
174 /* entry index of a directory */
176 /* count of continuous empty entry */
187 int eidx; /* entry index */
205 int entry; member
285 int entry; member
[all...]
/kernel/linux/linux-6.6/fs/omfs/
H A Ddir.c22 * *ofs is set to the offset of the first list entry.
119 __be64 *entry; in omfs_add_link() local
127 entry = (__be64 *) &bh->b_data[ofs]; in omfs_add_link()
128 block = be64_to_cpu(*entry); in omfs_add_link()
129 *entry = cpu_to_be64(inode->i_ino); in omfs_add_link()
164 __be64 *entry, next; in omfs_delete_entry() local
174 entry = (__be64 *) &bh->b_data[ofs]; in omfs_delete_entry()
175 block = be64_to_cpu(*entry); in omfs_delete_entry()
195 entry = &oi->i_sibling; in omfs_delete_entry()
198 *entry in omfs_delete_entry()
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/sfc/siena/
H A Dmcdi_mon.c162 efx_dword_t *entry) in efx_mcdi_mon_get_entry()
178 /* Copy out the requested entry */ in efx_mcdi_mon_get_entry()
179 *entry = ((efx_dword_t *)hwmon->dma_buf.addr)[index]; in efx_mcdi_mon_get_entry()
192 efx_dword_t entry; in efx_mcdi_mon_show_value() local
196 rc = efx_mcdi_mon_get_entry(dev, mon_attr->index, &entry); in efx_mcdi_mon_show_value()
200 state = EFX_DWORD_FIELD(entry, MC_CMD_SENSOR_VALUE_ENTRY_TYPEDEF_STATE); in efx_mcdi_mon_show_value()
204 value = EFX_DWORD_FIELD(entry, MC_CMD_SENSOR_VALUE_ENTRY_TYPEDEF_VALUE); in efx_mcdi_mon_show_value()
256 efx_dword_t entry; in efx_mcdi_mon_show_alarm() local
260 rc = efx_mcdi_mon_get_entry(dev, mon_attr->index, &entry); in efx_mcdi_mon_show_alarm()
264 state = EFX_DWORD_FIELD(entry, MC_CMD_SENSOR_VALUE_ENTRY_TYPEDEF_STAT in efx_mcdi_mon_show_alarm()
161 efx_mcdi_mon_get_entry(struct device *dev, unsigned int index, efx_dword_t *entry) efx_mcdi_mon_get_entry() argument
[all...]
/kernel/linux/linux-6.6/drivers/nvme/target/
H A Ddiscovery.c76 list_for_each_entry(s, &port->subsystems, entry) { in nvmet_subsys_disc_changed()
86 if (list_empty(&port->entry)) { in nvmet_referral_enable()
87 list_add_tail(&port->entry, &parent->referrals); in nvmet_referral_enable()
97 if (!list_empty(&port->entry)) { in nvmet_referral_disable()
99 list_del_init(&port->entry); in nvmet_referral_disable()
126 * nvmet_set_disc_traddr - set a correct discovery log entry traddr
151 list_for_each_entry(p, &req->port->subsystems, entry) { in discovery_log_entries()
156 list_for_each_entry(r, &req->port->referrals, entry) in discovery_log_entries()
216 list_for_each_entry(p, &req->port->subsystems, entry) { in nvmet_execute_disc_get_log_page()
226 list_for_each_entry(r, &req->port->referrals, entry) { in nvmet_execute_disc_get_log_page()
[all...]
/kernel/linux/linux-6.6/net/sched/
H A Dact_skbedit.c373 struct flow_action_entry *entry = entry_data; in tcf_skbedit_offload_act_setup() local
376 entry->id = FLOW_ACTION_MARK; in tcf_skbedit_offload_act_setup()
377 entry->mark = tcf_skbedit_mark(act); in tcf_skbedit_offload_act_setup()
379 entry->id = FLOW_ACTION_PTYPE; in tcf_skbedit_offload_act_setup()
380 entry->ptype = tcf_skbedit_ptype(act); in tcf_skbedit_offload_act_setup()
382 entry->id = FLOW_ACTION_PRIORITY; in tcf_skbedit_offload_act_setup()
383 entry->priority = tcf_skbedit_priority(act); in tcf_skbedit_offload_act_setup()
388 entry->id = FLOW_ACTION_RX_QUEUE_MAPPING; in tcf_skbedit_offload_act_setup()
389 entry->rx_queue = tcf_skbedit_rx_queue_mapping(act); in tcf_skbedit_offload_act_setup()
/kernel/linux/linux-6.6/sound/core/
H A Dhwdep.c490 static void snd_hwdep_proc_read(struct snd_info_entry *entry, in snd_hwdep_proc_read() argument
506 struct snd_info_entry *entry; in snd_hwdep_proc_init() local
508 entry = snd_info_create_module_entry(THIS_MODULE, "hwdep", NULL); in snd_hwdep_proc_init()
509 if (entry) { in snd_hwdep_proc_init()
510 entry->c.text.read = snd_hwdep_proc_read; in snd_hwdep_proc_init()
511 if (snd_info_register(entry) < 0) { in snd_hwdep_proc_init()
512 snd_info_free_entry(entry); in snd_hwdep_proc_init()
513 entry = NULL; in snd_hwdep_proc_init()
516 snd_hwdep_proc_entry = entry; in snd_hwdep_proc_init()
/test/xts/hats/hdf/camera/cameraMg_additional/v1_0/src/
H A Dcommon.cpp101 camera_metadata_item_t entry; in GetCameraMetadata() local
102 int ret = FindCameraMetadataItem(data, OHOS_CONTROL_AE_AVAILABLE_MODES, &entry); in GetCameraMetadata()
191 camera_metadata_item_t entry = {}; in StartStream()
193 int ret = FindCameraMetadataItem(data, OHOS_STATISTICS_FACE_IDS, &entry); in StartStream()
195 for (size_t i = 0; i < entry.count; i++) { in StartStream()
196 int id = entry.data.i32[i]; in StartStream()
201 ret = FindCameraMetadataItem(data, OHOS_STATISTICS_FACE_RECTANGLES, &entry); in StartStream()
203 for (size_t i = 0; i < entry.count; i++) { in StartStream()
204 int id = entry.data.i32[i]; in StartStream()
/test/xts/hats/hdf/camera/cameraBenchmarkTest/v1_0/src/
H A Dbenchmark_common.cpp94 camera_metadata_item_t entry; in GetCameraMetadata() local
95 int ret = FindCameraMetadataItem(data, OHOS_CONTROL_AE_AVAILABLE_MODES, &entry); in GetCameraMetadata()
185 camera_metadata_item_t entry = {}; in StartStream()
187 int ret = FindCameraMetadataItem(data, OHOS_STATISTICS_FACE_IDS, &entry); in StartStream()
189 for (size_t i = 0; i < entry.count; i++) { in StartStream()
190 int id = entry.data.i32[i]; in StartStream()
195 ret = FindCameraMetadataItem(data, OHOS_STATISTICS_FACE_RECTANGLES, &entry); in StartStream()
197 for (size_t i = 0; i < entry.count; i++) { in StartStream()
198 int id = entry.data.i32[i]; in StartStream()
/third_party/node/src/
H A Dnode_perf.cc132 const GCPerformanceEntry& entry) { in GetDetails()
140 entry.details.kind)).IsJust()) { in GetDetails()
149 entry.details.flags)).IsJust()) { in GetDetails()
177 std::unique_ptr<GCPerformanceEntry> entry = in MarkGarbageCollectionEnd() local
185 env->SetImmediate([entry = std::move(entry)](Environment* env) { in MarkGarbageCollectionEnd()
186 entry->Notify(env); in MarkGarbageCollectionEnd()
222 Local<Value> entry = args[1]; in Notify() local
228 Call(env->context(), Undefined(env->isolate()), 1, &entry)); in Notify()
130 GetDetails( Environment* env, const GCPerformanceEntry& entry) GetDetails() argument
/third_party/mesa3d/src/nouveau/codegen/
H A Dnv50_ir_target.cpp418 relocInfo->entry[n].data = data; in addReloc()
419 relocInfo->entry[n].mask = m; in addReloc()
420 relocInfo->entry[n].offset = codeSize + w * 4; in addReloc()
421 relocInfo->entry[n].bitPos = s; in addReloc()
422 relocInfo->entry[n].type = ty; in addReloc()
444 fixupInfo->entry[n] = FixupEntry(apply, ipa, reg, codeSize >> 2); in addInterp()
489 info->entry[i].apply(code, info); in nv50_ir_relocate_code()
506 info->entry[i].apply(&info->entry[i], code, data); in nv50_ir_apply_fixups()
/third_party/mesa3d/src/gallium/drivers/freedreno/
H A Dfreedreno_batch_cache.c303 struct hash_entry *entry = in fd_bc_invalidate_batch() local
305 _mesa_hash_table_remove(cache->ht, entry); in fd_bc_invalidate_batch()
318 struct set_entry *entry = _mesa_set_search_pre_hashed(batch->resources, rsc->hash, rsc); in fd_bc_invalidate_resource() local
319 _mesa_set_remove(batch->resources, entry); in fd_bc_invalidate_resource()
348 set_foreach (batch->dependencies, entry) {
349 struct fd_batch *dep = (struct fd_batch *)entry->key;
438 struct hash_entry *entry = variable
441 if (entry) {
443 fd_batch_reference_locked(&batch, (struct fd_batch *)entry->data);
/third_party/python/Lib/turtledemo/
H A D__main__.py117 return [entry[:-3] for entry in os.listdir(demo_dir) if
118 entry.endswith(".py") and entry[0] != '_']
297 for entry in getExampleEntries():
298 def load(entry=entry):
299 self.loadfile(entry)
300 menu.add_command(label=entry, underline=0,
/base/update/updater/services/package/pkg_package/
H A Dpkg_upgradefile.cpp98 PKG_LOGE("More entry for and for %s %zu", file->identity.c_str(), pkgEntryMapId_.size()); in GetEntryOffset()
127 UpgradeFileEntry *entry = static_cast<UpgradeFileEntry *>(AddPkgEntry(file->identity)); in AddEntry() local
128 if (entry == nullptr) { in AddEntry()
132 ret = entry->Init(file, inStream); in AddEntry()
134 PKG_LOGE("Fail init entry for %s", file->identity.c_str()); in AddEntry()
139 ret = entry->Pack(inStream, dataOffset, encodeLen); in AddEntry()
147 ret = entry->EncodeHeader(inStream, offset, encodeLen); in AddEntry()
591 UpgradeFileEntry *entry = new (std::nothrow) UpgradeFileEntry(this, nodeId_++); in SaveEntry() local
592 if (entry == nullptr) { in SaveEntry()
600 int32_t ret = entry in SaveEntry()
[all...]
/kernel/linux/linux-5.10/arch/nds32/kernel/
H A Dperf_event_cpu.c1290 struct perf_callchain_entry_ctx *entry = data; in callchain_trace() local
1292 perf_callchain_store(entry, fr->lp); in callchain_trace()
1301 user_backtrace(struct perf_callchain_entry_ctx *entry, unsigned long fp) in user_backtrace() argument
1320 perf_callchain_store(entry, lp); in user_backtrace()
1325 user_backtrace_opt_size(struct perf_callchain_entry_ctx *entry, in user_backtrace_opt_size() argument
1347 perf_callchain_store(entry, lp); in user_backtrace_opt_size()
1363 perf_callchain_user(struct perf_callchain_entry_ctx *entry, in perf_callchain_user() argument
1380 perf_callchain_store(entry, regs->ipc); in perf_callchain_user()
1385 if (entry->nr < PERF_MAX_STACK_DEPTH && in perf_callchain_user()
1436 perf_callchain_store(entry, l in perf_callchain_user()
1480 perf_callchain_kernel(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs) perf_callchain_kernel() argument
[all...]
/kernel/linux/linux-6.6/tools/tracing/latency/
H A Dlatency-collector.c184 struct entry { struct
222 struct entry entries[QUEUE_SIZE];
661 static int printstate_next_ticket(struct entry *req) in printstate_next_ticket()
673 void printstate_mark_req_completed(const struct entry *req) in printstate_mark_req_completed()
680 bool printstate_has_new_req_arrived(const struct entry *req) in printstate_has_new_req_arrived()
716 bool prev_req_won_race(const struct entry *req) in prev_req_won_race()
761 static int table_get_probability(const struct entry *req, in table_get_probability()
824 const struct entry *e) in queue_push_to_back()
830 static __always_inline struct entry queue_pop_from_front(struct queue *q) in queue_pop_from_front()
832 struct entry in queue_pop_from_front()
[all...]
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/
H A DBindGroupValidationTests.cpp385 // Chaining a struct that isn't an external texture binding entry is an error. in TEST_F()
971 wgpu::BindGroupLayoutEntry entry; in TEST_F() local
972 entry.binding = 0; in TEST_F()
973 entry.visibility = wgpu::ShaderStage::None; in TEST_F()
974 entry.buffer.type = wgpu::BufferBindingType::Uniform; in TEST_F()
977 descriptor.entries = &entry; in TEST_F()
1005 wgpu::BindGroupLayoutEntry entry; in TEST_F() member
1036 wgpu::BindGroupLayoutEntry entry = info.entry; in TEST_F() local
1037 entry in TEST_F()
1047 wgpu::BindGroupLayoutEntry entry = info.otherEntry; TEST_F() local
1056 wgpu::BindGroupLayoutEntry entry = info.entry; TEST_F() local
1066 wgpu::BindGroupLayoutEntry entry = info.entry; TEST_F() local
1081 wgpu::BindGroupLayoutEntry entry = info.entry; TEST_F() local
1100 wgpu::BindGroupLayoutEntry entry; TEST_F() member
1121 wgpu::BindGroupLayoutEntry entry = BGLEntryType(&utils::kExternalTextureBindingLayout); TEST_F() local
1128 wgpu::BindGroupLayoutEntry entry = info.entry; TEST_F() local
1139 wgpu::BindGroupLayoutEntry entry = info.otherEntry; TEST_F() local
1148 wgpu::BindGroupLayoutEntry entry = info.entry; TEST_F() local
1158 wgpu::BindGroupLayoutEntry entry = info.entry; TEST_F() local
1173 wgpu::BindGroupLayoutEntry entry = info.entry; TEST_F() local
[all...]
/base/update/updater/services/ui/view/page/
H A Dpage_manager.h34 bool Init(std::vector<UxPageInfo> &pageInfos, std::string_view entry);
49 bool InitImpl(UxPageInfo &pageInfo, std::string_view entry);
52 std::vector<UxSubPageInfo> &subPageInfos, std::string_view entry);
/kernel/linux/linux-5.10/arch/powerpc/include/asm/nohash/32/
H A Dhugetlb-8xx.h69 static inline pte_t arch_make_huge_pte(pte_t entry, struct vm_area_struct *vma, in arch_make_huge_pte() argument
75 return __pte(pte_val(entry) & ~_PAGE_HUGE); in arch_make_huge_pte()
77 return entry; in arch_make_huge_pte()
/kernel/linux/linux-5.10/arch/s390/hypfs/
H A Dhypfs_diag0c.c43 diag0c_data = kzalloc(struct_size(diag0c_data, entry, cpu_count), in diag0c_store()
50 diag0c_data->entry[i].cpu = cpu; in diag0c_store()
51 cpu_vec[cpu] = &diag0c_data->entry[i++]; in diag0c_store()
/kernel/linux/linux-5.10/arch/sh/kernel/
H A Dunwinder.c85 struct list_head *tmp, *entry = &unwinder_list; in unwinder_enqueue() local
95 entry = tmp; in unwinder_enqueue()
97 list_add(&ops->list, entry); in unwinder_enqueue()
/kernel/linux/linux-6.6/arch/powerpc/include/asm/nohash/32/
H A Dhugetlb-8xx.h70 static inline pte_t arch_make_huge_pte(pte_t entry, unsigned int shift, vm_flags_t flags) in arch_make_huge_pte() argument
75 return __pte(pte_val(entry) | _PAGE_SPS); in arch_make_huge_pte()
77 return __pte(pte_val(entry) | _PAGE_SPS | _PAGE_HUGE); in arch_make_huge_pte()
/kernel/linux/linux-5.10/tools/testing/selftests/kvm/x86_64/
H A Dcr4_cpuid_sync_test.c69 struct kvm_cpuid_entry2 *entry; in main() local
73 entry = kvm_get_supported_cpuid_entry(1); in main()
74 if (!(entry->ecx & X86_FEATURE_XSAVE)) { in main()
/kernel/linux/linux-6.6/arch/sh/kernel/
H A Dunwinder.c85 struct list_head *tmp, *entry = &unwinder_list; in unwinder_enqueue() local
95 entry = tmp; in unwinder_enqueue()
97 list_add(&ops->list, entry); in unwinder_enqueue()
/kernel/linux/linux-6.6/arch/s390/hypfs/
H A Dhypfs_diag0c.c43 diag0c_data = kzalloc(struct_size(diag0c_data, entry, cpu_count), in diag0c_store()
50 diag0c_data->entry[i].cpu = cpu; in diag0c_store()
51 cpu_vec[cpu] = &diag0c_data->entry[i++]; in diag0c_store()

Completed in 22 milliseconds

1...<<919293949596979899100>>...299