/openbmc/linux/include/kunit/ |
H A D | test.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 13 #include <kunit/try-catch.h> 48 * sub-subtest. See the "Subtests" section in 49 * https://node-tap.org/tap-protocol/ 56 * enum kunit_status - Type of result for a test or test suite 90 * struct kunit_case - represents an individual test case. 110 * .. code-block:: c 116 * KUNIT_EXPECT_EQ(test, 0, add(-1, 1)); 118 * KUNIT_EXPECT_EQ(test, -1, add(INT_MAX, INT_MIN)); 152 * KUNIT_CASE - A helper for creating a &struct kunit_case [all …]
|
/openbmc/u-boot/scripts/kconfig/ |
H A D | expr.c | 2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org> 20 e->type = E_SYMBOL; in expr_alloc_symbol() 21 e->left.sym = sym; in expr_alloc_symbol() 28 e->type = type; in expr_alloc_one() 29 e->left.expr = ce; in expr_alloc_one() 36 e->type = type; in expr_alloc_two() 37 e->left.expr = e1; in expr_alloc_two() 38 e->right.expr = e2; in expr_alloc_two() 45 e->type = type; in expr_alloc_comp() 46 e->left.sym = s1; in expr_alloc_comp() [all …]
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 026.out | 11 Event: l1_update; errno: 5; imm: off; once: on; write -b 17 qemu-io: Failed to flush the L2 table cache: Input/output error 18 qemu-io: Failed to flush the refcount block cache: Input/output error 23 Event: l1_update; errno: 5; imm: off; once: off; write -b 24 qemu-io: Failed to flush the L2 table cache: Input/output error 25 qemu-io: Failed to flush the refcount block cache: Input/output error 31 write failed: No space left on device 35 Event: l1_update; errno: 28; imm: off; once: on; write -b 36 write failed: No space left on device 41 qemu-io: Failed to flush the L2 table cache: No space left on device [all …]
|
H A D | 026.out.nocache | 11 Event: l1_update; errno: 5; imm: off; once: on; write -b 17 qemu-io: Failed to flush the L2 table cache: Input/output error 18 qemu-io: Failed to flush the refcount block cache: Input/output error 23 Event: l1_update; errno: 5; imm: off; once: off; write -b 24 qemu-io: Failed to flush the L2 table cache: Input/output error 25 qemu-io: Failed to flush the refcount block cache: Input/output error 31 write failed: No space left on device 35 Event: l1_update; errno: 28; imm: off; once: on; write -b 36 write failed: No space left on device 41 qemu-io: Failed to flush the L2 table cache: No space left on device [all …]
|
/openbmc/linux/scripts/kconfig/ |
H A D | expr.c | 1 // SPDX-License-Identifier: GPL-2.0 3 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org> 21 e->type = E_SYMBOL; in expr_alloc_symbol() 22 e->left.sym = sym; in expr_alloc_symbol() 29 e->type = type; in expr_alloc_one() 30 e->left.expr = ce; in expr_alloc_one() 37 e->type = type; in expr_alloc_two() 38 e->left.expr = e1; in expr_alloc_two() 39 e->right.expr = e2; in expr_alloc_two() 46 e->type = type; in expr_alloc_comp() [all …]
|
/openbmc/phosphor-webui/app/common/styles/base/ |
H A D | foundation.scss | 7 /*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */ 17 font-family: sans-serif; 19 line-height: 1.15; 21 -ms-text-size-adjust: 100%; 23 -webkit-text-size-adjust: 100%; 35 * Add the correct display in IE 9-. 48 * Add the correct display in IE 9-. 65 box-sizing: content-box; 83 font-family: monospace, monospace; 85 font-size: 1em; [all …]
|
/openbmc/linux/sound/soc/sunxi/ |
H A D | sun50i-codec-analog.c | 1 // SPDX-License-Identifier: GPL-2.0+ 6 * Copyright (C) 2016 Chen-Yu Tsai <wens@csie.org> 10 * Based on sun8i-codec-analog.c 23 #include <sound/soc-dapm.h> 26 #include "sun8i-adda-pr-regmap.h" 172 -450, 150, 0); 178 static const DECLARE_TLV_DB_SCALE(sun50i_codec_hp_vol_scale, -6300, 100, 1); 182 2, 31, TLV_DB_SCALE_ITEM(-4350, 150, 0), 187 2, 31, TLV_DB_SCALE_ITEM(-4350, 150, 0), 197 /* Mixer pre-gain */ [all …]
|
/openbmc/linux/Documentation/userspace-api/media/v4l/ |
H A D | pixfmt-y8i.rst | 1 .. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later 3 .. _V4L2-PIX-FMT-Y8I: 10 Interleaved grey-scale image, e.g. from a stereo-pair 16 This is a grey-scale image with a depth of 8 bits per pixel, but with 17 pixels from 2 sources interleaved. Each pixel is stored in a 16-bit 18 word. E.g. the R200 RealSense camera stores pixel from the left sensor 27 .. flat-table:: 28 :header-rows: 0 29 :stub-columns: 0 31 * - start + 0: [all …]
|
/openbmc/linux/include/media/ |
H A D | v4l2-rect.h | 1 /* SPDX-License-Identifier: GPL-2.0-only */ 3 * v4l2-rect.h - v4l2_rect helper functions 14 * v4l2_rect_set_size_to() - copy the width/height values. 21 r->width = size->width; in v4l2_rect_set_size_to() 22 r->height = size->height; in v4l2_rect_set_size_to() 26 * v4l2_rect_set_min_size() - width and height of r should be >= min_size. 33 if (r->width < min_size->width) in v4l2_rect_set_min_size() 34 r->width = min_size->width; in v4l2_rect_set_min_size() 35 if (r->height < min_size->height) in v4l2_rect_set_min_size() 36 r->height = min_size->height; in v4l2_rect_set_min_size() [all …]
|
/openbmc/linux/sound/soc/codecs/ |
H A D | es8328.c | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * es8328.c -- ES8328 ALSA SoC Audio driver 5 * Copyright 2014 Sutajio Ko-Usagi PTE LTD 100 static const DECLARE_TLV_DB_SCALE(play_tlv, -3000, 100, 0); 101 static const DECLARE_TLV_DB_SCALE(dac_adc_tlv, -9600, 50, 0); 102 static const DECLARE_TLV_DB_SCALE(bypass_tlv, -1500, 300, 0); 124 if (es8328->deemph) { in es8328_set_deemph() 127 if (abs(deemph_settings[i].rate - es8328->playback_fs) < in es8328_set_deemph() 128 abs(deemph_settings[best].rate - es8328->playback_fs)) in es8328_set_deemph() 137 dev_dbg(component->dev, "Set deemphasis %d\n", val); in es8328_set_deemph() [all …]
|
H A D | tlv320aic3x.c | 1 // SPDX-License-Identifier: GPL-2.0-only 16 * --------------------------------------- 17 * MONO_LOUT -> N/A | MONO_LOUT -> N/A 18 * | IN1L -> LINE1L 19 * | IN1R -> LINE1R 20 * | IN2L -> LINE2L 21 * | IN2R -> LINE2R 22 * | MIC3L/R -> N/A 25 * --------------------------------------- 89 /* Output Common-Mode Voltage */ [all …]
|
H A D | wm8971.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 3 * wm8971.c -- WM8971 ALSA SoC Audio driver 95 static const char *wm8971_alc_func[] = { "Off", "Right", "Left", "Stereo" }; 99 static const char *wm8971_mono_mux[] = {"Stereo", "Mono (Left)", 142 SOC_DOUBLE_R("Bypass Left Playback Volume", WM8971_LOUTM1, 159 SOC_ENUM("Treble Cut-off", wm8971_enum[2]), 180 SOC_ENUM("Playback De-emphasis", wm8971_enum[5]), 191 /* Left Mixer */ 194 SOC_DAPM_SINGLE("Left Bypass Switch", WM8971_LOUTM1, 7, 1, 0), 201 SOC_DAPM_SINGLE("Left Playback Switch", WM8971_ROUTM1, 8, 1, 0), [all …]
|
H A D | wm8750.c | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * wm8750.c -- WM8750 ALSA SoC audio driver 97 static const char *wm8750_alc_func[] = {"Off", "Right", "Left", "Stereo"}; 110 static const char *wm8750_mono_mux[] = {"Stereo", "Mono (Left)", 145 SOC_ENUM("Playback De-emphasis", wm8750_enum[15]), 158 SOC_ENUM("Treble Cut-off", wm8750_enum[2]), 162 SOC_ENUM("3D Lower Cut-off", wm8750_enum[3]), 163 SOC_ENUM("3D Upper Cut-off", wm8750_enum[4]), 177 SOC_SINGLE("Left ADC Capture Volume", WM8750_LADC, 0, 255, 0), 186 /* ADCDAC Bit 0 - ADCHPD */ [all …]
|
H A D | da9055.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 59 /* Input - Gain, Select and Filter Registers */ 72 /* Output - Gain, Select and Filter Registers */ 289 0x0, 0x10, TLV_DB_SCALE_ITEM(-5400, 0, 0), 290 /* -54dB to 15dB */ 291 0x11, 0x3f, TLV_DB_SCALE_ITEM(-5400, 150, 0) 296 /* -78dB to 12dB */ 297 0x08, 0x7f, TLV_DB_SCALE_ITEM(-7800, 75, 0) 306 static const DECLARE_TLV_DB_SCALE(mic_vol_tlv, -600, 600, 0); 307 static const DECLARE_TLV_DB_SCALE(mixin_gain_tlv, -450, 150, 0); [all …]
|
H A D | wm8988.c | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * wm8988.c -- WM8988 ALSA SoC audio driver 149 static const char *alc_func_txt[] = {"Off", "Right", "Left", "Stereo"}; 167 static const DECLARE_TLV_DB_SCALE(pga_tlv, -1725, 75, 0); 168 static const DECLARE_TLV_DB_SCALE(adc_tlv, -9750, 50, 1); 169 static const DECLARE_TLV_DB_SCALE(dac_tlv, -12750, 50, 1); 170 static const DECLARE_TLV_DB_SCALE(out_tlv, -12100, 100, 1); 171 static const DECLARE_TLV_DB_SCALE(bypass_tlv, -1500, 300, 0); 180 SOC_ENUM("Treble Cut-off", treble), 184 SOC_ENUM("3D Lower Cut-off", stereo_3d_lc), [all …]
|
/openbmc/linux/include/linux/ |
H A D | uidgid.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 58 #define INVALID_UID KUIDT_INIT(-1) 59 #define INVALID_GID KGIDT_INIT(-1) 61 static inline bool uid_eq(kuid_t left, kuid_t right) in uid_eq() argument 63 return __kuid_val(left) == __kuid_val(right); in uid_eq() 66 static inline bool gid_eq(kgid_t left, kgid_t right) in gid_eq() argument 68 return __kgid_val(left) == __kgid_val(right); in gid_eq() 71 static inline bool uid_gt(kuid_t left, kuid_t right) in uid_gt() argument 73 return __kuid_val(left) > __kuid_val(right); in uid_gt() 76 static inline bool gid_gt(kgid_t left, kgid_t right) in gid_gt() argument [all …]
|
/openbmc/linux/drivers/md/persistent-data/ |
H A D | dm-btree-remove.c | 1 // SPDX-License-Identifier: GPL-2.0-only 8 #include "dm-btree.h" 9 #include "dm-btree-internal.h" 10 #include "dm-transaction-manager.h" 13 #include <linux/device-mapper.h> 29 * Each node may have a left or right sibling. When decending the spine, 36 * [B] No left sibling 40 * ==> rebalance(left sibling, node) 42 * [D] Both siblings, total_entries(left, node, right) <= DEL_THRESHOLD 43 * ==> delete node adding it's contents to left and right [all …]
|
/openbmc/linux/net/sunrpc/ |
H A D | sysctl.c | 1 // SPDX-License-Identifier: GPL-2.0-only 58 return -EINVAL; in proc_do_xprt() 71 size_t left, len; in proc_dodebug() local 78 left = *lenp; in proc_dodebug() 82 while (left && isspace(*p)) { in proc_dodebug() 83 left--; in proc_dodebug() 86 if (!left) in proc_dodebug() 89 if (left > sizeof(tmpbuf) - 1) in proc_dodebug() 90 return -EINVAL; in proc_dodebug() 91 memcpy(tmpbuf, p, left); in proc_dodebug() [all …]
|
/openbmc/linux/arch/parisc/math-emu/ |
H A D | sfcmp.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 3 * Linux/PA-RISC Project (http://www.parisc-linux.org/) 5 * Floating-point emulation code 6 * Copyright (C) 2001 Hewlett-Packard (Paul Bame) <bame@debian.org> 42 register unsigned int left, right; in sgl_fcmp() local 46 left = *leftptr; in sgl_fcmp() 52 if( (Sgl_exponent(left) == SGL_INFINITY_EXPONENT) in sgl_fcmp() 58 if( ( (Sgl_exponent(left) == SGL_INFINITY_EXPONENT) in sgl_fcmp() 59 && Sgl_isnotzero_mantissa(left) in sgl_fcmp() 60 && (Exception(cond) || Sgl_isone_signaling(left))) in sgl_fcmp() [all …]
|
H A D | sfsub.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 3 * Linux/PA-RISC Project (http://www.parisc-linux.org/) 5 * Floating-point emulation code 6 * Copyright (C) 2001 Hewlett-Packard (Paul Bame) <bame@debian.org> 42 register unsigned int left, right, result, extent; in sgl_fsub() local 50 left = *leftptr; in sgl_fsub() 55 Sgl_xortointp1(left,right,/*to*/save); in sgl_fsub() 60 if ((result_exponent = Sgl_exponent(left)) == SGL_INFINITY_EXPONENT) in sgl_fsub() 62 if (Sgl_iszero_mantissa(left)) in sgl_fsub() 80 *dstptr = left; in sgl_fsub() [all …]
|
H A D | sfadd.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 3 * Linux/PA-RISC Project (http://www.parisc-linux.org/) 5 * Floating-point emulation code 6 * Copyright (C) 2001 Hewlett-Packard (Paul Bame) <bame@debian.org> 42 register unsigned int left, right, result, extent; in sgl_fadd() local 52 left = *leftptr; in sgl_fadd() 57 Sgl_xortointp1(left,right,/*to*/save); in sgl_fadd() 62 if ((result_exponent = Sgl_exponent(left)) == SGL_INFINITY_EXPONENT) in sgl_fadd() 64 if (Sgl_iszero_mantissa(left)) in sgl_fadd() 82 *dstptr = left; in sgl_fadd() [all …]
|
/openbmc/linux/fs/quota/ |
H A D | kqid.c | 1 // SPDX-License-Identifier: GPL-2.0 7 * qid_eq - Test to see if to kquid values are the same 8 * @left: A qid value 13 bool qid_eq(struct kqid left, struct kqid right) in qid_eq() argument 15 if (left.type != right.type) in qid_eq() 17 switch(left.type) { in qid_eq() 19 return uid_eq(left.uid, right.uid); in qid_eq() 21 return gid_eq(left.gid, right.gid); in qid_eq() 23 return projid_eq(left.projid, right.projid); in qid_eq() 31 * qid_lt - Test to see if one qid value is less than another [all …]
|
/openbmc/linux/Documentation/sound/cards/ |
H A D | audigy-mixer.rst | 5 This is based on sb-live-mixer.rst. 20 functionality. Only the default built-in code in the ALSA driver is described 34 one-way three wire serial bus for digital sound by Philips Semiconductors 42 FX-bus 48 ---------------------------------------- 49 This control is used to attenuate samples from left and right front PCM FX-bus 50 accumulators. ALSA uses accumulators 8 and 9 for left and right front PCM 54 ------------------------------------------- 55 This control is used to attenuate samples from left and right surround PCM FX-bus 56 accumulators. ALSA uses accumulators 2 and 3 for left and right surround PCM [all …]
|
/openbmc/bmcweb/redfish-core/src/ |
H A D | filter_expr_executor.cpp | 1 // SPDX-License-Identifier: Apache-2.0 2 // SPDX-FileCopyrightText: Copyright OpenBMC Authors 141 const double* dValue = entry->get_ptr<const double*>(); in operator ()() 146 const int64_t* iValue = entry->get_ptr<const int64_t*>(); in operator ()() 151 const std::string* strValue = entry->get_ptr<const std::string*>(); in operator ()() 163 static_cast<std::string>(x), static_cast<int>(entry->type())); in operator ()() 194 bool doDoubleComparison(double left, filter_ast::ComparisonOpEnum comparator, in doDoubleComparison() argument 197 if (!std::isfinite(left) || !std::isfinite(right)) in doDoubleComparison() 207 return std::fabs(left - right) <= in doDoubleComparison() 210 return std::fabs(left - right) > in doDoubleComparison() [all …]
|
/openbmc/linux/drivers/net/wireless/intersil/hostap/ |
H A D | hostap_info.c | 1 // SPDX-License-Identifier: GPL-2.0 15 int left) in prism2_info_commtallies16() argument 19 if (left < sizeof(struct hfa384x_comm_tallies)) { in prism2_info_commtallies16() 21 "info frame\n", local->dev->name, left); in prism2_info_commtallies16() 27 local->comm_tallies.name += le16_to_cpu(tallies->name) in prism2_info_commtallies16() 55 int left) in prism2_info_commtallies32() argument 59 if (left < sizeof(struct hfa384x_comm_tallies32)) { in prism2_info_commtallies32() 61 "info frame\n", local->dev->name, left); in prism2_info_commtallies32() 67 local->comm_tallies.name += le32_to_cpu(tallies->name) in prism2_info_commtallies32() 95 int left) in prism2_info_commtallies() argument [all …]
|