Home
last modified time | relevance | path

Searched refs:te (Results 1 – 25 of 82) sorted by relevance

1234

/OK3568_Linux_fs/kernel/tools/perf/util/
H A Ds390-sample-raw.c50 struct cf_trailer_entry *te; in s390_cpumcfdg_testctr() local
72 if (len - offset - sizeof(*te) == 4) in s390_cpumcfdg_testctr()
86 struct cf_trailer_entry te; in s390_cpumcfdg_dumptrail() local
88 te.flags = be64_to_cpu(tep->flags); in s390_cpumcfdg_dumptrail()
89 te.cfvn = be16_to_cpu(tep->cfvn); in s390_cpumcfdg_dumptrail()
90 te.csvn = be16_to_cpu(tep->csvn); in s390_cpumcfdg_dumptrail()
91 te.cpu_speed = be32_to_cpu(tep->cpu_speed); in s390_cpumcfdg_dumptrail()
92 te.timestamp = be64_to_cpu(tep->timestamp); in s390_cpumcfdg_dumptrail()
93 te.progusage1 = be64_to_cpu(tep->progusage1); in s390_cpumcfdg_dumptrail()
94 te.progusage2 = be64_to_cpu(tep->progusage2); in s390_cpumcfdg_dumptrail()
[all …]
H A Ds390-cpumsf.c309 static unsigned long long trailer_timestamp(struct hws_trailer_entry *te, in trailer_timestamp() argument
317 memcpy(&ts, &te->timestamp[idx], sizeof(ts)); in trailer_timestamp()
323 struct hws_trailer_entry *te) in s390_cpumsf_trailer_show() argument
327 const unsigned long long flags = be64toh(te->flags); in s390_cpumsf_trailer_show()
335 memcpy(&local.timestamp, te->timestamp, sizeof(te->timestamp)); in s390_cpumsf_trailer_show()
336 local.overflow = be64toh(te->overflow); in s390_cpumsf_trailer_show()
337 local.clock_base = be64toh(te->progusage[0]) >> 63 & 1; in s390_cpumsf_trailer_show()
338 local.progusage2 = be64toh(te->progusage2); in s390_cpumsf_trailer_show()
339 te = &local; in s390_cpumsf_trailer_show()
341 if (te->bsdes != sizeof(struct hws_basic_entry)) { in s390_cpumsf_trailer_show()
[all …]
/OK3568_Linux_fs/kernel/tools/perf/tests/
H A Dpmu-events.c166 struct pmu_event *te; in test_pmu_event_table() local
174 te = &test->event; in test_pmu_event_table()
176 for (; te->name; test++, te = &test->event) { in test_pmu_event_table()
177 if (strcmp(table->name, te->name)) in test_pmu_event_table()
182 if (!is_same(table->desc, te->desc)) { in test_pmu_event_table()
184 table->name, table->desc, te->desc); in test_pmu_event_table()
188 if (!is_same(table->topic, te->topic)) { in test_pmu_event_table()
191 te->topic); in test_pmu_event_table()
195 if (!is_same(table->long_desc, te->long_desc)) { in test_pmu_event_table()
198 te->long_desc); in test_pmu_event_table()
[all …]
/OK3568_Linux_fs/yocto/meta-qt5/recipes-qt/qt5/qtwebengine/chromium/
H A D0006-chromium-Fix-build-on-32bit-arches-with-64bit-time_t.patch42 "E: %ld.%06ld %04x %04x %d %d\n", te->ev.input_event_sec,
43 - te->ev.input_event_usec, te->ev.type, te->ev.code, te->ev.value,
44 - te->slot);
45 + te->ev.input_event_usec, te->ev.type, te->ev.code, te->ev.value, te->slot);
/OK3568_Linux_fs/kernel/drivers/gpu/drm/msm/disp/dpu1/
H A Ddpu_hw_pingpong.c94 struct dpu_hw_tear_check *te) in dpu_hw_pp_setup_te_config() argument
99 if (!pp || !te) in dpu_hw_pp_setup_te_config()
104 if (te->hw_vsync_mode) in dpu_hw_pp_setup_te_config()
107 cfg |= te->vsync_count; in dpu_hw_pp_setup_te_config()
110 DPU_REG_WRITE(c, PP_SYNC_CONFIG_HEIGHT, te->sync_cfg_height); in dpu_hw_pp_setup_te_config()
111 DPU_REG_WRITE(c, PP_VSYNC_INIT_VAL, te->vsync_init_val); in dpu_hw_pp_setup_te_config()
112 DPU_REG_WRITE(c, PP_RD_PTR_IRQ, te->rd_ptr_irq); in dpu_hw_pp_setup_te_config()
113 DPU_REG_WRITE(c, PP_START_POS, te->start_pos); in dpu_hw_pp_setup_te_config()
115 ((te->sync_threshold_continue << 16) | in dpu_hw_pp_setup_te_config()
116 te->sync_threshold_start)); in dpu_hw_pp_setup_te_config()
[all …]
/OK3568_Linux_fs/kernel/arch/s390/kernel/
H A Dperf_cpum_sf.c1175 struct hws_trailer_entry *te; in hw_collect_samples() local
1178 te = (struct hws_trailer_entry *) trailer_entry_ptr(*sdbt); in hw_collect_samples()
1180 while ((unsigned long *) sample < (unsigned long *) te) { in hw_collect_samples()
1209 te->f, sample->def, sample); in hw_collect_samples()
1220 if (!te->f) in hw_collect_samples()
1247 struct hws_trailer_entry *te; in hw_perf_event_update() local
1266 te = (struct hws_trailer_entry *) trailer_entry_ptr(*sdbt); in hw_perf_event_update()
1269 if (!te->f) { in hw_perf_event_update()
1276 if (te->overflow) in hw_perf_event_update()
1281 sampl_overflow += te->overflow; in hw_perf_event_update()
[all …]
H A Dperf_cpum_cf_diag.c107 static void cf_diag_trailer(struct cf_trailer_entry *te) in cf_diag_trailer() argument
112 te->cfvn = cpuhw->info.cfvn; /* Counter version numbers */ in cf_diag_trailer()
113 te->csvn = cpuhw->info.csvn; in cf_diag_trailer()
116 te->mach_type = cpuid.machine; in cf_diag_trailer()
117 te->cpu_speed = cf_diag_cpu_speed; in cf_diag_trailer()
118 if (te->cpu_speed) in cf_diag_trailer()
119 te->speed = 1; in cf_diag_trailer()
120 te->clock_base = 1; /* Save clock base */ in cf_diag_trailer()
121 memcpy(&te->tod_base, &tod_clock_base[1], 8); in cf_diag_trailer()
122 store_tod_clock((__u64 *)&te->timestamp); in cf_diag_trailer()
/OK3568_Linux_fs/yocto/poky/meta/files/common-licenses/
H A DCC-BY-3.0-NL27 …kkelijke toestemming gekregen heeft om rechten ingevolge deze Licentie uit te oefenen ondanks een …
29 2. Beperkingen van de uitsluitende rechten. Niets in deze Licentie strekt ertoe om de rechten te be…
31 …m de navolgende rechten met betrekking tot het Werk vrij van royalty's uit te oefenen voor de duur…
39 …d. het verspreiden van exemplaren van Afgeleide werken, het in het openbaar te tonen, op- en uitvo…
43 f. Volledigheidshalve dient te worden vermeld dat:
45 …pieën) de Licentiegever zich het recht voorbehoudt om dergelijke heffingen te innen (al dan niet d…
47 …chten) de Licentiegever afstand doet van het recht om dergelijke heffingen te innen bij zowel comm…
49 …rechtenbeheer. de Licentiegever afstand doet van het recht om vergoedingen te innen (zelfstandig o…
51 …echnische wijzigingen aan te brengen die noodzakelijk zijn om de rechten met behulp van andere med…
55te voegen aan elk exemplaar van het Werk dat de Gebruiker verspreidt, in het openbaar toont, op- o…
[all …]
/OK3568_Linux_fs/buildroot/package/refpolicy/2.20210908/
H A D0001-policy-modules-services-samba.te-make-crack-optional.patch4 Subject: [PATCH] policy/modules/services/samba.te: make crack optional
10 …policy/modules/services/samba.te:399:ERROR 'type crack_db_t is not within scope' at token ';' on l…
21 policy/modules/services/samba.te | 32 ++++++++++++++++++--------------
24 diff --git a/policy/modules/services/samba.te b/policy/modules/services/samba.te
26 --- a/policy/modules/services/samba.te
27 +++ b/policy/modules/services/samba.te
H A D0002-policy-modules-services-wireguard.te-make-iptables-o.patch4 Subject: [PATCH] policy/modules/services/wireguard.te: make iptables optional
12 …policy/modules/services/wireguard.te:66:ERROR 'type iptables_exec_t is not within scope' at token …
24 policy/modules/services/wireguard.te | 10 ++++++----
27 diff --git a/policy/modules/services/wireguard.te b/policy/modules/services/wireguard.te
29 --- a/policy/modules/services/wireguard.te
30 +++ b/policy/modules/services/wireguard.te
/OK3568_Linux_fs/kernel/tools/testing/selftests/net/
H A Dtxtimestamp.c111 static void init_timing_event(struct timing_event *te) in init_timing_event() argument
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()
119 static void add_timing_event(struct timing_event *te, in add_timing_event() argument
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()
127 if (ts_delta > te->max) in add_timing_event()
[all …]
/OK3568_Linux_fs/kernel/fs/hfsplus/
H A Dwrapper.c137 struct cdrom_tocentry te; in hfsplus_get_last_session() local
142 te.cdte_track = HFSPLUS_SB(sb)->session; in hfsplus_get_last_session()
143 te.cdte_format = CDROM_LBA; in hfsplus_get_last_session()
144 if (cdrom_read_tocentry(cdi, &te) || in hfsplus_get_last_session()
145 (te.cdte_ctrl & CDROM_DATA_TRACK) != 4) { in hfsplus_get_last_session()
149 *start = (sector_t)te.cdte_addr.lba << 2; in hfsplus_get_last_session()
/OK3568_Linux_fs/kernel/arch/s390/include/asm/
H A Dcpu_mf.h294 static inline unsigned long long trailer_timestamp(struct hws_trailer_entry *te) in trailer_timestamp() argument
297 if (te->t) in trailer_timestamp()
298 return *((unsigned long long *) &te->timestamp[1]); in trailer_timestamp()
301 return *((unsigned long long *) &te->timestamp[0]); in trailer_timestamp()
/OK3568_Linux_fs/external/xserver/hw/xquartz/bundle/Resources/Dutch.lproj/
H A DLocalizable.strings11te wijzigen. X11 herstelt de vorige staat van het beeldscherm wanneer het programma dat om de wijz…
/OK3568_Linux_fs/kernel/sound/soc/codecs/aw883xx/
H A Daw_calib.h32 #define AW_TE_CACL_VALUE(te, coil_alpha) ((int32_t)(((int32_t)te << 18) / (coil_alpha))) argument
139 int aw_cali_svc_get_dev_te(struct aw_cali_desc *cali_desc, int32_t *te);
/OK3568_Linux_fs/kernel/fs/hfs/
H A Dmdb.c42 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()
/OK3568_Linux_fs/kernel/drivers/staging/greybus/
H A Dloopback.c365 static u64 gb_loopback_calc_latency(ktime_t ts, ktime_t te) in gb_loopback_calc_latency() argument
367 return __gb_loopback_calc_latency(ktime_to_ns(ts), ktime_to_ns(te)); in gb_loopback_calc_latency()
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()
[all …]
/OK3568_Linux_fs/kernel/drivers/block/aoe/
H A Daoeblk.c64 struct aoetgt **t, **te; in aoedisk_show_netif() local
72 te = t + d->ntargets; in aoedisk_show_netif()
73 for (; t < te && *t; t++) { in aoedisk_show_netif()
116 struct aoetgt **t, **te; in aoedisk_debugfs_show() local
132 te = t + d->ntargets; in aoedisk_debugfs_show()
133 for (; t < te && *t; t++) { in aoedisk_debugfs_show()
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/dpkg/dpkg/
H A D0004-The-lutimes-function-doesn-t-work-properly-for-all-s.patch18 @@ -490,8 +490,9 @@ tarobject_set_mtime(struct tar_entry *te, const char *path)
20 if (te->type == TAR_FILETYPE_SYMLINK) {
/OK3568_Linux_fs/external/xserver/debian/po/
H A Dnl.po76 "beveiligingsredenen, dikwijls onverstandig om deze te laten opstarten door "
78 "om de algemene grafische programma's te gebruiken als root, wat mogelijk het "
80 "goed compromis is om de X-server alleen te laten opstarten door gebruikers "
/OK3568_Linux_fs/kernel/arch/x86/events/intel/
H A Dpt.c589 static inline struct topa_page *topa_entry_to_page(struct topa_entry *te) in topa_entry_to_page() argument
591 return (struct topa_page *)((unsigned long)te & PAGE_MASK); in topa_entry_to_page()
1030 pt_topa_prev_entry(struct pt_buffer *buf, struct topa_entry *te) in pt_topa_prev_entry() argument
1032 unsigned long table = (unsigned long)te & ~(PAGE_SIZE - 1); in pt_topa_prev_entry()
1037 if (tp->table != te) in pt_topa_prev_entry()
1038 return --te; in pt_topa_prev_entry()
1149 struct topa_entry *te; in pt_buffer_reset_offsets() local
1157 te = pt_topa_entry_for_page(buf, pg); in pt_buffer_reset_offsets()
1159 cur_tp = topa_entry_to_page(te); in pt_buffer_reset_offsets()
1161 buf->cur_idx = te - TOPA_ENTRY(buf->cur, 0); in pt_buffer_reset_offsets()
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/parse/parse_py/
H A DBBHandler.py234 for te in taskexpression:
235 if any( ( "%s_" % keyword ) in te for keyword in bb.data_smart.__setvar_keyword__ ):
236 …ded/supported.\nPlease rename the task not to include the keyword.\n%s" % (te, ("\n".join(map(str,…
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/share/i18n/locales/
H A Dmi_NZ113 "Pout<U016B>-te-rangi";/
123 d_t_fmt "Te %A, te %d o %B, %Y %T"
124 date_fmt "Te %A, te %d o %B, %Y %T %Z"
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/share/i18n/locales/
H A Dmi_NZ113 "Pout<U016B>-te-rangi";/
123 d_t_fmt "Te %A, te %d o %B, %Y %T"
124 date_fmt "Te %A, te %d o %B, %Y %T %Z"
/OK3568_Linux_fs/kernel/drivers/video/fbdev/omap2/omapfb/dss/
H A Ddisplay-sysfs.c71 bool te; in display_tear_store() local
76 r = strtobool(buf, &te); in display_tear_store()
80 r = dssdev->driver->enable_te(dssdev, te); in display_tear_store()

1234