/openbmc/phosphor-host-ipmid/include/ipmid/ |
H A D | utility.hpp | 46 template <std::size_t N, typename FirstArg, typename... Rest> 49 template <std::size_t N, typename FirstArg, typename... Rest> 50 struct StripFirstArgs<N, std::tuple<FirstArg, Rest...>> : 51 StripFirstArgs<N - 1, std::tuple<Rest...>> 54 template <typename FirstArg, typename... Rest> 55 struct StripFirstArgs<0, std::tuple<FirstArg, Rest...>> 57 using type = std::tuple<FirstArg, Rest...>; 78 template <typename FirstArg, typename... Rest> 121 template <typename FirstArg, typename... Rest> 122 struct GetFirstArg<std::tuple<FirstArg, Rest...>>
|
/openbmc/sdbusplus/include/sdbusplus/utility/ |
H A D | type_traits.hpp | 33 template <std::size_t N, typename FirstArg, typename... Rest> 36 template <std::size_t N, typename FirstArg, typename... Rest> 37 struct strip_first_n_args<N, std::tuple<FirstArg, Rest...>> : 38 strip_first_n_args<N - 1, std::tuple<Rest...>> 41 template <typename FirstArg, typename... Rest> 42 struct strip_first_n_args<0, std::tuple<FirstArg, Rest...>> 44 using type = std::tuple<FirstArg, Rest...>; 70 template <typename FirstArg, typename... Rest> 71 struct get_first_arg<std::tuple<FirstArg, Rest...>>
|
H A D | dedup_variant.hpp | 44 template <typename... Done, typename First, typename... Rest> 45 struct dedup_variant<std::variant<Done...>, First, Rest...> : 48 dedup_variant<std::variant<Done...>, Rest...>, 49 dedup_variant<std::variant<Done..., First>, Rest...>>
|
H A D | merge_variants.hpp | 43 template <typename D, typename... Done, typename... Next, typename... Rest> 45 Rest...> : 47 sdbusplus::utility::dedup_variant_t<D, Done..., Next...>, Rest...>
|
/openbmc/linux/drivers/media/dvb-frontends/ |
H A D | dib0070.c | 372 u32 FBDiv, Rest, FREF, VCOF_kHz; in dib0070_tune_digital() local 402 Rest = (VCOF_kHz / state->current_tune_table_index->presc) - FBDiv * FREF; in dib0070_tune_digital() 409 Rest = 2 * freq - FBDiv * FREF; in dib0070_tune_digital() 413 if (Rest < LPF) in dib0070_tune_digital() 414 Rest = 0; in dib0070_tune_digital() 415 else if (Rest < 2 * LPF) in dib0070_tune_digital() 416 Rest = 2 * LPF; in dib0070_tune_digital() 417 else if (Rest > (FREF - LPF)) { in dib0070_tune_digital() 418 Rest = 0; in dib0070_tune_digital() 420 } else if (Rest > (FREF - 2 * LPF)) in dib0070_tune_digital() [all …]
|
H A D | dib0090.c | 2240 u32 FBDiv, Rest, FREF, VCOF_kHz = 0; in dib0090_tune() local 2372 Rest = (VCOF_kHz / pll->topresc) - FBDiv * FREF; in dib0090_tune() 2374 if (Rest < LPF) in dib0090_tune() 2375 Rest = 0; in dib0090_tune() 2376 else if (Rest < 2 * LPF) in dib0090_tune() 2377 Rest = 2 * LPF; in dib0090_tune() 2378 else if (Rest > (FREF - LPF)) { in dib0090_tune() 2379 Rest = 0; in dib0090_tune() 2381 } else if (Rest > (FREF - 2 * LPF)) in dib0090_tune() 2382 Rest = FREF - 2 * LPF; in dib0090_tune() [all …]
|
/openbmc/openbmc-test-automation/systest/collection/ |
H A D | bmc_collect_sensors.robot | 18 ${sensors_values_rest} Rest sensors collection excluded 20 ${sensors_flagged_rest} Rest sensors collection excluded 26 Rest Collect Sensors 27 [Documentation] Collect the sensors values using the OpenBMC Rest API. 85 Log Sensors detected out of bounds via Rest:${\n}${sensors_flagged_rest} console=true
|
H A D | bmc_collect_vpd_and_hw_status.robot | 16 ${rest_collected_values} Rest collection excluded 21 Rest Collect VPD And Hardware Status 22 [Documentation] Collect VPD and hardware status using the OpenBMC Rest API. 67 Log Rest collected values:${\n}${rest_collected_values}
|
H A D | bmc_collect_esels.robot | 16 ${error_logs_flagged_rest} Rest error log collection excluded 18 ${rest_error_logs} Rest error log collection excluded 23 Rest Collect eSELs 24 [Documentation] Collect eSEL using the OpenBMC Rest API.
|
/openbmc/sdbusplus/include/sdbusplus/message/ |
H A D | read.hpp | 510 template <typename Tuple, typename Arg, typename... Rest> 513 Arg&& arg, Rest&&... rest); 521 template <typename Tuple, typename Arg, typename... Rest> 524 Arg&& arg, Rest&&... rest); 552 template <typename Tuple, typename Arg, typename... Rest> 555 Arg&& arg, Rest&&... rest) in read_grouping() 563 std::forward<Rest>(rest)...); in read_grouping() 566 template <typename Tuple, typename Arg, typename... Rest> 569 Arg&& arg, Rest&&... rest) in read_grouping() 577 read_grouping(intf, m, std::make_tuple(), std::forward<Rest>(rest)...); in read_grouping()
|
H A D | append.hpp | 456 template <typename Tuple, typename Arg, typename... Rest> 459 Tuple&& t, Arg&& arg, Rest&&... rest); 467 template <typename Tuple, typename Arg, typename... Rest> 471 Tuple&& t, Arg&& arg, Rest&&... rest); 500 template <typename Tuple, typename Arg, typename... Rest> 503 Tuple&& t, Arg&& arg, Rest&&... rest) in append_grouping() 512 std::forward<Rest>(rest)...); in append_grouping() 515 template <typename Tuple, typename Arg, typename... Rest> 519 Tuple&& t, Arg&& arg, Rest&&... rest) in append_grouping() 527 append_grouping(intf, m, std::make_tuple(), std::forward<Rest>(rest)...); in append_grouping()
|
/openbmc/boost-dbus/include/dbus/ |
H A D | connection.hpp | 147 template <typename FirstArg, typename... Rest> 148 struct strip_first_arg<std::tuple<FirstArg, Rest...>> { 149 typedef std::tuple<Rest...> type;
|
/openbmc/telemetry/ |
H A D | .gitignore | 78 # Editor-based Rest Client
|
/openbmc/linux/Documentation/networking/device_drivers/ethernet/ti/ |
H A D | cpsw.rst | 85 | | Class A | | Class B | | Rest | | Rest | | 316 | | Class A | | Class B | | Rest | | Class B | | Class A | |
|
/openbmc/bmcweb/ |
H A D | .gitignore | 93 # Editor-based Rest Client
|
/openbmc/docs/designs/oem/google/ |
H A D | root_of_trust.md | 114 New daemon, new Rest API.
|
/openbmc/u-boot/board/freescale/bsc9131rdb/ |
H A D | README | 122 Rest is PowerPC private area.
|
/openbmc/u-boot/board/freescale/t1040qds/ |
H A D | README | 169 Ethernet switch. Rest of the blocks are same as T1040
|
/openbmc/libpldm/tests/dsp/ |
H A D | bios_table.cpp | 32 template <typename First, typename... Rest> 33 void buildTable(Table& table, First& first, Rest&... rest) in buildTable()
|
/openbmc/linux/Documentation/networking/device_drivers/wifi/intel/ |
H A D | ipw2200.rst | 375 | ZZD | Rest of World | 13 | 0 | 389 | ZZR | Rest of World | 14 | 0 |
|
/openbmc/u-boot/board/freescale/t104xrdb/ |
H A D | README | 91 Ethernet switch. Rest of the blocks are same as T1040
|
/openbmc/u-boot/board/freescale/t102xrdb/ |
H A D | README | 64 unavailable deep sleep. Rest of the blocks are almost same as T1024.
|
/openbmc/sdbusplus/include/sdbusplus/asio/ |
H A D | object_server.hpp | 124 template <typename FirstArg, typename... Rest>
|
/openbmc/u-boot/board/freescale/t102xqds/ |
H A D | README | 64 unavailable deep sleep. Rest of the blocks are almost same as T1024.
|
/openbmc/openbmc/meta-security/recipes-ids/tripwire/files/ |
H A D | twpol-yocto.txt | 1069 # Rest of critical system binaries
|