/linux-6.3-rc2/tools/perf/util/ |
A D | s390-sample-raw.c | 51 struct cf_trailer_entry *te; in s390_cpumcfdg_testctr() local 87 struct cf_trailer_entry te; in s390_cpumcfdg_dumptrail() local 90 te.cfvn = be16_to_cpu(tep->cfvn); in s390_cpumcfdg_dumptrail() 91 te.csvn = be16_to_cpu(tep->csvn); in s390_cpumcfdg_dumptrail() 99 te.res1 = be16_to_cpu(tep->res1); in s390_cpumcfdg_dumptrail() 100 te.res2 = be32_to_cpu(tep->res2); in s390_cpumcfdg_dumptrail() 105 te.speed ? 'S' : ' ', te.mtda ? 'M' : ' ', in s390_cpumcfdg_dumptrail() 106 te.caca ? 'C' : ' ', te.lcda ? 'L' : ' ', in s390_cpumcfdg_dumptrail() 107 te.cfvn, te.csvn, te.cpu_speed, te.timestamp); in s390_cpumcfdg_dumptrail() 110 te.progusage1, te.progusage2, te.progusage3, in s390_cpumcfdg_dumptrail() [all …]
|
A D | s390-cpumsf.c | 336 memcpy(&local.timestamp, te->timestamp, sizeof(te->timestamp)); in s390_cpumsf_trailer_show() 340 te = &local; in s390_cpumsf_trailer_show() 353 te->bsdes, te->dsdes, te->overflow, in s390_cpumsf_trailer_show() 354 trailer_timestamp(te, te->clock_base), in s390_cpumsf_trailer_show() 355 te->clock_base, te->progusage2); in s390_cpumsf_trailer_show() 389 if (!te->bsdes && !te->dsdes) { in s390_cpumsf_validate() 479 pos -= sizeof(te); in s390_cpumsf_dump() 480 memcpy(&te, buf + pos, sizeof(te)); in s390_cpumsf_dump() 484 te.bsdes = bsdes; in s390_cpumsf_dump() 485 te.dsdes = dsdes; in s390_cpumsf_dump() [all …]
|
/linux-6.3-rc2/drivers/gpu/drm/msm/disp/dpu1/ |
A D | dpu_hw_pingpong.c | 95 struct dpu_hw_tear_check *te) in dpu_hw_pp_setup_te_config() argument 100 if (!pp || !te) in dpu_hw_pp_setup_te_config() 105 if (te->hw_vsync_mode) in dpu_hw_pp_setup_te_config() 108 cfg |= te->vsync_count; in dpu_hw_pp_setup_te_config() 111 DPU_REG_WRITE(c, PP_SYNC_CONFIG_HEIGHT, te->sync_cfg_height); in dpu_hw_pp_setup_te_config() 112 DPU_REG_WRITE(c, PP_VSYNC_INIT_VAL, te->vsync_init_val); in dpu_hw_pp_setup_te_config() 113 DPU_REG_WRITE(c, PP_RD_PTR_IRQ, te->rd_ptr_irq); in dpu_hw_pp_setup_te_config() 114 DPU_REG_WRITE(c, PP_START_POS, te->start_pos); in dpu_hw_pp_setup_te_config() 116 ((te->sync_threshold_continue << 16) | in dpu_hw_pp_setup_te_config() 117 te->sync_threshold_start)); in dpu_hw_pp_setup_te_config() [all …]
|
/linux-6.3-rc2/arch/s390/kernel/ |
A D | perf_cpum_sf.c | 120 if (te->header.t) in trailer_timestamp() 226 te->header.a = 1; in alloc_sample_data_block() 1268 if (!te->header.f) in hw_collect_samples() 1329 if (!te->header.f) { in hw_perf_event_update() 1348 (te->header.f) ? trailer_timestamp(te) : 0ULL); in hw_perf_event_update() 1467 if (!te->header.f) in aux_output_end() 1475 te->header.a = 0; in aux_output_end() 1518 te->header.f = 0; in aux_output_begin() 1519 te->header.a = 0; in aux_output_begin() 1529 te->header.a = 1; in aux_output_begin() [all …]
|
A D | perf_cpum_cf.c | 168 static void cfdiag_trailer(struct cf_trailer_entry *te) in cfdiag_trailer() argument 173 te->cfvn = cpuhw->info.cfvn; /* Counter version numbers */ in cfdiag_trailer() 174 te->csvn = cpuhw->info.csvn; in cfdiag_trailer() 177 te->mach_type = cpuid.machine; in cfdiag_trailer() 178 te->cpu_speed = cfdiag_cpu_speed; in cfdiag_trailer() 179 if (te->cpu_speed) in cfdiag_trailer() 180 te->speed = 1; in cfdiag_trailer() 181 te->clock_base = 1; /* Save clock base */ in cfdiag_trailer() 182 te->tod_base = tod_clock_base.tod; in cfdiag_trailer() 183 te->timestamp = get_tod_clock_fast(); in cfdiag_trailer()
|
/linux-6.3-rc2/tools/testing/selftests/net/ |
A D | txtimestamp.c | 113 te->min = INT64_MAX; in init_timing_event() 114 te->max = 0; in init_timing_event() 115 te->total = 0; in init_timing_event() 116 te->count = 0; in init_timing_event() 124 te->count++; in add_timing_event() 125 if (ts_delta < te->min) in add_timing_event() 126 te->min = ts_delta; in add_timing_event() 128 te->max = ts_delta; in add_timing_event() 129 te->total += ts_delta; in add_timing_event() 245 if (!te->count) in print_timing_event() [all …]
|
/linux-6.3-rc2/drivers/staging/fbtft/ |
A D | fb_st7789v.c | 94 struct gpio_desc *te; in init_tearing_effect_line() local 97 te = gpiod_get_optional(dev, "te", GPIOD_IN); in init_tearing_effect_line() 98 if (IS_ERR(te)) in init_tearing_effect_line() 99 return dev_err_probe(dev, PTR_ERR(te), "Failed to request te GPIO\n"); in init_tearing_effect_line() 102 if (!te) { in init_tearing_effect_line() 107 irq = gpiod_to_irq(te); in init_tearing_effect_line() 110 gpiod_put(te); in init_tearing_effect_line()
|
/linux-6.3-rc2/fs/hfsplus/ |
A D | wrapper.c | 135 struct cdrom_tocentry te; in hfsplus_get_last_session() local 140 te.cdte_track = HFSPLUS_SB(sb)->session; in hfsplus_get_last_session() 141 te.cdte_format = CDROM_LBA; in hfsplus_get_last_session() 142 if (cdrom_read_tocentry(cdi, &te) || in hfsplus_get_last_session() 143 (te.cdte_ctrl & CDROM_DATA_TRACK) != 4) { in hfsplus_get_last_session() 147 *start = (sector_t)te.cdte_addr.lba << 2; in hfsplus_get_last_session()
|
/linux-6.3-rc2/fs/hfs/ |
A D | mdb.c | 42 struct cdrom_tocentry te; in hfs_get_last_session() local 47 te.cdte_track = HFS_SB(sb)->session; in hfs_get_last_session() 48 te.cdte_format = CDROM_LBA; in hfs_get_last_session() 49 if (cdrom_read_tocentry(cdi, &te) || in hfs_get_last_session() 50 (te.cdte_ctrl & CDROM_DATA_TRACK) != 4) { in hfs_get_last_session() 55 *start = (sector_t)te.cdte_addr.lba << 2; in hfs_get_last_session()
|
/linux-6.3-rc2/drivers/staging/greybus/ |
A D | loopback.c | 365 static u64 gb_loopback_calc_latency(ktime_t ts, ktime_t te) in gb_loopback_calc_latency() argument 375 ktime_t ts, te; in gb_loopback_operation_sync() local 406 te = ktime_get(); in gb_loopback_operation_sync() 409 gb->elapsed_nsecs = gb_loopback_calc_latency(ts, te); in gb_loopback_operation_sync() 427 ktime_t te; in gb_loopback_async_operation_callback() local 430 te = ktime_get(); in gb_loopback_async_operation_callback() 441 gb->elapsed_nsecs = gb_loopback_calc_latency(op_async->ts, te); in gb_loopback_async_operation_callback() 802 ktime_t te; in gb_loopback_calculate_stats() local 809 te = ktime_get(); in gb_loopback_calculate_stats() 810 nlat = gb_loopback_calc_latency(gb->ts, te); in gb_loopback_calculate_stats() [all …]
|
/linux-6.3-rc2/drivers/block/aoe/ |
A D | aoeblk.c | 62 struct aoetgt **t, **te; in aoedisk_show_netif() local 70 te = t + d->ntargets; in aoedisk_show_netif() 71 for (; t < te && *t; t++) { in aoedisk_show_netif() 114 struct aoetgt **t, **te; in aoe_debugfs_show() local 130 te = t + d->ntargets; in aoe_debugfs_show() 131 for (; t < te && *t; t++) { in aoe_debugfs_show()
|
A D | aoedev.c | 199 struct aoetgt *t, **tt, **te; in aoedev_downdev() local 217 te = tt + d->ntargets; in aoedev_downdev() 218 for (; tt < te && (t = *tt); tt++) { in aoedev_downdev()
|
A D | aoecmd.c | 1434 struct aoetgt *t, **tt, **te; in addtgt() local 1437 te = tt + d->ntargets; in addtgt() 1438 for (; tt < te && *tt; tt++) in addtgt() 1441 if (tt == te) { in addtgt() 1607 struct aoetgt **t, **te; in aoecmd_cleanslate() local 1614 te = t + d->ntargets; in aoecmd_cleanslate() 1615 for (; t < te && *t; t++) in aoecmd_cleanslate()
|
/linux-6.3-rc2/Documentation/devicetree/bindings/display/panel/ |
A D | samsung,amoled-mipi-dsi.yaml | 39 te-gpios: true 71 te-gpios = <&gpf1 3 GPIO_ACTIVE_HIGH>;
|
A D | panel-dsi-cm.yaml | 62 te-gpios: true
|
/linux-6.3-rc2/drivers/video/fbdev/omap2/omapfb/dss/ |
A D | display-sysfs.c | 72 bool te; in display_tear_store() local 77 r = kstrtobool(buf, &te); in display_tear_store() 81 r = dssdev->driver->enable_te(dssdev, te); in display_tear_store()
|
/linux-6.3-rc2/arch/x86/events/intel/ |
A D | pt.c | 605 static inline struct topa_page *topa_entry_to_page(struct topa_entry *te) in topa_entry_to_page() argument 607 return (struct topa_page *)((unsigned long)te & PAGE_MASK); in topa_entry_to_page() 1046 pt_topa_prev_entry(struct pt_buffer *buf, struct topa_entry *te) in pt_topa_prev_entry() argument 1048 unsigned long table = (unsigned long)te & ~(PAGE_SIZE - 1); in pt_topa_prev_entry() 1053 if (tp->table != te) in pt_topa_prev_entry() 1054 return --te; in pt_topa_prev_entry() 1165 struct topa_entry *te; in pt_buffer_reset_offsets() local 1173 te = pt_topa_entry_for_page(buf, pg); in pt_buffer_reset_offsets() 1175 cur_tp = topa_entry_to_page(te); in pt_buffer_reset_offsets() 1177 buf->cur_idx = te - TOPA_ENTRY(buf->cur, 0); in pt_buffer_reset_offsets()
|
/linux-6.3-rc2/Documentation/devicetree/bindings/display/samsung/ |
A D | samsung,exynos5433-decon.yaml | 50 - command mode with software trigger: lcd_sys, te 58 - const: te
|
/linux-6.3-rc2/drivers/net/ethernet/chelsio/cxgb3/ |
A D | cxgb3_offload.c | 1120 struct t3c_tid_entry *te; in cxgb_redirect() local 1139 te = lookup_tid(ti, tid); in cxgb_redirect() 1140 BUG_ON(!te); in cxgb_redirect() 1141 if (te && te->ctx && te->client && te->client->redirect) { in cxgb_redirect() 1142 update_tcb = te->client->redirect(te->ctx, old, new, e); in cxgb_redirect()
|
/linux-6.3-rc2/fs/isofs/ |
A D | inode.c | 553 struct cdrom_tocentry te; in isofs_get_last_session() local 558 te.cdte_track = session; in isofs_get_last_session() 559 te.cdte_format = CDROM_LBA; in isofs_get_last_session() 560 if (cdrom_read_tocentry(cdi, &te) == 0) { in isofs_get_last_session() 562 session, te.cdte_addr.lba, in isofs_get_last_session() 563 te.cdte_ctrl & CDROM_DATA_TRACK); in isofs_get_last_session() 564 if ((te.cdte_ctrl & CDROM_DATA_TRACK) == 4) in isofs_get_last_session() 565 return te.cdte_addr.lba; in isofs_get_last_session()
|
/linux-6.3-rc2/arch/arm/boot/dts/ |
A D | omap3-n950.dts | 65 OMAP3_CORE1_IOPAD(0x20ca, PIN_INPUT | MUX_MODE4) /* gpio 62 - display te */ 239 te-gpios = <&gpio2 30 GPIO_ACTIVE_HIGH>; /* 62 */
|
/linux-6.3-rc2/tools/perf/Documentation/ |
A D | security.txt | 169 Run the command below to generate my-perf.te policy extension file with 172 # ausearch -c 'perf' --raw | audit2allow -M my-perf && cat my-perf.te 186 # checkmodule -M -m -o my-perf.mod my-perf.te
|
/linux-6.3-rc2/fs/ntfs3/ |
A D | index.c | 2124 struct NTFS_DE *e, *te, *re; in indx_get_entry_to_replace() local 2160 te = hdr_first_de(&n->index->ihdr); in indx_get_entry_to_replace() 2162 re = kmalloc(le16_to_cpu(te->size) + sizeof(u64), GFP_NOFS); in indx_get_entry_to_replace() 2169 memcpy(re, te, le16_to_cpu(te->size)); in indx_get_entry_to_replace() 2184 indx_free_children(indx, ni, te, true); in indx_get_entry_to_replace() 2192 e = hdr_delete_de(&ib->ihdr, te); in indx_get_entry_to_replace()
|
/linux-6.3-rc2/net/netfilter/ |
A D | nf_tables_api.c | 9227 nft_setelem_activate(net, te->set, &te->elem); in nf_tables_commit() 9229 &te->elem, in nf_tables_commit() 9238 &te->elem, in nf_tables_commit() 9240 nft_setelem_remove(net, te->set, &te->elem); in nf_tables_commit() 9241 if (!nft_setelem_is_catchall(te->set, &te->elem)) { in nf_tables_commit() 9243 te->set->ndeact--; in nf_tables_commit() 9465 nft_setelem_remove(net, te->set, &te->elem); in __nf_tables_abort() 9466 if (!nft_setelem_is_catchall(te->set, &te->elem)) in __nf_tables_abort() 9473 nft_setelem_data_activate(net, te->set, &te->elem); in __nf_tables_abort() 9474 nft_setelem_activate(net, te->set, &te->elem); in __nf_tables_abort() [all …]
|
/linux-6.3-rc2/arch/arm64/boot/dts/qcom/ |
A D | sm8550-mtp.dts | 506 sde_te_active: sde-te-active-state { 513 sde_te_suspend: sde-te-suspend-state {
|