Home
last modified time | relevance | path

Searched refs:entry (Results 926 - 950 of 7326) sorted by relevance

1...<<31323334353637383940>>...294

/third_party/mesa3d/src/gallium/frontends/wgl/
H A Dstw_getprocaddress.c92 const struct stw_extension_entry *entry; in DrvGetProcAddress() local
99 for (entry = stw_extension_entries; entry->name; entry++) in DrvGetProcAddress()
100 if (strcmp( lpszProc, entry->name ) == 0) in DrvGetProcAddress()
101 return entry->proc; in DrvGetProcAddress()
/third_party/rust/crates/bitflags/tests/
H A Dcompile.rs33 for entry in WalkDir::new(path) { in prepare_stderr_files()
34 let entry = entry?; in prepare_stderr_files()
36 if entry.path().extension().and_then(OsStr::to_str) == Some("beta") { in prepare_stderr_files()
37 let renamed = entry.path().with_extension(""); in prepare_stderr_files()
46 rename_beta_stderr(entry.path(), renamed)?; in prepare_stderr_files()
/third_party/skia/third_party/externals/sfntly/cpp/tools/
H A Dutils.py28 for entry in os.walk(path):
29 root = entry[0]
30 files = entry[2]
46 for entry in os.walk(path):
47 root = entry[0]
48 files = entry[2]
/kernel/linux/linux-5.10/drivers/atm/
H A Dfore200e.c559 struct host_cmdq_entry* entry = &cmdq->host_entry[ cmdq->head ]; in fore200e_pca_prom_read() local
574 fore200e->bus->write(prom_dma, &entry->cp_entry->cmd.prom_block.prom_haddr); in fore200e_pca_prom_read()
576 *entry->status = STATUS_PENDING; in fore200e_pca_prom_read()
578 fore200e->bus->write(*(u32*)&opcode, (u32 __iomem *)&entry->cp_entry->cmd.prom_block.opcode); in fore200e_pca_prom_read()
580 ok = fore200e_poll(fore200e, entry->status, STATUS_COMPLETE, 400); in fore200e_pca_prom_read()
582 *entry->status = STATUS_FREE; in fore200e_pca_prom_read()
773 struct host_txq_entry* entry; in fore200e_tx_irq() local
782 entry = &txq->host_entry[ txq->tail ]; in fore200e_tx_irq()
784 if ((*entry->status & STATUS_COMPLETE) == 0) { in fore200e_tx_irq()
788 DPRINTK(3, "TX COMPLETED: entry in fore200e_tx_irq()
909 struct host_bsq_entry* entry; fore200e_supply() local
1090 struct host_rxq_entry* entry; fore200e_rx_irq() local
1228 struct host_cmdq_entry* entry = &cmdq->host_entry[ cmdq->head ]; fore200e_activate_vcin() local
1473 struct host_txq_entry* entry; fore200e_send() local
1672 struct host_cmdq_entry* entry = &cmdq->host_entry[ cmdq->head ]; fore200e_getstats() local
1758 struct host_cmdq_entry* entry = &cmdq->host_entry[ cmdq->head ]; fore200e_set_oc3() local
[all...]
/kernel/linux/linux-6.6/drivers/atm/
H A Dfore200e.c557 struct host_cmdq_entry* entry = &cmdq->host_entry[ cmdq->head ]; in fore200e_pca_prom_read() local
572 fore200e->bus->write(prom_dma, &entry->cp_entry->cmd.prom_block.prom_haddr); in fore200e_pca_prom_read()
574 *entry->status = STATUS_PENDING; in fore200e_pca_prom_read()
576 fore200e->bus->write(*(u32*)&opcode, (u32 __iomem *)&entry->cp_entry->cmd.prom_block.opcode); in fore200e_pca_prom_read()
578 ok = fore200e_poll(fore200e, entry->status, STATUS_COMPLETE, 400); in fore200e_pca_prom_read()
580 *entry->status = STATUS_FREE; in fore200e_pca_prom_read()
771 struct host_txq_entry* entry; in fore200e_tx_irq() local
780 entry = &txq->host_entry[ txq->tail ]; in fore200e_tx_irq()
782 if ((*entry->status & STATUS_COMPLETE) == 0) { in fore200e_tx_irq()
786 DPRINTK(3, "TX COMPLETED: entry in fore200e_tx_irq()
907 struct host_bsq_entry* entry; fore200e_supply() local
1088 struct host_rxq_entry* entry; fore200e_rx_irq() local
1226 struct host_cmdq_entry* entry = &cmdq->host_entry[ cmdq->head ]; fore200e_activate_vcin() local
1471 struct host_txq_entry* entry; fore200e_send() local
1670 struct host_cmdq_entry* entry = &cmdq->host_entry[ cmdq->head ]; fore200e_getstats() local
1756 struct host_cmdq_entry* entry = &cmdq->host_entry[ cmdq->head ]; fore200e_set_oc3() local
[all...]
/kernel/linux/linux-5.10/arch/x86/include/asm/
H A Ddesc.h121 #define write_ldt_entry(dt, entry, desc) native_write_ldt_entry(dt, entry, desc)
122 #define write_gdt_entry(dt, entry, desc, type) native_write_gdt_entry(dt, entry, desc, type)
123 #define write_idt_entry(dt, entry, g) native_write_idt_entry(dt, entry, g)
136 static inline void native_write_idt_entry(gate_desc *idt, int entry, const gate_desc *gate) in native_write_idt_entry() argument
138 memcpy(&idt[entry], gate, sizeof(*gate)); in native_write_idt_entry()
141 static inline void native_write_ldt_entry(struct desc_struct *ldt, int entry, const void *desc) in native_write_ldt_entry() argument
143 memcpy(&ldt[entry], des in native_write_ldt_entry()
147 native_write_gdt_entry(struct desc_struct *gdt, int entry, const void *desc, int type) native_write_gdt_entry() argument
179 __set_tss_desc(unsigned cpu, unsigned int entry, struct x86_hw_tss *addr) __set_tss_desc() argument
[all...]
/kernel/linux/linux-5.10/fs/hfsplus/
H A Dattributes.c88 void hfsplus_destroy_attr_entry(hfsplus_attr_entry *entry) in hfsplus_destroy_attr_entry() argument
90 if (entry) in hfsplus_destroy_attr_entry()
91 kmem_cache_free(hfsplus_attr_tree_cachep, entry); in hfsplus_destroy_attr_entry()
96 static int hfsplus_attr_build_record(hfsplus_attr_entry *entry, int record_type, in hfsplus_attr_build_record() argument
104 memset(entry, 0, sizeof(*entry)); in hfsplus_attr_build_record()
111 memset(entry, 0, sizeof(*entry)); in hfsplus_attr_build_record()
116 memset(entry, 0, sizeof(struct hfsplus_attr_inline_data)); in hfsplus_attr_build_record()
117 entry in hfsplus_attr_build_record()
[all...]
/kernel/linux/linux-5.10/net/dccp/ccids/lib/
H A Dpacket_history.c51 struct tfrc_tx_hist_entry *entry = kmem_cache_alloc(tfrc_tx_hist_slab, gfp_any()); in tfrc_tx_hist_add() local
53 if (entry == NULL) in tfrc_tx_hist_add()
55 entry->seqno = seqno; in tfrc_tx_hist_add()
56 entry->stamp = ktime_get_real(); in tfrc_tx_hist_add()
57 entry->next = *headp; in tfrc_tx_hist_add()
58 *headp = entry; in tfrc_tx_hist_add()
97 static inline void tfrc_rx_hist_entry_from_skb(struct tfrc_rx_hist_entry *entry, in tfrc_rx_hist_entry_from_skb() argument
103 entry->tfrchrx_seqno = DCCP_SKB_CB(skb)->dccpd_seq; in tfrc_rx_hist_entry_from_skb()
104 entry->tfrchrx_ccval = dh->dccph_ccval; in tfrc_rx_hist_entry_from_skb()
105 entry in tfrc_rx_hist_entry_from_skb()
114 struct tfrc_rx_hist_entry *entry = tfrc_rx_hist_last_rcv(h); tfrc_rx_hist_add_packet() local
[all...]
/kernel/linux/linux-6.6/drivers/net/dsa/mv88e6xxx/
H A Dglobal1.h326 struct mv88e6xxx_atu_entry *entry);
328 struct mv88e6xxx_atu_entry *entry);
338 struct mv88e6xxx_vtu_entry *entry);
340 struct mv88e6xxx_vtu_entry *entry);
342 struct mv88e6xxx_vtu_entry *entry);
344 struct mv88e6xxx_vtu_entry *entry);
346 struct mv88e6xxx_vtu_entry *entry);
348 struct mv88e6xxx_vtu_entry *entry);
350 struct mv88e6xxx_vtu_entry *entry);
353 struct mv88e6xxx_stu_entry *entry);
[all...]
/kernel/linux/linux-6.6/fs/hfsplus/
H A Dattributes.c88 void hfsplus_destroy_attr_entry(hfsplus_attr_entry *entry) in hfsplus_destroy_attr_entry() argument
90 if (entry) in hfsplus_destroy_attr_entry()
91 kmem_cache_free(hfsplus_attr_tree_cachep, entry); in hfsplus_destroy_attr_entry()
96 static int hfsplus_attr_build_record(hfsplus_attr_entry *entry, int record_type, in hfsplus_attr_build_record() argument
104 memset(entry, 0, sizeof(*entry)); in hfsplus_attr_build_record()
111 memset(entry, 0, sizeof(*entry)); in hfsplus_attr_build_record()
116 memset(entry, 0, sizeof(struct hfsplus_attr_inline_data)); in hfsplus_attr_build_record()
117 entry in hfsplus_attr_build_record()
[all...]
/kernel/linux/linux-6.6/include/drm/
H A Ddrm_gpuva_mgr.h110 * @entry: the &list_head to attach this object to a &drm_gem_object
112 struct list_head entry; member
125 * @entry: The &list_head to additionally connect &drm_gpuvas
131 struct list_head entry; member
255 if (va && !list_is_last(&va->rb.entry, &va->mgr->rb.list)) in __drm_gpuva_next()
256 return list_next_entry(va, rb.entry); in __drm_gpuva_next()
315 list_for_each_entry(va__, &(mgr__)->rb.list, rb.entry)
328 list_for_each_entry_safe(va__, next__, &(mgr__)->rb.list, rb.entry)
483 * @entry:
488 struct list_head entry; member
[all...]
/kernel/linux/linux-6.6/net/dccp/ccids/lib/
H A Dpacket_history.c51 struct tfrc_tx_hist_entry *entry = kmem_cache_alloc(tfrc_tx_hist_slab, gfp_any()); in tfrc_tx_hist_add() local
53 if (entry == NULL) in tfrc_tx_hist_add()
55 entry->seqno = seqno; in tfrc_tx_hist_add()
56 entry->stamp = ktime_get_real(); in tfrc_tx_hist_add()
57 entry->next = *headp; in tfrc_tx_hist_add()
58 *headp = entry; in tfrc_tx_hist_add()
97 static inline void tfrc_rx_hist_entry_from_skb(struct tfrc_rx_hist_entry *entry, in tfrc_rx_hist_entry_from_skb() argument
103 entry->tfrchrx_seqno = DCCP_SKB_CB(skb)->dccpd_seq; in tfrc_rx_hist_entry_from_skb()
104 entry->tfrchrx_ccval = dh->dccph_ccval; in tfrc_rx_hist_entry_from_skb()
105 entry in tfrc_rx_hist_entry_from_skb()
114 struct tfrc_rx_hist_entry *entry = tfrc_rx_hist_last_rcv(h); tfrc_rx_hist_add_packet() local
[all...]
/third_party/node/deps/npm/node_modules/cacache/lib/
H A Dverify.js15 const index = require('./entry-index')
98 indexStream.on('data', (entry) => {
99 if (opts.filter && !opts.filter(entry)) {
104 const integrity = ssri.parse(entry.integrity)
190 const entry = entries[k]
191 const excluded = opts.filter && !opts.filter(entry)
194 buckets[hashed].push(entry)
201 buckets[hashed] = [entry]
220 for (const entry of bucket) {
221 const content = contentPath(cache, entry
[all...]
/third_party/rust/crates/linux-raw-sys/gen/src/
H A Dmain.rs35 for entry in fs::read_dir("../src").unwrap() { in main()
36 let entry = entry.unwrap(); in main()
37 assert!(!entry.path().to_str().unwrap().ends_with(".")); in main()
38 if entry.file_type().unwrap().is_dir() { in main()
39 fs::remove_dir_all(entry.path()).ok(); in main()
91 .map(|entry| entry.unwrap()) in main()
94 linux_archs.sort_by_key(|entry| entry in main()
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
H A Dgenerate_gl_dispatch_table.py193 def assign_null(entry):
194 return '\n'.join([assign_null_line(line) for line in entry.split('\n')])
198 return [assign_null(entry) for entry in data]
457 # Generate the NULL/stub entry points.
466 entry = ''.join(proto.itertext())
467 return_type = entry[:-len(command_name)]
468 entry = return_type + ' INTERNAL_GL_APIENTRY ' + entry[len(return_type):] + 'NULL('
471 entry
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/subdev/bios/
H A Dtherm.c73 u32 entry; in nvbios_therm_sensor_parse() local
83 while ((entry = nvbios_therm_entry(bios, i++, &ver, &len))) { in nvbios_therm_sensor_parse()
84 s16 value = nvbios_rd16(bios, entry + 1); in nvbios_therm_sensor_parse()
86 switch (nvbios_rd08(bios, entry + 0)) { in nvbios_therm_sensor_parse()
95 offset = ((s8) nvbios_rd08(bios, entry + 2)) / 2; in nvbios_therm_sensor_parse()
157 u32 entry; in nvbios_therm_fan_parse() local
165 while ((entry = nvbios_therm_entry(bios, i++, &ver, &len))) { in nvbios_therm_fan_parse()
166 s16 value = nvbios_rd16(bios, entry + 1); in nvbios_therm_fan_parse()
168 switch (nvbios_rd08(bios, entry + 0)) { in nvbios_therm_fan_parse()
199 fan->linear_min_temp = nvbios_rd08(bios, entry in nvbios_therm_fan_parse()
[all...]
/kernel/linux/linux-6.6/drivers/infiniband/hw/irdma/
H A Dverbs.h240 struct ib_wc *entry) in set_ib_wc_op_sq()
245 entry->opcode = IB_WC_RDMA_WRITE; in set_ib_wc_op_sq()
249 entry->opcode = IB_WC_RDMA_READ; in set_ib_wc_op_sq()
255 entry->opcode = IB_WC_SEND; in set_ib_wc_op_sq()
258 entry->opcode = IB_WC_REG_MR; in set_ib_wc_op_sq()
261 entry->opcode = IB_WC_LOCAL_INV; in set_ib_wc_op_sq()
264 entry->status = IB_WC_GENERAL_ERR; in set_ib_wc_op_sq()
269 struct ib_wc *entry, bool send_imm_support) in set_ib_wc_op_rq()
276 entry->opcode = cq_poll_info->imm_valid ? in set_ib_wc_op_rq()
285 entry in set_ib_wc_op_rq()
239 set_ib_wc_op_sq(struct irdma_cq_poll_info *cq_poll_info, struct ib_wc *entry) set_ib_wc_op_sq() argument
268 set_ib_wc_op_rq(struct irdma_cq_poll_info *cq_poll_info, struct ib_wc *entry, bool send_imm_support) set_ib_wc_op_rq() argument
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvkm/subdev/bios/
H A Dtherm.c73 u32 entry; in nvbios_therm_sensor_parse() local
83 while ((entry = nvbios_therm_entry(bios, i++, &ver, &len))) { in nvbios_therm_sensor_parse()
84 s16 value = nvbios_rd16(bios, entry + 1); in nvbios_therm_sensor_parse()
86 switch (nvbios_rd08(bios, entry + 0)) { in nvbios_therm_sensor_parse()
95 offset = ((s8) nvbios_rd08(bios, entry + 2)) / 2; in nvbios_therm_sensor_parse()
157 u32 entry; in nvbios_therm_fan_parse() local
165 while ((entry = nvbios_therm_entry(bios, i++, &ver, &len))) { in nvbios_therm_fan_parse()
166 s16 value = nvbios_rd16(bios, entry + 1); in nvbios_therm_fan_parse()
168 switch (nvbios_rd08(bios, entry + 0)) { in nvbios_therm_fan_parse()
199 fan->linear_min_temp = nvbios_rd08(bios, entry in nvbios_therm_fan_parse()
[all...]
/third_party/elfio/elfio/
H A Delfio_dynamic.hpp208 T entry; in generic_add_entry_dyn() local
215 entry.d_un.d_val = convertor( decltype( entry.d_un.d_val )( 0 ) ); in generic_add_entry_dyn()
233 entry.d_un.d_val = in generic_add_entry_dyn()
234 convertor( decltype( entry.d_un.d_val )( value ) ); in generic_add_entry_dyn()
250 entry.d_un.d_ptr = in generic_add_entry_dyn()
251 convertor( decltype( entry.d_un.d_val )( value ) ); in generic_add_entry_dyn()
255 entry.d_tag = convertor( decltype( entry.d_tag )( tag ) ); in generic_add_entry_dyn()
257 dynamic_section->append_data( reinterpret_cast<char*>( &entry ), in generic_add_entry_dyn()
[all...]
/third_party/skia/src/fonts/
H A DSkFontMgr_indirect.cpp88 const DataEntry& entry = fDataCache[i]; in createTypefaceFromFontId() local
89 if (entry.fDataId == id.fDataId) { in createTypefaceFromFontId()
90 if (entry.fTtcIndex == id.fTtcIndex && in createTypefaceFromFontId()
91 !entry.fTypeface->weak_expired() && entry.fTypeface->try_ref()) in createTypefaceFromFontId()
93 return entry.fTypeface; in createTypefaceFromFontId()
96 !entry.fTypeface->weak_expired() && entry.fTypeface->try_ref()) in createTypefaceFromFontId()
98 dataTypeface.reset(entry.fTypeface); in createTypefaceFromFontId()
99 dataTypefaceIndex = entry in createTypefaceFromFontId()
[all...]
/third_party/pulseaudio/src/tests/
H A Dhashmap-test.c38 struct int_entry entry; in START_TEST() local
44 entry.key = 0; in START_TEST()
45 entry.value = 0; in START_TEST()
51 if ((put_ret = pa_hashmap_put(map, &entry.key, &entry)) != 0) { in START_TEST()
59 if ((get_ret = pa_hashmap_get(map, &lookup_key)) != &entry) { in START_TEST()
60 ck_abort_msg("Got wrong value from hashmap for k=0; got %p, want %p", get_ret, &entry); in START_TEST()
63 if ((put_ret = pa_hashmap_put(map, &entry.key, &entry)) == 0) { in START_TEST()
71 if ((get_ret = pa_hashmap_remove(map, &lookup_key)) != &entry) { in START_TEST()
[all...]
/kernel/linux/linux-5.10/drivers/net/wireless/intel/iwlwifi/mvm/
H A Dftm-initiator.c161 struct iwl_mvm_ftm_pasn_entry *entry, *prev; in iwl_mvm_ftm_remove_pasn_sta() local
165 list_for_each_entry_safe(entry, prev, &mvm->ftm_initiator.pasn_list, in iwl_mvm_ftm_remove_pasn_sta()
167 if (memcmp(entry->addr, addr, sizeof(entry->addr))) in iwl_mvm_ftm_remove_pasn_sta()
170 list_del(&entry->list); in iwl_mvm_ftm_remove_pasn_sta()
171 kfree(entry); in iwl_mvm_ftm_remove_pasn_sta()
713 struct iwl_mvm_ftm_pasn_entry *entry; in iwl_mvm_ftm_set_secured_ranging() local
722 list_for_each_entry(entry, &mvm->ftm_initiator.pasn_list, list) { in iwl_mvm_ftm_set_secured_ranging()
723 if (memcmp(entry->addr, target->bssid, sizeof(entry in iwl_mvm_ftm_set_secured_ranging()
872 struct iwl_mvm_loc_entry *entry; iwl_mvm_ftm_get_lci_civic() local
1024 struct iwl_mvm_ftm_pasn_entry *entry; iwl_mvm_ftm_pasn_update_pn() local
1185 struct iwl_mvm_loc_entry *entry; iwl_mvm_ftm_lc_notif() local
[all...]
/kernel/linux/linux-6.6/lib/
H A Dtest_hmm.c216 void *entry; in dmirror_do_fault() local
220 * it shouldn't return an error entry on success. in dmirror_do_fault()
228 entry = page; in dmirror_do_fault()
230 entry = xa_tag_pointer(entry, DPT_XA_TAG_WRITE); in dmirror_do_fault()
233 entry = xa_store(&dmirror->pt, pfn, entry, GFP_ATOMIC); in dmirror_do_fault()
234 if (xa_is_err(entry)) in dmirror_do_fault()
235 return xa_err(entry); in dmirror_do_fault()
245 void *entry; in dmirror_do_update() local
369 void *entry; dmirror_do_read() local
435 void *entry; dmirror_do_write() local
699 void *entry; dmirror_check_atomic() local
719 void *entry; dmirror_atomic_map() local
754 void *entry; dmirror_migrate_finalize_and_map() local
1039 dmirror_mkentry(struct dmirror *dmirror, struct hmm_range *range, unsigned char *perm, unsigned long entry) dmirror_mkentry() argument
[all...]
/test/xts/hats/hdf/camera/cameraMg/v1_3/src/
H A Dcamera_hdi_test_v1_3.cpp45 camera_metadata_item_t entry; in g_IsTagValueExistsU8() local
46 int ret = FindCameraMetadataItem(data, tag, &entry); in g_IsTagValueExistsU8()
48 EXPECT_NE(entry.count, 0); in g_IsTagValueExistsU8()
49 for (int i = 0; i < entry.count; i++) { in g_IsTagValueExistsU8()
50 if (entry.data.u8[i] == value) { in g_IsTagValueExistsU8()
73 camera_metadata_item_t entry; in HWTEST_F() local
74 int ret = FindCameraMetadataItem(data, OHOS_ABILITY_MOON_CAPTURE_BOOST, &entry); in HWTEST_F()
76 if (ret == HDI::Camera::V1_0::NO_ERROR && entry.data.u8 != nullptr && entry.count > 0) { in HWTEST_F()
101 camera_metadata_item_t entry; in HWTEST_F() local
134 camera_metadata_item_t entry; HWTEST_F() local
283 camera_metadata_item_t entry; HWTEST_F() local
307 camera_metadata_item_t entry; HWTEST_F() local
447 camera_metadata_item_t entry; HWTEST_F() local
590 camera_metadata_item_t entry; HWTEST_F() local
630 camera_metadata_item_t entry; HWTEST_F() local
670 camera_metadata_item_t entry; HWTEST_F() local
717 camera_metadata_item_t entry; HWTEST_F() local
765 camera_metadata_item_t entry; HWTEST_F() local
[all...]
/kernel/linux/linux-5.10/arch/xtensa/include/asm/
H A Dtlbflush.h93 static inline void invalidate_itlb_entry_no_isync (unsigned entry) in invalidate_itlb_entry_no_isync() argument
96 __asm__ __volatile__ ("iitlb %0\n" : : "a" (entry) ); in invalidate_itlb_entry_no_isync()
99 static inline void invalidate_dtlb_entry_no_isync (unsigned entry) in invalidate_dtlb_entry_no_isync() argument
102 __asm__ __volatile__ ("idtlb %0\n" : : "a" (entry) ); in invalidate_dtlb_entry_no_isync()
130 static inline void write_dtlb_entry (pte_t entry, int way) in write_dtlb_entry() argument
133 : : "r" (way), "r" (entry) ); in write_dtlb_entry()
136 static inline void write_itlb_entry (pte_t entry, int way) in write_itlb_entry() argument
139 : : "r" (way), "r" (entry) ); in write_itlb_entry()

Completed in 17 milliseconds

1...<<31323334353637383940>>...294