Home
last modified time | relevance | path

Searched refs:T (Results 126 – 150 of 1111) sorted by relevance

12345678910>>...45

/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/fb/
H A Dramgt215.c364 T(CWL) = T(CL) - 1; in gt215_ram_timing_calc()
374 timing[0] = (T(RP) << 24 | T(RAS) << 16 | T(RFC) << 8 | T(RC)); in gt215_ram_timing_calc()
375 timing[1] = (T(WR) + 1 + T(CWL)) << 24 | in gt215_ram_timing_calc()
377 (T(WTR) + 1 + T(CWL)) << 8 | in gt215_ram_timing_calc()
378 (5 + T(CL) - T(CWL)); in gt215_ram_timing_calc()
390 T(13); in gt215_ram_timing_calc()
392 max_t(u8,T(RCDRD), T(RCDWR)) << 16 | in gt215_ram_timing_calc()
393 max_t(u8, (T(CWL) + 6), (T(CL) + 2)) << 8 | in gt215_ram_timing_calc()
396 max_t(u8, 1, (6 - T(CL) + T(CWL))) << 8 | in gt215_ram_timing_calc()
397 (0x50 + T(CL) - T(CWL)); in gt215_ram_timing_calc()
[all …]
/openbmc/linux/scripts/coccinelle/misc/
H A Dswap.cocci20 type T;
25 * T tmp;
27 * T tmp = 0;
29 * T *tmp = NULL;
50 type T;
54 - T tmp;
56 - T tmp = 0;
58 - T *tmp = NULL;
/openbmc/phosphor-time-manager/
H A Dutils.hpp37 template <typename T>
38 T getProperty(sdbusplus::bus_t& bus, const char* service, const char* path, in getProperty()
46 std::variant<T> value{}; in getProperty()
49 return std::get<T>(value); in getProperty()
71 template <typename T>
74 const std::string& propertyName, T& value) in setProperty()
76 std::variant<T> propertyValue(value); in setProperty()
/openbmc/linux/tools/testing/selftests/rcutorture/bin/
H A Dkvm-again.sh15 T="`mktemp -d ${TMPDIR-/tmp}/kvm-again.sh.XXXXXX`"
31 if ! cp "$oldrun/scenarios" $T/scenarios.oldrun
192 cp "$i" $T
196 …kernel_dir/bzImage" "$qemu_cmd_dir/console.log" "$jitter_dir" "$dur" "$bootargs" < $T/qemu-cmd > $i
204 grep '^#' $i | sed -e 's/^# //' > $T/qemu-cmd-settings
205 . $T/qemu-cmd-settings
207 grep -v '^#' $T/scenarios.oldrun | awk '
213 }' > $T/runbatches.sh
219 ( cd "$rundir"; sh $T/runbatches.sh ) | tee -a "$rundir/log"
H A Dkvm-transform.sh24 T=`mktemp -d /tmp/kvm-transform.sh.XXXXXXXXXX`
54 echo "BEGIN {" > $T/bootarg.awk
56 awk -v dq='"' '/./ { print "\tbootarg[" NR "] = " dq $1 dq ";" }' >> $T/bootarg.awk
58 awk -v dq='"' '/./ { print "\tbootpar[" NR "] = " dq $1 dq ";" }' >> $T/bootarg.awk
59 cat >> $T/bootarg.awk << '___EOF___'
139 -v seconds="$seconds" -f $T/bootarg.awk
H A Dkvm-test-1-run-qemu.sh20 T="`mktemp -d ${TMPDIR-/tmp}/kvm-test-1-run-qemu.sh.XXXXXX`"
38 grep '^#' $resdir/qemu-cmd | sed -e 's/^# //' > $T/qemu-cmd-settings
39 . $T/qemu-cmd-settings
47 sed -e 's/^[^#].*$/'"$taskset_command"'& 2>\&1 \&/' < $resdir/qemu-cmd > $T/qemu-cmd
48 echo 'qemu_pid=$!' >> $T/qemu-cmd
49 echo 'echo $qemu_pid > $resdir/qemu-pid' >> $T/qemu-cmd
50 echo 'taskset -c -p $qemu_pid > $resdir/qemu-affinity' >> $T/qemu-cmd
57 ( . $T/qemu-cmd; wait `cat $resdir/qemu-pid`; echo $? > $resdir/qemu-retval ) &
/openbmc/phosphor-power/
H A Dutility.hpp61 template <typename T>
64 sdbusplus::bus_t& bus, T& value) in getProperty()
66 std::variant<T> property; in getProperty()
76 value = std::get<T>(property); in getProperty()
89 template <typename T>
92 sdbusplus::bus_t& bus, T& value) in setProperty()
94 std::variant<T> propertyValue(value); in setProperty()
180 template <typename T>
183 phosphor::logging::report<T>(); in powerOff()
/openbmc/phosphor-inventory-manager/
H A Dmanager.hpp35 template <typename T>
36 using ServerObject = T;
118 template <typename T, typename U, typename... Args>
122 auto& iface = getInterface<T>(path, interface); in invokeMethod()
172 template <typename T>
176 return *std::any_cast<std::shared_ptr<T>&>(holder); in getInterface()
178 template <typename T>
182 return *std::any_cast<T>(holder); in getInterface()
/openbmc/phosphor-buttons/inc/
H A Dpower_button_profile_factory.hpp33 template <typename T>
36 profileRegistry[std::string(T::getName())] = [](sdbusplus::bus_t& bus) { in addToRegistry()
37 return std::make_unique<T>(bus); in addToRegistry()
69 template <class T>
75 PowerButtonProfileFactory::instance().addToRegistry<T>(); in PowerButtonProfileRegister()
/openbmc/sdbusplus/include/sdbusplus/server/
H A Dobject.hpp161 template <class T>
165 using type = T;
194 template <class T>
198 if constexpr (requires(T& t) { t.emit_added(); }) in try_emit()
200 this->T::emit_added(); in try_emit()
203 if constexpr (requires(T& t) { t.maybe_emit_iface_added(); }) in try_emit()
205 this->T::maybe_emit_iface_added(); in try_emit()
/openbmc/phosphor-debug-collector/
H A Ddump_utils.hpp104 template <typename T>
105 T readDBusProperty(sdbusplus::bus_t& bus, const std::string& service, in readDBusProperty()
109 T retVal{}; in readDBusProperty()
144 template <typename T>
145 T getStateValue(const std::string& intf, const std::string& objPath, in getStateValue()
152 return std::get<T>(readDBusProperty<std::variant<T>>( in getStateValue()
313 template <typename T>
314 T extractParameter(const std::string& key, in extractParameter()
325 if (std::holds_alternative<T>(variantValue)) in extractParameter()
327 return std::get<T>(variantValue); in extractParameter()
[all …]
/openbmc/linux/include/math-emu/
H A Dop-4.h447 T##_f[3] = S##_f[3]; \
449 (T##_f[3] == X##_f[3] && T##_f[2] <= X##_f[2])) \
454 T##_f[3], T##_f[2]); \
464 T##_f[2] = S##_f[2]; \
465 T##_f[3] = S##_f[3]; \
467 (T##_f[3] == X##_f[3] && (T##_f[2] < X##_f[2] || \
468 (T##_f[2] == X##_f[2] && T##_f[1] <= X##_f[1])))) \
474 T##_f[3], T##_f[2], T##_f[1]); \
484 T##_f[1] = S##_f[1]; \
485 T##_f[2] = S##_f[2]; \
[all …]
/openbmc/phosphor-fan-presence/control/
H A Dzone.hpp162 template <typename T>
164 const char* property, T value) in setPropertyValue()
177 template <typename T>
194 template <typename T>
228 template <typename T>
241 std::optional<T> value; in getPropertyValueVisitor()
248 if constexpr (std::is_same_v<T, int64_t> && in getPropertyValueVisitor()
257 else if constexpr (std::is_same_v<T, V>) in getPropertyValueVisitor()
273 return std::get<T>(variant); in getPropertyValueVisitor()
613 template <typename T>
[all …]
/openbmc/phosphor-dbus-monitor/src/test/
H A Dpropertywatchtest.cpp53 template <typename T>
116 template <typename T>
120 ASSERT_EQ(std::any_cast<T>(value), Values<T>::get(ndx)); in nonFilteredCheck()
123 template <typename T>
234 template <typename T>
240 ASSERT_EQ(std::any_cast<T>(value), in filteredCheck()
241 std::any_cast<T>(FilteredValues<T>::expected(ndx))); in filteredCheck()
245 template <typename T>
247 OperandFilters<T>* opFilters = nullptr) in testStart()
287 PropertiesChanged<T> serviceResponse; in testStart()
[all …]
/openbmc/linux/rust/kernel/
H A Dioctl.rs33 pub const fn _IOR<T>(ty: u32, nr: u32) -> u32 { in _IOR()
34 _IOC(uapi::_IOC_READ, ty, nr, core::mem::size_of::<T>()) in _IOR()
39 pub const fn _IOW<T>(ty: u32, nr: u32) -> u32 { in _IOW()
40 _IOC(uapi::_IOC_WRITE, ty, nr, core::mem::size_of::<T>()) in _IOW()
45 pub const fn _IOWR<T>(ty: u32, nr: u32) -> u32 { in _IOWR()
50 core::mem::size_of::<T>(), in _IOWR()
/openbmc/linux/drivers/gpu/drm/i915/
H A Di915_params.c44 #define i915_param_named(name, T, perm, desc) \ argument
45 module_param_named(name, i915_modparams.name, T, perm); \
47 #define i915_param_named_unsafe(name, T, perm, desc) \ argument
48 module_param_named_unsafe(name, i915_modparams.name, T, perm); \
52 #define MEMBER(T, member, value, ...) .member = (value), argument
278 #define PRINT(T, x, ...) _param_print(p, #x, params->x); in i915_params_dump() argument
300 #define DUP(T, x, ...) _param_dup(&dest->x); in i915_params_copy() argument
319 #define FREE(T, x, ...) _param_free(&params->x); in i915_params_free() argument
/openbmc/linux/Documentation/admin-guide/media/
H A Dusb-cardlist.rst49 dvb-usb-a800 AVerMedia AverTV DVB-T USB 2.0 (A800)
50 dvb-usb-af9005 Afatech AF9005 DVB-T USB1.1
51 dvb-usb-af9015 Afatech AF9015 DVB-T USB2.0
52 dvb-usb-af9035 Afatech AF9035 DVB-T USB2.0
53 dvb-usb-anysee Anysee DVB-T/C USB2.0
57 dvb-usb-ce6230 Intel CE6230 DVB-T USB2.0
65 dvb-usb-dtv5100 AME DTV-5100 USB2.0 DVB-T
68 dvb-usb-ec168 E3C EC168 DVB-T USB2.0
72 dvb-usb-m920x Uli m920x DVB-T USB2.0
73 dvb-usb-nova-t-usb2 Hauppauge WinTV-NOVA-T usb2 DVB-T USB2.0
[all …]
H A Ddvb-usb-dibusb-mc-cardlist.rst17 * - Artec T14 - USB2.0 DVB-T
19 * - DiBcom USB2.0 DVB-T reference design (MOD3000P)
21 * - GRAND - USB2.0 DVB-T adapter
23 * - Humax/Coex DVB-T USB Stick 2.0 High Speed
25 * - LITE-ON USB2.0 DVB-T Tuner
/openbmc/linux/rust/kernel/sync/
H A Dcondvar.rs106 fn wait_internal<T: ?Sized, B: Backend>(&self, wait_state: u32, guard: &mut Guard<'_, T, B>) { in wait_internal() argument
133 pub fn wait<T: ?Sized, B: Backend>(&self, guard: &mut Guard<'_, T, B>) -> bool { in wait() argument
142 pub fn wait_uninterruptible<T: ?Sized, B: Backend>(&self, guard: &mut Guard<'_, T, B>) { in wait_uninterruptible() argument
/openbmc/sdbusplus/include/sdbusplus/utility/
H A Dmerge_variants.hpp25 template <typename T, typename... Unused>
28 using type = T;
56 template <typename... T>
57 using merge_variants_t = typename details::merge_variants<T...>::type;
/openbmc/phosphor-ipmi-flash/
H A Dutil.hpp22 template <typename T>
23 struct Pinned : public T
26 Pinned(Args&&... args) : T(std::forward<Args>(args)...) in Pinned()
31 *static_cast<T*>(this) = o; in operator =()
/openbmc/linux/Documentation/admin-guide/hw-vuln/
H A Dcross-thread-rsb.rst38 Affected SMT-capable processors support 1T and 2T modes of execution when SMT
39 is enabled. In 2T mode, both threads in a core are executing code. For the
40 processor core to enter 1T mode, it is required that one of the threads
44 to 2T mode, assuming the other thread is also still in C0 state.
47 depending on the SMT mode. For instance, in 2T mode each thread uses a private
48 16-entry RAP, but in 1T mode, the active thread uses a 32-entry RAP. Upon
49 transition between 1T/2T mode, the RAP contents are not modified but the RAP
52 used by RET predictions in the sibling thread following a 1T/2T switch. In
53 particular, a RET instruction executed immediately after a transition to 1T may
/openbmc/openpower-vpd-parser/
H A Dibm_vpd_utils.hpp134 template <typename T>
135 T readDBusProperty(const std::string& service, const std::string& object, in readDBusProperty()
138 T retVal{}; in readDBusProperty()
165 template <typename T>
169 T retVal{}; in getAllDBusProperty()
271 template <typename T, typename... Types>
272 inline std::string getCommand(T arg1, Types... args) in getCommand()
285 template <typename T, typename... Types>
286 inline std::vector<std::string> executeCmd(T&& path, Types... args) in executeCmd()
481 template <typename T>
[all …]
/openbmc/u-boot/
H A DMAINTAINERS10 T: SCM tree type and location.
58 T: git git://git.denx.de/u-boot-arc.git
80 T: git git://git.denx.de/u-boot-arm.git
147 T: git git://git.denx.de/u-boot-imx.git
181 T: git git://git.denx.de/u-boot-pxa.git
227 T: git git://git.denx.de/u-boot-sh.git
281 T: git git://git.denx.de/u-boot-stm.git
330 T: git git://git.denx.de/u-boot-ti.git
453 T: git git://git.denx.de/u-boot-dm.git
519 T: git git://git.denx.de/u-boot.git
[all …]
/openbmc/linux/drivers/media/usb/dvb-usb/
H A DKconfig28 tristate "AVerMedia AverTV DVB-T USB 2.0 (A800)"
37 tristate "Afatech AF9005 DVB-T USB1.1 support"
43 and the TerraTec Cinergy T USB XE (Rev.1)
61 tristate "Terratec CinergyT2/qanu USB 2.0 DVB-T receiver"
206 tristate "AME DTV-5100 USB2.0 DVB-T support"
246 tristate "Uli m920x DVB-T USB2.0 support"
260 tristate "Hauppauge WinTV-NOVA-T usb2 DVB-T USB2.0 support"
266 Say Y here to support the Hauppauge WinTV-NOVA-T usb2 DVB-T USB2.0 receiver.
314 tristate "HanfTek UMT-010 DVB-T USB2.0 support"
345 TYPHOON DVB-T USB DRIVE
[all …]

12345678910>>...45