/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | color_config.c | 12 int perf_config_colorbool(const char *var, const char *value, int stdout_is_tty) in perf_config_colorbool() argument 14 if (value) { in perf_config_colorbool() 15 if (!strcasecmp(value, "never")) in perf_config_colorbool() 17 if (!strcasecmp(value, "always")) in perf_config_colorbool() 19 if (!strcasecmp(value, "auto")) in perf_config_colorbool() 24 if (!perf_config_bool(var, value)) in perf_config_colorbool() 27 /* any normal truth value defaults to 'auto' */ in perf_config_colorbool() 39 int perf_color_default_config(const char *var, const char *value, in perf_color_default_config() argument 43 perf_use_color_default = perf_config_colorbool(var, value, -1); in perf_color_default_config()
|
/third_party/googletest/googletest/test/ |
H A D | gtest_json_test_utils.py | 45 def _normalize(key, value): 47 return re.sub(r'^\d+(\.\d+)?s$', '*', value) 49 return re.sub(r'^\d{4}-\d\d-\d\dT\d\d:\d\d:\d\dZ$', '*', value) 51 value = re.sub(r'^.*[/\\](.*:)\d+\n', '\\1*\n', value) 52 return re.sub(r'Stack trace:\n(.|\n)*', 'Stack trace:\n*', value) 54 return re.sub(r'^.*[/\\](.*)', '\\1', value) 56 return normalize(value)
|
/third_party/musl/src/linux/ |
H A D | eventfd.c | 18 int eventfd_read(int fd, eventfd_t *value) in eventfd_read() argument 20 return (sizeof(*value) == read(fd, value, sizeof(*value))) ? 0 : -1; in eventfd_read() 23 int eventfd_write(int fd, eventfd_t value) in eventfd_write() argument 25 return (sizeof(value) == write(fd, &value, sizeof(value))) ? 0 : -1; in eventfd_write()
|
/third_party/skia/src/core/ |
H A D | SkSafeRange.h | 25 // checks 0 <= value <= max. 26 // On success, returns value 28 template <typename T> T checkLE(uint64_t value, T max) { in checkLE() argument 30 if (value > static_cast<uint64_t>(max)) { in checkLE() 32 value = 0; in checkLE() 34 return static_cast<T>(value); in checkLE() 37 int checkGE(int value, int min) { in checkGE() argument 38 if (value < min) { in checkGE() 40 value = min; in checkGE() 42 return value; in checkGE() [all...] |
/kernel/linux/linux-5.10/drivers/usb/gadget/legacy/ |
H A D | inode.c | 334 int value; in ep_io() local 344 value = usb_ep_queue (epdata->ep, req, GFP_ATOMIC); in ep_io() 346 value = -ENODEV; in ep_io() 349 if (likely (value == 0)) { in ep_io() 350 value = wait_for_completion_interruptible(&done); in ep_io() 351 if (value != 0) { in ep_io() 372 return value; in ep_io() 379 int value; in ep_release() local 381 value = mutex_lock_interruptible(&data->lock); in ep_release() 382 if (value < in ep_release() 397 ep_ioctl(struct file *fd, unsigned code, unsigned long value) ep_ioctl() argument 447 int value; ep_aio_cancel() local 531 ssize_t value; ep_aio() local 582 ssize_t value; ep_read_iter() local 642 ssize_t value; ep_write_iter() local 728 int value, length = len; ep_config() local 819 int value = -EBUSY; ep_open() local 1249 dev_ioctl(struct file *fd, unsigned code, unsigned long value) dev_ioctl() argument 1335 int value = -EOPNOTSUPP; gadgetfs_setup() local 1801 ssize_t value, length = len; dev_config() local 1914 int value = -EBUSY; dev_open() local [all...] |
/kernel/linux/linux-5.10/sound/pci/ice1712/ |
H A D | aureon.c | 135 * send device address, command and value, in aureon_pca9554_write() 202 ucontrol->value.enumerated.item[0] = spec->pca9554_out; in aureon_universe_inmux_get() 214 nval = ucontrol->value.enumerated.item[0]; in aureon_universe_inmux_put() 351 uinfo->value.integer.min = 0; in aureon_ac97_vol_info() 352 uinfo->value.integer.max = 31; in aureon_ac97_vol_info() 364 ucontrol->value.integer.value[0] = 0x1F - (vol & 0x1F); in aureon_ac97_vol_get() 366 ucontrol->value.integer.value[1] = 0x1F - ((vol >> 8) & 0x1F); in aureon_ac97_vol_get() 381 nvol = (0x1F - ucontrol->value in aureon_ac97_vol_put() [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/mellanox/mlx5/core/steering/ |
H A D | dr_ste_v0.c | 704 dr_ste_v0_build_eth_l2_src_dst_bit_mask(struct mlx5dr_match_param *value, in dr_ste_v0_build_eth_l2_src_dst_bit_mask() argument 707 struct mlx5dr_match_spec *mask = inner ? &value->inner : &value->outer; in dr_ste_v0_build_eth_l2_src_dst_bit_mask() 736 dr_ste_v0_build_eth_l2_src_dst_tag(struct mlx5dr_match_param *value, in dr_ste_v0_build_eth_l2_src_dst_tag() argument 740 struct mlx5dr_match_spec *spec = sb->inner ? &value->inner : &value->outer; in dr_ste_v0_build_eth_l2_src_dst_tag() 792 dr_ste_v0_build_eth_l3_ipv6_dst_tag(struct mlx5dr_match_param *value, in dr_ste_v0_build_eth_l3_ipv6_dst_tag() argument 796 struct mlx5dr_match_spec *spec = sb->inner ? &value->inner : &value->outer; in dr_ste_v0_build_eth_l3_ipv6_dst_tag() 818 dr_ste_v0_build_eth_l3_ipv6_src_tag(struct mlx5dr_match_param *value, in dr_ste_v0_build_eth_l3_ipv6_src_tag() argument 844 dr_ste_v0_build_eth_l3_ipv4_5_tuple_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *tag) dr_ste_v0_build_eth_l3_ipv4_5_tuple_tag() argument 881 dr_ste_v0_build_eth_l2_src_or_dst_bit_mask(struct mlx5dr_match_param *value, bool inner, u8 *bit_mask) dr_ste_v0_build_eth_l2_src_or_dst_bit_mask() argument 932 dr_ste_v0_build_eth_l2_src_or_dst_tag(struct mlx5dr_match_param *value, bool inner, u8 *tag) dr_ste_v0_build_eth_l2_src_or_dst_tag() argument 993 dr_ste_v0_build_eth_l2_src_bit_mask(struct mlx5dr_match_param *value, bool inner, u8 *bit_mask) dr_ste_v0_build_eth_l2_src_bit_mask() argument 1005 dr_ste_v0_build_eth_l2_src_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *tag) dr_ste_v0_build_eth_l2_src_tag() argument 1028 dr_ste_v0_build_eth_l2_dst_bit_mask(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *bit_mask) dr_ste_v0_build_eth_l2_dst_bit_mask() argument 1041 dr_ste_v0_build_eth_l2_dst_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *tag) dr_ste_v0_build_eth_l2_dst_tag() argument 1065 dr_ste_v0_build_eth_l2_tnl_bit_mask(struct mlx5dr_match_param *value, bool inner, u8 *bit_mask) dr_ste_v0_build_eth_l2_tnl_bit_mask() argument 1094 dr_ste_v0_build_eth_l2_tnl_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *tag) dr_ste_v0_build_eth_l2_tnl_tag() argument 1150 dr_ste_v0_build_eth_l3_ipv4_misc_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *tag) dr_ste_v0_build_eth_l3_ipv4_misc_tag() argument 1174 dr_ste_v0_build_eth_ipv6_l3_l4_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *tag) dr_ste_v0_build_eth_ipv6_l3_l4_tag() argument 1216 dr_ste_v0_build_mpls_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *tag) dr_ste_v0_build_mpls_tag() argument 1242 dr_ste_v0_build_tnl_gre_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *tag) dr_ste_v0_build_tnl_gre_tag() argument 1273 dr_ste_v0_build_tnl_mpls_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *tag) dr_ste_v0_build_tnl_mpls_tag() argument 1316 dr_ste_v0_build_tnl_mpls_over_udp_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *tag) dr_ste_v0_build_tnl_mpls_over_udp_tag() argument 1358 dr_ste_v0_build_tnl_mpls_over_gre_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *tag) dr_ste_v0_build_tnl_mpls_over_gre_tag() argument 1404 dr_ste_v0_build_icmp_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *tag) dr_ste_v0_build_icmp_tag() argument 1470 dr_ste_v0_build_general_purpose_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *tag) dr_ste_v0_build_general_purpose_tag() argument 1494 dr_ste_v0_build_eth_l4_misc_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *tag) dr_ste_v0_build_eth_l4_misc_tag() argument 1523 dr_ste_v0_build_flex_parser_tnl_vxlan_gpe_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *tag) dr_ste_v0_build_flex_parser_tnl_vxlan_gpe_tag() argument 1553 dr_ste_v0_build_flex_parser_tnl_geneve_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *tag) dr_ste_v0_build_flex_parser_tnl_geneve_tag() argument 1582 dr_ste_v0_build_register_0_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *tag) dr_ste_v0_build_register_0_tag() argument 1608 dr_ste_v0_build_register_1_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *tag) dr_ste_v0_build_register_1_tag() argument 1634 dr_ste_v0_build_src_gvmi_qpn_bit_mask(struct mlx5dr_match_param *value, u8 *bit_mask) dr_ste_v0_build_src_gvmi_qpn_bit_mask() argument 1645 dr_ste_v0_build_src_gvmi_qpn_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *tag) dr_ste_v0_build_src_gvmi_qpn_tag() argument 1724 dr_ste_v0_build_flex_parser_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *tag) dr_ste_v0_build_flex_parser_tag() argument 1769 dr_ste_v0_build_flex_parser_tnl_geneve_tlv_opt_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *tag) dr_ste_v0_build_flex_parser_tnl_geneve_tlv_opt_tag() argument 1801 dr_ste_v0_build_flex_parser_tnl_gtpu_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *tag) dr_ste_v0_build_flex_parser_tnl_gtpu_tag() argument 1831 dr_ste_v0_build_tnl_gtpu_flex_parser_0_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *tag) dr_ste_v0_build_tnl_gtpu_flex_parser_0_tag() argument 1858 dr_ste_v0_build_tnl_gtpu_flex_parser_1_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, u8 *tag) dr_ste_v0_build_tnl_gtpu_flex_parser_1_tag() argument 1884 dr_ste_v0_build_tnl_header_0_1_tag(struct mlx5dr_match_param *value, struct mlx5dr_ste_build *sb, uint8_t *tag) dr_ste_v0_build_tnl_header_0_1_tag() argument [all...] |
/kernel/linux/linux-6.6/drivers/usb/gadget/legacy/ |
H A D | inode.c | 334 int value; in ep_io() local 344 value = usb_ep_queue (epdata->ep, req, GFP_ATOMIC); in ep_io() 346 value = -ENODEV; in ep_io() 349 if (likely (value == 0)) { in ep_io() 350 value = wait_for_completion_interruptible(&done); in ep_io() 351 if (value != 0) { in ep_io() 372 return value; in ep_io() 379 int value; in ep_release() local 381 value = mutex_lock_interruptible(&data->lock); in ep_release() 382 if (value < in ep_release() 397 ep_ioctl(struct file *fd, unsigned code, unsigned long value) ep_ioctl() argument 447 int value; ep_aio_cancel() local 529 ssize_t value; ep_aio() local 580 ssize_t value; ep_read_iter() local 640 ssize_t value; ep_write_iter() local 726 int value, length = len; ep_config() local 817 int value = -EBUSY; ep_open() local 1247 gadget_dev_ioctl(struct file *fd, unsigned code, unsigned long value) gadget_dev_ioctl() argument 1333 int value = -EOPNOTSUPP; gadgetfs_setup() local 1799 ssize_t value, length = len; dev_config() local 1912 int value = -EBUSY; gadget_dev_open() local [all...] |
/kernel/linux/linux-6.6/sound/pci/ice1712/ |
H A D | aureon.c | 135 * send device address, command and value, in aureon_pca9554_write() 202 ucontrol->value.enumerated.item[0] = spec->pca9554_out; in aureon_universe_inmux_get() 214 nval = ucontrol->value.enumerated.item[0]; in aureon_universe_inmux_put() 351 uinfo->value.integer.min = 0; in aureon_ac97_vol_info() 352 uinfo->value.integer.max = 31; in aureon_ac97_vol_info() 364 ucontrol->value.integer.value[0] = 0x1F - (vol & 0x1F); in aureon_ac97_vol_get() 366 ucontrol->value.integer.value[1] = 0x1F - ((vol >> 8) & 0x1F); in aureon_ac97_vol_get() 381 nvol = (0x1F - ucontrol->value in aureon_ac97_vol_put() [all...] |
/third_party/node/deps/v8/src/codegen/ppc/ |
H A D | macro-assembler-ppc.h | 143 void LoadDoubleLiteral(DoubleRegister result, base::Double value, 147 // load a literal signed int value <value> to GPR <dst> 148 void LoadIntLiteral(Register dst, int value); 149 // load an SMI value <value> to GPR <dst> 186 void AddS64(Register dst, Register src, const Operand& value, 188 void AddS64(Register dst, Register src, Register value, OEBit s = LeaveOE, 190 void SubS64(Register dst, Register src, const Operand& value, 192 void SubS64(Register dst, Register src, Register value, OEBi 301 SignedExtend(Register dst, Register value) SignedExtend() argument 321 ZeroExtend(Register dst, Register value) ZeroExtend() argument 340 ExtendValue(Register dst, Register value) ExtendValue() argument 372 StoreConditional(Register value, MemOperand dst) StoreConditional() argument 424 AtomicOps(MemOperand dst, Register value, Register output, Register result, bin_op op) AtomicOps() argument 737 CanonicalizeNaN(const DoubleRegister value) CanonicalizeNaN() argument 868 TestBit(Register value, int bitNumber, Register scratch = r0) TestBit() argument 873 TestBitMask(Register value, uintptr_t mask, Register scratch = r0) TestBitMask() argument 879 TestBitRange(Register value, int rangeStart, int rangeEnd, Register scratch = r0) TestBitRange() argument 884 TestIfSmi(Register value, Register scratch) TestIfSmi() argument 888 JumpIfSmi(Register value, Label* smi_label) JumpIfSmi() argument 898 TestIfInt32(Register value, Register scratch, CRegister cr = cr7) TestIfInt32() argument 1285 IncrementCounter(StatsCounter* counter, int value, Register scratch1, Register scratch2) IncrementCounter() argument 1292 DecrementCounter(StatsCounter* counter, int value, Register scratch1, Register scratch2) DecrementCounter() argument 1311 JumpIfNotSmi(Register value, Label* not_smi_label) JumpIfNotSmi() argument [all...] |
/third_party/protobuf/src/google/protobuf/ |
H A D | wrappers.pb.h | 216 // double value = 1; 218 double value() const; 219 void set_value(double value); 222 void _internal_set_value(double value); 353 // float value = 1; 355 float value() const; 356 void set_value(float value); 359 void _internal_set_value(float value); 490 // int64 value = 1; 492 ::PROTOBUF_NAMESPACE_ID::int64 value() cons 1364 inline double DoubleValue::value() const { value() function in DoubleValue 1368 _internal_set_value(double value) _internal_set_value() argument 1372 set_value(double value) set_value() argument 1388 inline float FloatValue::value() const { value() function in FloatValue 1392 _internal_set_value(float value) _internal_set_value() argument 1396 set_value(float value) set_value() argument 1412 inline ::PROTOBUF_NAMESPACE_ID::int64 Int64Value::value() const { value() function in Int64Value 1416 _internal_set_value(::PROTOBUF_NAMESPACE_ID::int64 value) _internal_set_value() argument 1420 set_value(::PROTOBUF_NAMESPACE_ID::int64 value) set_value() argument 1436 inline ::PROTOBUF_NAMESPACE_ID::uint64 UInt64Value::value() const { value() function in UInt64Value 1440 _internal_set_value(::PROTOBUF_NAMESPACE_ID::uint64 value) _internal_set_value() argument 1444 set_value(::PROTOBUF_NAMESPACE_ID::uint64 value) set_value() argument 1460 inline ::PROTOBUF_NAMESPACE_ID::int32 Int32Value::value() const { value() function in Int32Value 1464 _internal_set_value(::PROTOBUF_NAMESPACE_ID::int32 value) _internal_set_value() argument 1468 set_value(::PROTOBUF_NAMESPACE_ID::int32 value) set_value() argument 1484 inline ::PROTOBUF_NAMESPACE_ID::uint32 UInt32Value::value() const { value() function in UInt32Value 1488 _internal_set_value(::PROTOBUF_NAMESPACE_ID::uint32 value) _internal_set_value() argument 1492 set_value(::PROTOBUF_NAMESPACE_ID::uint32 value) set_value() argument 1508 inline bool BoolValue::value() const { value() function in BoolValue 1512 _internal_set_value(bool value) _internal_set_value() argument 1516 set_value(bool value) set_value() argument 1529 inline const std::string& StringValue::value() const { value() function in StringValue 1533 set_value(const std::string& value) set_value() argument 1544 _internal_set_value(const std::string& value) _internal_set_value() argument 1546 value_.Set(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), value, GetArena()); _internal_set_value() local 1548 set_value(std::string&& value) set_value() argument 1554 set_value(const char* value) set_value() argument 1561 set_value(const char* value, size_t size) set_value() argument 1576 set_allocated_value(std::string* value) set_allocated_value() argument 1582 value_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), value, set_allocated_value() local 1595 inline const std::string& BytesValue::value() const { value() function in BytesValue 1599 set_value(const std::string& value) set_value() argument 1610 _internal_set_value(const std::string& value) _internal_set_value() argument 1612 value_.Set(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), value, GetArena()); _internal_set_value() local 1614 set_value(std::string&& value) set_value() argument 1620 set_value(const char* value) set_value() argument 1627 set_value(const void* value, size_t size) set_value() argument 1642 set_allocated_value(std::string* value) set_allocated_value() argument 1648 value_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), value, set_allocated_value() local [all...] |
/kernel/linux/linux-5.10/tools/perf/scripts/python/ |
H A D | export-to-postgresql.py | 212 # print "{0:>6} {1:>10} {2:>9} {3:<30} {4:>6} {5:<30}".format(query.value(0), query.value(1), query.value(2), query.value(3), query.value(4), query.value(5)) 213 # call_path_id = query.value(6) 977 value = struct.pack(fmt, 2, 8, evsel_id, n, evsel_name) 978 evsel_file.write(value) 984 value [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/ |
H A D | drm_ioctl.c | 191 * get -EINVAL, hence this is the return value we need to hand back for in drm_getclient() 241 req->value = 0; in drm_getcap() 246 req->value = 1; in drm_getcap() 249 req->value |= dev->driver->prime_fd_to_handle ? DRM_PRIME_CAP_IMPORT : 0; in drm_getcap() 250 req->value |= dev->driver->prime_handle_to_fd ? DRM_PRIME_CAP_EXPORT : 0; in drm_getcap() 253 req->value = drm_core_check_feature(dev, DRIVER_SYNCOBJ); in drm_getcap() 256 req->value = drm_core_check_feature(dev, DRIVER_SYNCOBJ_TIMELINE); in drm_getcap() 267 req->value = 1; in drm_getcap() 270 req->value = 1; in drm_getcap() 273 req->value in drm_getcap() 474 drm_copy_field(char __user *buf, size_t *buf_len, const char *value) drm_copy_field() argument [all...] |
/kernel/linux/linux-6.6/tools/perf/scripts/python/ |
H A D | export-to-postgresql.py | 212 # print "{0:>6} {1:>10} {2:>9} {3:<30} {4:>6} {5:<30}".format(query.value(0), query.value(1), query.value(2), query.value(3), query.value(4), query.value(5)) 213 # call_path_id = query.value(6) 980 value = struct.pack(fmt, 2, 8, evsel_id, n, evsel_name) 981 evsel_file.write(value) 987 value [all...] |
/third_party/backends/backend/ |
H A D | canon630u.c | 103 SANE_Action action, void *value, 134 SANE_Action action, void *value, SANE_Int * info) in optionNumOptionsCallback() 142 *(SANE_Word *) value = getNumberOfOptions (); in optionNumOptionsCallback() 169 SANE_Action action, void *value, SANE_Int * info) in optionCalibrateCallback() 181 optionCalibrateValue = *(SANE_Bool *) value; in optionCalibrateCallback() 184 *(SANE_Word *) value = optionCalibrateValue; in optionCalibrateCallback() 219 SANE_Action action, void *value, SANE_Int * info) in optionResolutionCallback() 238 optionResolutionValue = *(SANE_Word *) value; in optionResolutionCallback() 241 *(SANE_Word *) value = optionResolutionValue; in optionResolutionCallback() 269 SANE_Action action, void *value, SANE_In in optionGrayscaleCallback() 133 optionNumOptionsCallback(SANE_Option * option, SANE_Handle handle, SANE_Action action, void *value, SANE_Int * info) optionNumOptionsCallback() argument 168 optionCalibrateCallback(SANE_Option * option, SANE_Handle handle, SANE_Action action, void *value, SANE_Int * info) optionCalibrateCallback() argument 218 optionResolutionCallback(SANE_Option * option, SANE_Handle handle, SANE_Action action, void *value, SANE_Int * info) optionResolutionCallback() argument 268 optionGrayscaleCallback(SANE_Option * option, SANE_Handle handle, SANE_Action action, void *value, SANE_Int * info) optionGrayscaleCallback() argument 315 optionAGainCallback(SANE_Option * option, SANE_Handle handle, SANE_Action action, void *value, SANE_Int * info) optionAGainCallback() argument 357 optionGammaCallback(SANE_Option * option, SANE_Handle handle, SANE_Action action, void *value, SANE_Int * info) optionGammaCallback() argument 418 optionTopLeftXCallback(SANE_Option * option, SANE_Handle handle, SANE_Action action, void *value, SANE_Int * info) optionTopLeftXCallback() argument 461 optionTopLeftYCallback(SANE_Option * option, SANE_Handle handle, SANE_Action action, void *value, SANE_Int * info) optionTopLeftYCallback() argument 505 optionBotRightXCallback(SANE_Option * option, SANE_Handle handle, SANE_Action action, void *value, SANE_Int * info) optionBotRightXCallback() argument 549 optionBotRightYCallback(SANE_Option * option, SANE_Handle handle, SANE_Action action, void *value, SANE_Int * info) optionBotRightYCallback() argument 606 dispatch_control_option(SANE_Handle handle, SANE_Int option, SANE_Action action, void *value, SANE_Int * info) dispatch_control_option() argument 924 sane_control_option(SANE_Handle handle, SANE_Int option, SANE_Action action, void *value, SANE_Int * info) sane_control_option() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libEGL/ |
H A D | Display.cpp | 160 // sw::FORMAT_A2R10G10B10, // The color_ramp conformance test uses ReadPixels with UNSIGNED_BYTE causing it to think that rendering skipped a colour value. in initialize() 241 bool Display::getConfigAttrib(EGLConfig config, EGLint attribute, EGLint *value) in getConfigAttrib() argument 247 case EGL_BUFFER_SIZE: *value = configuration->mBufferSize; break; in getConfigAttrib() 248 case EGL_ALPHA_SIZE: *value = configuration->mAlphaSize; break; in getConfigAttrib() 249 case EGL_BLUE_SIZE: *value = configuration->mBlueSize; break; in getConfigAttrib() 250 case EGL_GREEN_SIZE: *value = configuration->mGreenSize; break; in getConfigAttrib() 251 case EGL_RED_SIZE: *value = configuration->mRedSize; break; in getConfigAttrib() 252 case EGL_DEPTH_SIZE: *value = configuration->mDepthSize; break; in getConfigAttrib() 253 case EGL_STENCIL_SIZE: *value = configuration->mStencilSize; break; in getConfigAttrib() 254 case EGL_CONFIG_CAVEAT: *value in getConfigAttrib() [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | recursiveConditionalTypes.js | 10 then<U>(f: ((value: T) => U | PromiseLike<U>) | null | undefined): MyPromise<U>; 61 interface Box<T> { value: T }; 77 declare let b4: { value: { value: { value: typeof b4 }}}; 82 unbox({ value: { value: { value: { value: { value [all...] |
/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | strutil.h | 225 // If "full" is the empty string, yields an empty string as the only value. 276 // specify a value of a single byte (e.g. \x0045 is equivalent 394 PROTOBUF_EXPORT bool safe_strtob(StringPiece str, bool* value); 396 PROTOBUF_EXPORT bool safe_strto32(const string& str, int32* value); 397 PROTOBUF_EXPORT bool safe_strtou32(const string& str, uint32* value); 398 inline bool safe_strto32(const char* str, int32* value) { in safe_strto32() argument 399 return safe_strto32(string(str), value); in safe_strto32() 401 inline bool safe_strto32(StringPiece str, int32* value) { in safe_strto32() argument 402 return safe_strto32(str.ToString(), value); in safe_strto32() 404 inline bool safe_strtou32(const char* str, uint32* value) { in safe_strtou32() argument 407 safe_strtou32(StringPiece str, uint32* value) safe_strtou32() argument 413 safe_strto64(const char* str, int64* value) safe_strto64() argument 416 safe_strto64(StringPiece str, int64* value) safe_strto64() argument 419 safe_strtou64(const char* str, uint64* value) safe_strtou64() argument 422 safe_strtou64(StringPiece str, uint64* value) safe_strtou64() argument 428 safe_strtof(const string& str, float* value) safe_strtof() argument 431 safe_strtod(const string& str, double* value) safe_strtod() argument 434 safe_strtof(StringPiece str, float* value) safe_strtof() argument 437 safe_strtod(StringPiece str, double* value) safe_strtod() argument 524 SimpleBtoa(bool value) SimpleBtoa() argument 594 uint64 value; global() member [all...] |
/kernel/linux/linux-5.10/drivers/pinctrl/intel/ |
H A D | pinctrl-lynxpoint.c | 259 u32 value; in lp_gpio_ioxapic_use() local 261 value = ioread32(ioxapic_use); in lp_gpio_ioxapic_use() 264 return !!(value & BIT(offset - 8 + 0)); in lp_gpio_ioxapic_use() 266 return !!(value & BIT(offset - 13 + 3)); in lp_gpio_ioxapic_use() 268 return !!(value & BIT(offset - 45 + 5)); in lp_gpio_ioxapic_use() 307 u32 value, mode; in lp_pin_dbg_show() local 309 value = ioread32(reg); in lp_pin_dbg_show() 311 mode = value & USE_SEL_MASK; in lp_pin_dbg_show() 317 seq_printf(s, "0x%08x 0x%08x", value, ioread32(conf2)); in lp_pin_dbg_show() 371 u32 value; in lp_pinmux_set_mux() local 407 u32 value; lp_gpio_request_enable() local 456 u32 value; lp_gpio_set_direction() local 498 u32 value, pull; lp_pin_config_get() local 541 u32 value; lp_pin_config_set() local 597 lp_gpio_set(struct gpio_chip *chip, unsigned int offset, int value) lp_gpio_set() argument 618 lp_gpio_direction_output(struct gpio_chip *chip, unsigned int offset, int value) lp_gpio_direction_output() argument 718 u32 value; lp_irq_set_type() local [all...] |
/kernel/linux/linux-5.10/sound/soc/tegra/ |
H A D | tegra210_i2s.c | 311 ucontrol->value.integer.value[0] = i2s->loopback; in tegra210_i2s_get_loopback() 321 int value = ucontrol->value.integer.value[0]; in tegra210_i2s_put_loopback() local 323 if (value == i2s->loopback) in tegra210_i2s_put_loopback() 326 i2s->loopback = value; in tegra210_i2s_put_loopback() 340 ucontrol->value.integer.value[0] = i2s->fsync_width; in tegra210_i2s_get_fsync_width() 350 int value in tegra210_i2s_put_fsync_width() local 388 unsigned int value = ucontrol->value.enumerated.item[0]; tegra210_i2s_cput_stereo_to_mono() local 414 unsigned int value = ucontrol->value.enumerated.item[0]; tegra210_i2s_cput_mono_to_stereo() local 440 unsigned int value = ucontrol->value.enumerated.item[0]; tegra210_i2s_pput_stereo_to_mono() local 466 unsigned int value = ucontrol->value.enumerated.item[0]; tegra210_i2s_pput_mono_to_stereo() local 492 int value = ucontrol->value.integer.value[0]; tegra210_i2s_pput_fifo_th() local 518 int value = ucontrol->value.integer.value[0]; tegra210_i2s_put_bclk_ratio() local [all...] |
/kernel/linux/linux-6.6/sound/soc/tegra/ |
H A D | tegra210_i2s.c | 311 ucontrol->value.integer.value[0] = i2s->loopback; in tegra210_i2s_get_loopback() 321 int value = ucontrol->value.integer.value[0]; in tegra210_i2s_put_loopback() local 323 if (value == i2s->loopback) in tegra210_i2s_put_loopback() 326 i2s->loopback = value; in tegra210_i2s_put_loopback() 340 ucontrol->value.integer.value[0] = i2s->fsync_width; in tegra210_i2s_get_fsync_width() 350 int value in tegra210_i2s_put_fsync_width() local 388 unsigned int value = ucontrol->value.enumerated.item[0]; tegra210_i2s_cput_stereo_to_mono() local 414 unsigned int value = ucontrol->value.enumerated.item[0]; tegra210_i2s_cput_mono_to_stereo() local 440 unsigned int value = ucontrol->value.enumerated.item[0]; tegra210_i2s_pput_stereo_to_mono() local 466 unsigned int value = ucontrol->value.enumerated.item[0]; tegra210_i2s_pput_mono_to_stereo() local 492 int value = ucontrol->value.integer.value[0]; tegra210_i2s_pput_fifo_th() local 518 int value = ucontrol->value.integer.value[0]; tegra210_i2s_put_bclk_ratio() local [all...] |
/third_party/cmsis/CMSIS/Core/Include/m-profile/ |
H A D | cmsis_gcc_m.h | 286 \details Reverses the byte order in unsigned integer value. For example, 0x12345678 becomes 0x78563412. 287 \param [in] value Value to reverse 288 \return Reversed value 290 __STATIC_FORCEINLINE uint32_t __REV(uint32_t value) in __REV() argument 292 return __builtin_bswap32(value); in __REV() 299 \param [in] value Value to reverse 300 \return Reversed value 302 __STATIC_FORCEINLINE uint32_t __REV16(uint32_t value) in __REV16() argument 306 __ASM ("rev16 %0, %1" : __CMSIS_GCC_OUT_REG (result) : __CMSIS_GCC_USE_REG (value) ); in __REV16() 313 \details Reverses the byte order in a 16-bit value an 317 __REVSH(int16_t value) __REVSH() argument 356 __RBIT(uint32_t value) __RBIT() argument 384 __CLZ(uint32_t value) __CLZ() argument 510 __STREXB(uint8_t value, volatile uint8_t *addr) __STREXB() argument 544 __STREXH(uint16_t value, volatile uint16_t *addr) __STREXH() argument 578 __STREXW(uint32_t value, volatile uint32_t *addr) __STREXW() argument 596 __RRX(uint32_t value) __RRX() argument 656 __STRBT(uint8_t value, volatile uint8_t *ptr) __STRBT() argument 668 __STRHT(uint16_t value, volatile uint16_t *ptr) __STRHT() argument 680 __STRT(uint32_t value, volatile uint32_t *ptr) __STRT() argument 739 __STLB(uint8_t value, volatile uint8_t *ptr) __STLB() argument 751 __STLH(uint16_t value, volatile uint16_t *ptr) __STLH() argument 763 __STL(uint32_t value, volatile uint32_t *ptr) __STL() argument 822 __STLEXB(uint8_t value, volatile uint8_t *ptr) __STLEXB() argument 839 __STLEXH(uint16_t value, volatile uint16_t *ptr) __STLEXH() argument 856 __STLEX(uint32_t value, volatile uint32_t *ptr) __STLEX() argument [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | fixed-array-inl.h | 87 void FixedArray::set(int index, Smi value) { in set() argument 90 DCHECK(Object(value).IsSmi()); in set() 92 RELAXED_WRITE_FIELD(*this, offset, value); in set() 96 void FixedArray::set(int index, Object value) { in set() argument 101 RELAXED_WRITE_FIELD(*this, offset, value); in set() 102 WRITE_BARRIER(*this, offset, value); in set() 105 void FixedArray::set(int index, Object value, WriteBarrierMode mode) { in set() argument 109 RELAXED_WRITE_FIELD(*this, offset, value); in set() 110 CONDITIONAL_WRITE_BARRIER(*this, offset, value, mode); in set() 114 void FixedArray::NoWriteBarrierSet(FixedArray array, int index, Object value) { in NoWriteBarrierSet() argument 134 set(int index, Object value, RelaxedStoreTag, WriteBarrierMode mode) set() argument 142 set(int index, Smi value, RelaxedStoreTag tag) set() argument 158 set(int index, Object value, ReleaseStoreTag, WriteBarrierMode mode) set() argument 166 set(int index, Smi value, ReleaseStoreTag tag) set() argument 387 set(int index, double value) set() argument 444 Set(int index, MaybeObject value, WriteBarrierMode mode) Set() argument 489 Set(int index, MaybeObject value, WriteBarrierMode mode) Set() argument 493 Set(int index, Smi value) Set() argument 551 Set(int index, Smi value) Set() argument 569 set(int index, byte value) set() argument 599 set_int(int index, int value) set_int() argument 611 set_uint32(int index, uint32_t value) set_uint32() argument 623 set_uint32_relaxed(int index, uint32_t value) set_uint32_relaxed() argument 635 set_uint16(int index, uint16_t value) set_uint16() argument 696 set(int index, Object value) set() argument [all...] |
/third_party/mesa3d/src/gallium/auxiliary/translate/ |
H A D | translate_generic.c | 66 /* this value is set to -1 if this is a normal element with 70 * this value is set to the format size in bytes if 266 uint32_t value = 0; in emit_B10G10R10A2_UNORM() local 267 value |= ((uint32_t)(CLAMP(src[2], 0, 1) * 0x3ff)) & 0x3ff; in emit_B10G10R10A2_UNORM() 268 value |= (((uint32_t)(CLAMP(src[1], 0, 1) * 0x3ff)) & 0x3ff) << 10; in emit_B10G10R10A2_UNORM() 269 value |= (((uint32_t)(CLAMP(src[0], 0, 1) * 0x3ff)) & 0x3ff) << 20; in emit_B10G10R10A2_UNORM() 270 value |= ((uint32_t)(CLAMP(src[3], 0, 1) * 0x3)) << 30; in emit_B10G10R10A2_UNORM() 271 *(uint32_t *)attrib = util_le32_to_cpu(value); in emit_B10G10R10A2_UNORM() 278 uint32_t value = 0; in emit_B10G10R10A2_USCALED() local 279 value | in emit_B10G10R10A2_USCALED() 290 uint32_t value = 0; emit_B10G10R10A2_SNORM() local 302 uint32_t value = 0; emit_B10G10R10A2_SSCALED() local 314 uint32_t value = 0; emit_R10G10B10A2_UNORM() local 326 uint32_t value = 0; emit_R10G10B10A2_USCALED() local 338 uint32_t value = 0; emit_R10G10B10A2_SNORM() local 350 uint32_t value = 0; emit_R10G10B10A2_SSCALED() local [all...] |
/third_party/skia/src/ports/ |
H A D | SkFontMgr_android_parser.cpp | 155 static void parse_space_separated_languages(const char* value, size_t valueLen, in parse_space_separated_languages() argument 160 for (; i < valueLen && is_whitespace(value[i]); ++i) { } in parse_space_separated_languages() 163 for (j = i + 1; j < valueLen && !is_whitespace(value[j]); ++j) { } in parse_space_separated_languages() 164 languages.emplace_back(value + i, j - i); in parse_space_separated_languages() 181 const char* value = attributes[i+1]; 184 size_t valueLen = strlen(value); 186 axisTag = SkSetFourByteTag(value[0], value[1], value[2], value[ 620 xml_entity_decl_handler(void *data, const XML_Char *entityName, int is_parameter_entity, const XML_Char *value, int value_length, const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId, const XML_Char *notationName) xml_entity_decl_handler() argument [all...] |