Home
last modified time | relevance | path

Searched refs:value (Results 1526 – 1550 of 13561) sorted by relevance

1...<<61626364656667686970>>...543

/openbmc/openbmc/poky/meta/lib/oe/
H A Dprservice.py63 value = int(d.getVar(remain + '$' + version + '$' + pkgarch + '$' + checksum))
67 ret = conn.importone(version,pkgarch,checksum,value)
68 if ret != value:
69 …importing(%s,%s,%s,%d) failed. DB may have larger value %d" % (version,pkgarch,checksum,value,ret))
71 imported.append((version,pkgarch,checksum,value))
105 value = datainfo[i]['value']
108 elif value > datainfo[idx[pkgarch]]['value']:
111 … (str(datainfo[i]['version']), pkgarch, str(datainfo[i]['checksum']), str(value)))
/openbmc/linux/tools/perf/util/bpf_skel/
H A Dsample_filter.bpf.c14 __type(value, struct perf_bpf_filter_entry);
157 CHECK_RESULT(sample_data, ==, entry->value) in perf_sample_filter()
160 CHECK_RESULT(sample_data, !=, entry->value) in perf_sample_filter()
163 CHECK_RESULT(sample_data, >, entry->value) in perf_sample_filter()
166 CHECK_RESULT(sample_data, >=, entry->value) in perf_sample_filter()
169 CHECK_RESULT(sample_data, <, entry->value) in perf_sample_filter()
172 CHECK_RESULT(sample_data, <=, entry->value) in perf_sample_filter()
175 CHECK_RESULT(sample_data, &, entry->value) in perf_sample_filter()
/openbmc/linux/drivers/watchdog/
H A Dcpu5wdt.c143 unsigned int value; in cpu5wdt_ioctl() local
155 value = inb(port + CPU5WDT_STATUS_REG); in cpu5wdt_ioctl()
156 value = (value >> 2) & 1; in cpu5wdt_ioctl()
157 return put_user(value, p); in cpu5wdt_ioctl()
161 if (get_user(value, p)) in cpu5wdt_ioctl()
163 if (value & WDIOS_ENABLECARD) in cpu5wdt_ioctl()
165 if (value & WDIOS_DISABLECARD) in cpu5wdt_ioctl()
/openbmc/phosphor-host-postd/ipmisnoop/
H A Dipmisnoop.cpp18 std::variant<uint32_t> value{}; in getSelectorPosition() local
20 reply.read(value); in getSelectorPosition()
21 return std::get<uint32_t>(value); in getSelectorPosition()
36 const int value = 0; in configGPIODirOutput() local
62 value); in configGPIODirOutput()
81 int value = !((status >> iteration) & 0x01); in postCodeDisplay() local
83 led_lines[iteration].set_value(value); in postCodeDisplay()
117 reporters[posVal - 1]->value(); in getSelectorPositionSignal()
/openbmc/telemetry/src/
H A Dtrigger_actions.hpp41 const TriggerValue value) override;
57 const TriggerValue value) override;
63 const char* getRedfishMessageId(const double value) const;
82 const TriggerValue value) override;
95 const TriggerValue value) override;
113 const TriggerValue value) override;
123 const TriggerValue value) override;
144 const TriggerValue value) override;
/openbmc/qemu/hw/misc/
H A Dimx_rngc.c138 static void imx_rngc_write(void *opaque, hwaddr offset, uint64_t value, in imx_rngc_write() argument
145 if (value & RNGC_CMD_BIT_SW_RST) { in imx_rngc_write()
153 if (value & (RNGC_CMD_BIT_CLR_ERR | RNGC_CMD_BIT_CLR_INT)) { in imx_rngc_write()
157 if (value & RNGC_CMD_BIT_SEED) { in imx_rngc_write()
162 if (value & RNGC_CMD_BIT_SELF_TEST) { in imx_rngc_write()
174 if (value & RNGC_CTRL_BIT_MASK_ERR) { in imx_rngc_write()
180 if (value & RNGC_CTRL_BIT_MASK_DONE) { in imx_rngc_write()
186 if (value & RNGC_CTRL_BIT_AUTO_SEED) { in imx_rngc_write()
/openbmc/webui-vue/src/components/Global/
H A DTableFilter.vue33 v-for="value in filter.values"
34 :key="value"
35 :value="value"
36 :data-test-id="`tableFilter-checkbox-${value}`"
39 {{ value }}
100 (value) => this.tags.indexOf(value) !== -1,
/openbmc/phosphor-dbus-interfaces/yaml/org/freedesktop/UPower/
H A DDevice.interface.yaml44 value: The data value, for instance the rate in W or the
67 value: The value of the percentage point, usually in seconds.
144 value 'battery'."
151 type has the value 'battery'."
158 has the value 'battery'."
165 property type has the value 'battery'."
173 value 'battery'."
190 has the value 'battery'."
197 has the value 'battery'."
222 has the value 'battery'."
[all …]
/openbmc/boost-dbus/include/dbus/impl/
H A Dmessage_iterator.hpp24 bool append_basic(int code, const void *value);
30 bool append_fixed_array(int code, const void *value, int n_elements);
40 void get_basic(void *value);
45 void get_fixed_array(void *value, int *n_elements);
/openbmc/linux/include/asm-generic/
H A Dlogic_io.h54 void __raw_writeb(u8 value, volatile void __iomem *addr);
57 void __raw_writew(u16 value, volatile void __iomem *addr);
60 void __raw_writel(u32 value, volatile void __iomem *addr);
64 void __raw_writeq(u64 value, volatile void __iomem *addr);
68 void memset_io(volatile void __iomem *addr, int value, size_t size);
/openbmc/linux/drivers/iio/dac/
H A Dad5592r-base.h45 int (*write_dac)(struct ad5592r_state *st, unsigned chan, u16 value);
46 int (*read_adc)(struct ad5592r_state *st, unsigned chan, u16 *value);
47 int (*reg_write)(struct ad5592r_state *st, u8 reg, u16 value);
48 int (*reg_read)(struct ad5592r_state *st, u8 reg, u16 *value);
49 int (*gpio_read)(struct ad5592r_state *st, u8 *value);
/openbmc/linux/scripts/dtc/
H A Dfdtput.c59 char *value = NULL; /* holding area for value */ in encode_value() local
85 value = realloc(value, value_size); in encode_value()
86 if (!value) { in encode_value()
93 ptr = value + upto; in encode_value()
114 *valuep = value; in encode_value()
224 char *value; in do_fdtput() local
241 if (encode_value(disp, arg + 2, arg_count - 2, &value, &len) || in do_fdtput()
242 store_key_value(blob, *arg, arg[1], value, len)) in do_fdtput()
/openbmc/qemu/hw/usb/
H A Ddesc-msos.c130 const wchar_t *name, const wchar_t *value) in usb_desc_msos_prop_str() argument
135 int i, vlen = wcslen(value) + 1; in usb_desc_msos_prop_str()
145 data->bPropertyData[i*2] = usb_lo(value[i]); in usb_desc_msos_prop_str()
146 data->bPropertyData[i*2+1] = usb_hi(value[i]); in usb_desc_msos_prop_str()
155 uint32_t value) in usb_desc_msos_prop_dword() argument
166 data->bPropertyData[0] = (value) & 0xff; in usb_desc_msos_prop_dword()
167 data->bPropertyData[1] = (value >> 8) & 0xff; in usb_desc_msos_prop_dword()
168 data->bPropertyData[2] = (value >> 16) & 0xff; in usb_desc_msos_prop_dword()
169 data->bPropertyData[3] = (value >> 24) & 0xff; in usb_desc_msos_prop_dword()
/openbmc/linux/drivers/platform/surface/
H A Dsurface_hotplug.c88 int value; in shps_dsm_notify_irq() local
92 value = gpiod_get_value_cansleep(sdev->gpio[type]); in shps_dsm_notify_irq()
93 if (value < 0) { in shps_dsm_notify_irq()
95 dev_err(&pdev->dev, "failed to get gpio: %d (irq=%d)\n", type, value); in shps_dsm_notify_irq()
99 dev_dbg(&pdev->dev, "IRQ notification via DSM (irq=%d, value=%d)\n", type, value); in shps_dsm_notify_irq()
102 param.integer.value = value; in shps_dsm_notify_irq()
108 type, value); in shps_dsm_notify_irq()
113 type, value); in shps_dsm_notify_irq()
/openbmc/linux/drivers/spi/
H A Dspi-butterfly.c101 int value; in getmiso() local
107 value = !(parport_read_status(pp->port) & bit); in getmiso()
108 return (bit == PARPORT_STATUS_BUSY) ? value : !value; in getmiso()
111 static void butterfly_chipselect(struct spi_device *spi, int value) in butterfly_chipselect() argument
116 if (value != BITBANG_CS_INACTIVE) in butterfly_chipselect()
124 value = !value; in butterfly_chipselect()
126 parport_frob_control(pp->port, spi_cs_bit, value ? spi_cs_bit : 0); in butterfly_chipselect()
/openbmc/linux/drivers/hid/
H A Dhid-core.c1337 return value & (1 << (n - 1)) ? value | (~0U << n) : value; in snto32()
1376 u32 value = 0; in __extract() local
1451 value &= m; in implement()
1576 __s32 *value; in hid_input_fetch_field() local
1618 memcpy(field->value, value, count * sizeof(__s32)); in hid_input_var_field()
1633 __s32 *value; in hid_input_array_field() local
1643 search(value, field->value[n], count)) in hid_input_array_field()
1651 search(field->value, value[n], count)) in hid_input_array_field()
1659 memcpy(field->value, value, count * sizeof(__s32)); in hid_input_array_field()
1905 if (value != snto32(s32ton(value, size), size)) { in hid_set_field()
[all …]
/openbmc/linux/sound/i2c/other/
H A Dak4xxx-adda.c359 uinfo->value.integer.min = 0; in snd_akm4xxx_volume_info()
360 uinfo->value.integer.max = mask; in snd_akm4xxx_volume_info()
371 ucontrol->value.integer.value[0] = snd_akm4xxx_get_vol(ak, chip, addr); in snd_akm4xxx_volume_get()
404 unsigned int val = ucontrol->value.integer.value[0]; in snd_akm4xxx_volume_put()
417 uinfo->value.integer.min = 0; in snd_akm4xxx_stereo_volume_info()
429 ucontrol->value.integer.value[0] = snd_akm4xxx_get_vol(ak, chip, addr); in snd_akm4xxx_stereo_volume_get()
430 ucontrol->value.integer.value[1] = snd_akm4xxx_get_vol(ak, chip, addr+1); in snd_akm4xxx_stereo_volume_get()
442 val[0] = ucontrol->value.integer.value[0]; in snd_akm4xxx_stereo_volume_put()
443 val[1] = ucontrol->value.integer.value[1]; in snd_akm4xxx_stereo_volume_put()
504 ucontrol->value.integer.value[0] = (val & (1<<shift)) != 0; in ak4xxx_switch_get()
[all …]
/openbmc/linux/net/core/
H A Dpktgen.c753 int value; in hex32_arg() local
759 if (value >= 0) in hex32_arg()
760 *num |= value; in hex32_arg()
1078 debug = value; in pktgen_if_write()
1114 if (!value) in pktgen_if_write()
1129 if (!value) in pktgen_if_write()
1197 if ((value > 0) && in pktgen_if_write()
1255 if ((value > 1) && in pktgen_if_write()
1260 pkt_dev->burst = value < 1 ? 1 : value; in pktgen_if_write()
1576 value = MAX_CFLOWS; in pktgen_if_write()
[all …]
/openbmc/qemu/hw/display/
H A Dpxa2xx_lcd.c863 (value & LCCR0_ENB) && !(value & LCCR0_LCDT)) in pxa2xx_lcdc_write()
874 s->control[1] = value; in pxa2xx_lcdc_write()
878 s->control[2] = value; in pxa2xx_lcdc_write()
883 s->bpp = LCCR3_BPP(value); in pxa2xx_lcdc_write()
898 s->ovl1c[0] = value & 0x80ffffff; in pxa2xx_lcdc_write()
925 s->ccr = value & 0x81ffffe7; in pxa2xx_lcdc_write()
930 s->cmdcr = value & 0xff; in pxa2xx_lcdc_write()
934 s->trgbr = value & 0x00ffffff; in pxa2xx_lcdc_write()
938 s->tcr = value & 0x7fff; in pxa2xx_lcdc_write()
979 s->bscntr = value & 0xf; in pxa2xx_lcdc_write()
[all …]
/openbmc/linux/drivers/cpufreq/
H A Damd-pstate.c210 value &= ~GENMASK_ULL(31, 24); in amd_pstate_set_epp()
211 value |= (u64)epp << 24; in amd_pstate_set_epp()
458 u64 value = prev; in amd_pstate_update() local
486 if (value == prev) in amd_pstate_update()
1268 u64 value; in amd_pstate_epp_cpu_init() local
1368 u64 value; in amd_pstate_epp_update_limit() local
1397 value |= AMD_CPPC_DES_PERF(0); in amd_pstate_epp_update_limit()
1416 value &= ~GENMASK_ULL(31, 24); in amd_pstate_epp_update_limit()
1417 value |= (u64)epp << 24; in amd_pstate_epp_update_limit()
1444 u64 value, max_perf; in amd_pstate_epp_reenable() local
[all …]
/openbmc/sdbusplus/tools/sdbusplus/
H A Dservicename.py14 self.value = kwargs.pop("default")
16 self.value = kwargs.pop("value", False)
19 if len(self.value) == 0:
21 for s in self.value.split("."):
/openbmc/linux/drivers/media/usb/em28xx/
H A Dem28xx-audio.c403 info->value.integer.min = 0; in em28xx_vol_info()
404 info->value.integer.max = 0x1f; in em28xx_vol_info()
410 struct snd_ctl_elem_value *value) in em28xx_vol_put() argument
414 u16 val = (0x1f - (value->value.integer.value[0] & 0x1f)) | in em28xx_vol_put()
415 (0x1f - (value->value.integer.value[1] & 0x1f)) << 8; in em28xx_vol_put()
451 struct snd_ctl_elem_value *value) in em28xx_vol_get() argument
479 value->value.integer.value[0] = 0x1f - (val & 0x1f); in em28xx_vol_get()
480 value->value.integer.value[1] = 0x1f - ((val >> 8) & 0x1f); in em28xx_vol_get()
489 u16 val = value->value.integer.value[0]; in em28xx_vol_put_mute()
553 value->value.integer.value[0] = 0; in em28xx_vol_get_mute()
[all …]
/openbmc/linux/drivers/media/dvb-frontends/cxd2880/
H A Dcxd2880_tnrdmd.h156 u8 value; member
275 int value);
291 u8 id, u8 *value);
294 u8 id, u8 *value);
297 u8 id, u8 value);
300 u8 id, u8 value);
303 u16 *value);
306 u16 value);
320 u8 value, u8 bit_mask);
358 *tnr_dmd, u8 en, u8 value);
/openbmc/linux/drivers/staging/media/atomisp/pci/
H A Dcss_trace.h210 #define FIELD_PACK(value, mask, offset) (((value) & (mask)) << (offset)) argument
211 #define FIELD_UNPACK(value, mask, offset) (((value) >> (offset)) & (mask)) argument
266 #define PACK_TRACEPOINT(tid, major, minor, value) \ argument
267 (FIELD_TID_PACK(tid) | FIELD_MAJOR_PACK(major) | FIELD_MINOR_PACK(minor) | FIELD_VALUE_PACK(value))
272 #define PACK_FORMATTED_TRACEPOINT(format, major, minor, value) \ argument
273 …_FORMAT_PACK(format) | FIELD_MAJOR_PACK(major) | FIELD_MINOR_PACK(minor) | FIELD_VALUE_PACK(value))
275 #define PACK_TRACE_VALUE24(major, value) \ argument
276 (FIELD_TID_PACK(FIELD_TID_SEL_FORMAT_PAT) | FIELD_MAJOR_PACK(major) | FIELD_VALUE_24_PACK(value))
/openbmc/linux/arch/powerpc/platforms/pseries/
H A Dpseries_energy.c56 const __be32 *value; in cpu_to_drc_index() local
58 value = of_prop_next_u32(info, NULL, &num_set_entries); in cpu_to_drc_index()
59 if (!value) in cpu_to_drc_index()
62 value++; in cpu_to_drc_index()
66 of_read_drc_info_cell(&info, &value, &drc); in cpu_to_drc_index()
125 const __be32 *value; in drc_index_to_cpu() local
127 value = of_prop_next_u32(info, NULL, &num_set_entries); in drc_index_to_cpu()
128 if (!value) in drc_index_to_cpu()
131 value++; in drc_index_to_cpu()
135 of_read_drc_info_cell(&info, &value, &drc); in drc_index_to_cpu()

1...<<61626364656667686970>>...543