Home
last modified time | relevance | path

Searched refs:value (Results 5201 – 5225 of 13073) sorted by relevance

1...<<201202203204205206207208209210>>...523

/openbmc/openbmc/poky/meta/recipes-support/db/db/
H A D0001-Fix-libc-compatibility-by-renaming-atomic_init-API.patch29 #define atomic_read(p) ((p)->value)
30 -#define atomic_init(p, val) ((p)->value = (val))
31 +#define __db_atomic_init(p, val) ((p)->value = (val))
36 #define atomic_dec(env, p) (--(p)->value)
/openbmc/linux/drivers/gpu/drm/radeon/
H A Drv770_smc.c592 u16 smc_address, u32 *value, u16 limit) in rv770_read_smc_sram_dword() argument
600 *value = RREG32(SMC_SRAM_DATA); in rv770_read_smc_sram_dword()
607 u16 smc_address, u32 value, u16 limit) in rv770_write_smc_sram_dword() argument
615 WREG32(SMC_SRAM_DATA, value); in rv770_write_smc_sram_dword()
H A Dsislands_smc.h130 uint16_t value; member
309 uint32_t value[SMC_SISLANDS_MC_REGISTER_ARRAY_SIZE]; member
410 u32 *value, u32 limit);
412 u32 value, u32 limit);
/openbmc/linux/fs/hfsplus/
H A Dattributes.c97 u32 cnid, const void *value, size_t size) in hfsplus_attr_build_record() argument
123 memcpy(entry->inline_data.raw_bytes, value, len); in hfsplus_attr_build_record()
196 const void *value, size_t size) in hfsplus_create_attr() argument
239 value, size); in hfsplus_create_attr()
/openbmc/linux/arch/openrisc/kernel/
H A Dtraps.c319 unsigned long value; in simulate_lwa() local
338 if (get_user(value, lwa_addr)) { in simulate_lwa()
350 value = *((unsigned long *)lwa_addr); in simulate_lwa()
354 regs->gpr[rd] = value; in simulate_lwa()
/openbmc/openbmc/poky/scripts/lib/recipetool/
H A Dcreate_npm.py263 value = origvalue.replace("version=" + data["version"], "version=${PV}")
264 value = value.replace("version=latest", "version=${PV}")
265 values = [line.strip() for line in value.strip('\n').splitlines()]
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Dpyperf.h125 __type(value, PidData);
132 __type(value, Event);
139 __type(value, int);
146 __type(value, Stats);
/openbmc/qemu/
H A Diothread.c251 int64_t value; in iothread_set_param() local
253 if (!visit_type_int64(v, name, &value, errp)) { in iothread_set_param()
257 if (value < 0) { in iothread_set_param()
263 *field = value; in iothread_set_param()
/openbmc/linux/drivers/scsi/arm/
H A Dcumana_1.c19 #define NCR5380_write(reg, value) cumanascsi_write(hostdata, reg, value) argument
200 unsigned int reg, u8 value) in cumanascsi_write() argument
206 writeb(value, base + 0x2100 + (reg << 2)); in cumanascsi_write()
/openbmc/linux/drivers/input/misc/
H A Dmax77693-haptic.c107 unsigned int value, config_reg; in max77693_haptic_configure() local
112 value = ((haptic->type << MAX77693_CONFIG2_MODE) | in max77693_haptic_configure()
119 value = (haptic->type << MCONFIG_MODE_SHIFT) | in max77693_haptic_configure()
129 config_reg, value); in max77693_haptic_configure()
/openbmc/linux/sound/soc/codecs/
H A Dsti-sas.c82 unsigned int *value) in sti_sas_read_reg() argument
89 *value = (unsigned int)val; in sti_sas_read_reg()
96 unsigned int value) in sti_sas_write_reg() argument
100 return regmap_write(drvdata->dac.regmap, reg, value); in sti_sas_write_reg()
/openbmc/linux/Documentation/hwmon/
H A Dlm75.rst142 Overtemperature Shutdown register and Hysteresis register. Each value can be
145 gets higher then the Overtemperature Shutdown value; it stays on until
146 the temperature falls below the Hysteresis value.
166 Both chips are simply not compatible, value encoding differs.
/openbmc/linux/tools/lib/bpf/
H A Dskel_internal.h160 addr = ((struct bpf_array *)map)->value; in skel_finalize_map_data()
240 const void *value, __u64 flags) in skel_map_update_elem() argument
248 attr.value = (long) value; in skel_map_update_elem()
/openbmc/linux/Documentation/userspace-api/media/v4l/
H A Dvidioc-dbg-g-register.rst57 ``val`` field the value to be written into the register.
62 the driver stores the register value in the ``val`` field and the size
63 (in bytes) of the value in ``size``.
131 - The value read from, or to be written into the register.
/openbmc/openbmc/poky/scripts/pybootchartgui/pybootchartgui/
H A Dsamples.py72 def add_value(self, name, value): argument
74 self.records[name] = value
102 def add_value(self, name, value): argument
103 self.records[name] = value
/openbmc/linux/drivers/gpio/
H A Dgpio-tqmx86.c73 int value) in tqmx86_gpio_set() argument
79 __assign_bit(offset, gpio->output, value); in tqmx86_gpio_set()
96 int value) in tqmx86_gpio_direction_output() argument
102 tqmx86_gpio_set(chip, offset, value); in tqmx86_gpio_direction_output()
/openbmc/linux/drivers/phy/amlogic/
H A Dphy-meson-g12a-usb2.c173 unsigned int value; in phy_meson_g12a_usb2_init() local
208 value = FIELD_PREP(PHY_CTRL_R18_MPLL_LKW_SEL, 1) | in phy_meson_g12a_usb2_init()
221 value |= PHY_CTRL_R18_MPLL_DCO_CLK_SEL; in phy_meson_g12a_usb2_init()
223 regmap_write(priv->regmap, PHY_CTRL_R18, value); in phy_meson_g12a_usb2_init()
/openbmc/libcper/
H A Djson-schema.c365 json_object_object_foreach(properties, key, value) in validate_object()
375 if (!validate_field(key, value, object_prop, in validate_object()
383 json_object_object_foreach(object, key, value) in validate_object()
386 (void)value; in validate_object()
/openbmc/linux/lib/
H A Dubsan.c178 void *value) in val_to_string() argument
183 u_max val = get_unsigned_val(type, value); in val_to_string()
195 (s64)get_signed_val(type, value)); in val_to_string()
198 (u64)get_unsigned_val(type, value)); in val_to_string()
/openbmc/linux/Documentation/devicetree/bindings/arm/
H A Dsecure.txt14 is that any property that needs a different value in the Secure world
19 world value is the same as specified for the Normal world by the
42 same value as "status"; if "status" is not specified either then
68 /secure-chosen does not exist, the Secure OS should use the value of
/openbmc/linux/drivers/gpu/drm/i915/
H A Dintel_memory_region.c38 u8 value, resource_size_t offset, in __iopagetest() argument
44 memset_io(va, value, pagesize); /* or GPF! */ in __iopagetest()
50 if (memchr_inv(result, value, sizeof(result))) { in __iopagetest()
54 value, result[0], result[1], result[2]); in __iopagetest()
/openbmc/phosphor-fan-presence/control/
H A Dfunctor.hpp128 auto value = in operator ()() local
131 _handler(zone, _path, _intf, _prop, std::forward<T>(value)); in operator ()()
279 auto value = in operator ()() local
282 _handler(zone, _path, _intf, _prop, std::forward<T>(value)); in operator ()()
/openbmc/openpower-occ-control/
H A Dpowercap.cpp397 for (const auto& [prop, value] : msgData) in pcapChanged()
401 pcap = std::get<uint32_t>(value); in pcapChanged()
407 pcapEnabled = std::get<bool>(value); in pcapChanged()
416 "PROP", prop, "VAL", std::get<uint32_t>(value)); in pcapChanged()
/openbmc/qemu/contrib/plugins/
H A Dhowvec.c373 char *value = tokens[1]; in qemu_plugin_install() local
376 if (*value == '!') { in qemu_plugin_install()
378 value++; in qemu_plugin_install()
381 if (strcmp(value, class_table[j].opt) == 0) { in qemu_plugin_install()
/openbmc/u-boot/board/ccv/xpress/
H A Dimximage.cfg30 * value value to be stored in the register
115 * read data bit delay: (3 is the reccommended default value, although out of
116 * reset value is 0)

1...<<201202203204205206207208209210>>...523