Home
last modified time | relevance | path

Searched refs:value (Results 12451 - 12475 of 27198) sorted by relevance

1...<<491492493494495496497498499500>>...1088

/kernel/linux/linux-6.6/security/selinux/ss/
H A Dservices.c127 p_out->value = string_to_security_class(pol, p_in->name); in selinux_set_mapping()
128 if (!p_out->value) { in selinux_set_mapping()
145 p_out->perms[k] = string_to_av_perm(pol, p_out->value, in selinux_set_mapping()
179 return map->mapping[tclass].value; in unmap_class()
185 * Get kernel value for class from its policy value
192 if (map->mapping[i].value == pol_value) in map_class()
254 * Return the boolean value of a constraint expression
448 BUG_ON(pdatum->value < 1 || pdatum->value > 3 in dump_masked_av_helper()
3333 u32 value = datum->value - 1; get_classes_callback() local
3374 u32 value = datum->value - 1; get_permissions_callback() local
3432 int value; security_get_reject_unknown() local
3447 int value; security_get_allow_unknown() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/hostapd/
H A Dap_ctrl_iface.c1335 char *value; in hostapd_ctrl_iface_set() local
1338 value = os_strchr(cmd, ' '); in hostapd_ctrl_iface_set()
1339 if (value == NULL) in hostapd_ctrl_iface_set()
1341 *value++ = '\0'; in hostapd_ctrl_iface_set()
1343 wpa_printf(MSG_DEBUG, "CTRL_IFACE SET '%s'='%s'", cmd, value); in hostapd_ctrl_iface_set()
1348 val = strtol(value, NULL, 0); in hostapd_ctrl_iface_set()
1362 wps_testing_dummy_cred = atoi(value); in hostapd_ctrl_iface_set()
1366 wps_corrupt_pkhash = atoi(value); in hostapd_ctrl_iface_set()
1372 hapd->ext_mgmt_frame_handling = atoi(value); in hostapd_ctrl_iface_set()
1374 hapd->ext_eapol_frame_io = atoi(value); in hostapd_ctrl_iface_set()
3942 char *value; hostapd_ctrl_iface_dup_param() local
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/pm/swsmu/smu11/
H A Dsienna_cichlid_ppt.c712 uint32_t *value) in sienna_cichlid_get_smu_metrics_data()
759 *value = use_metrics_v3 ? metrics_v3->CurrClock[PPCLK_GFXCLK] : in sienna_cichlid_get_smu_metrics_data()
764 *value = use_metrics_v3 ? metrics_v3->CurrClock[PPCLK_SOCCLK] : in sienna_cichlid_get_smu_metrics_data()
769 *value = use_metrics_v3 ? metrics_v3->CurrClock[PPCLK_UCLK] : in sienna_cichlid_get_smu_metrics_data()
774 *value = use_metrics_v3 ? metrics_v3->CurrClock[PPCLK_VCLK_0] : in sienna_cichlid_get_smu_metrics_data()
779 *value = use_metrics_v3 ? metrics_v3->CurrClock[PPCLK_VCLK_1] : in sienna_cichlid_get_smu_metrics_data()
784 *value = use_metrics_v3 ? metrics_v3->CurrClock[PPCLK_DCLK_0] : in sienna_cichlid_get_smu_metrics_data()
789 *value = use_metrics_v3 ? metrics_v3->CurrClock[PPCLK_DCLK_1] : in sienna_cichlid_get_smu_metrics_data()
794 *value = use_metrics_v3 ? metrics_v3->CurrClock[PPCLK_DCEFCLK] : in sienna_cichlid_get_smu_metrics_data()
799 *value in sienna_cichlid_get_smu_metrics_data()
710 sienna_cichlid_get_smu_metrics_data(struct smu_context *smu, MetricsMember_t member, uint32_t *value) sienna_cichlid_get_smu_metrics_data() argument
1177 sienna_cichlid_get_current_clk_freq_by_table(struct smu_context *smu, enum smu_clk_type clk_type, uint32_t *value) sienna_cichlid_get_current_clk_freq_by_table() argument
1273 uint32_t cur_value = 0, value = 0, count = 0; sienna_cichlid_print_clk_levels() local
2203 sienna_cichlid_od_setting_check_range(struct smu_context *smu, struct smu_11_0_7_overdrive_table *od_table, enum SMU_11_0_7_ODSETTING_ID setting, uint32_t value) sienna_cichlid_od_setting_check_range() argument
[all...]
/kernel/linux/linux-6.6/tools/power/pm-graph/
H A Dsleepgraph.py413 def setOutputFolder(self, value):
420 return value.format(**args)
503 def getValueList(self, value):
505 for i in value.split(','):
509 def setDeviceFilter(self, value):
510 self.devicefilter = self.getValueList(value)
511 def setCallgraphFilter(self, value):
512 self.cgfilter = self.getValueList(value)
513 def skipKprobes(self, value):
514 for k in self.getValueList(value)
[all...]
/third_party/node/deps/v8/src/compiler/backend/x64/
H A Dcode-generator-x64.cc264 Register value, Register scratch0, Register scratch1, in OutOfLineRecordWrite()
269 value_(value), in OutOfLineRecordWrite()
278 DCHECK(!AreAliased(value, scratch0, scratch1)); in OutOfLineRecordWrite()
330 void EmitStore(TurboAssembler* tasm, Operand operand, Register value, in EmitStore() argument
335 tasm->movb(operand, value); in EmitStore()
338 tasm->movw(operand, value); in EmitStore()
341 tasm->movl(operand, value); in EmitStore()
344 tasm->movq(operand, value); in EmitStore()
347 tasm->StoreTaggedField(operand, value); in EmitStore()
350 tasm->StoreSandboxedPointerField(operand, value); in EmitStore()
263 OutOfLineRecordWrite(CodeGenerator* gen, Register object, Operand operand, Register value, Register scratch0, Register scratch1, RecordWriteMode mode, StubCallMode stub_mode) OutOfLineRecordWrite() argument
389 EmitStore(TurboAssembler* tasm, Operand operand, Immediate value, MachineRepresentation rep) EmitStore() argument
447 OutOfLineTSANStore(CodeGenerator* gen, Operand operand, Register value, Register scratch0, StubCallMode stub_mode, int size, std::memory_order order) OutOfLineTSANStore() argument
516 GetTSANValueRegister(TurboAssembler* tasm, Register value, X64OperandConverter& i, MachineRepresentation rep) GetTSANValueRegister() argument
535 GetTSANValueRegister( TurboAssembler* tasm, Immediate value, X64OperandConverter& i, MachineRepresentation rep) GetTSANValueRegister() argument
548 EmitTSANAwareStore(Zone* zone, CodeGenerator* codegen, TurboAssembler* tasm, Operand operand, ValueT value, X64OperandConverter& i, StubCallMode stub_call_mode, MachineRepresentation rep) EmitTSANAwareStore() argument
634 EmitTSANAwareStore(Zone* zone, CodeGenerator* codegen, TurboAssembler* tasm, Operand operand, ValueT value, X64OperandConverter& i, StubCallMode stub_call_mode, MachineRepresentation rep) EmitTSANAwareStore() argument
1480 Register value = i.InputRegister(index); AssembleArchInstruction() local
1496 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local
1501 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local
2349 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local
2354 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local
2385 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local
2390 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local
2417 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local
2422 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local
2462 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local
2467 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local
2490 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local
2507 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local
2512 zone(), this, tasm(), operand, value, i, DetermineStubCallMode(), AssembleArchInstruction() local
[all...]
/kernel/linux/linux-6.6/drivers/ptp/
H A Dptp_ocp.c837 int value; member
841 { .name = "NONE", .value = 0 },
842 { .name = "TOD", .value = 1 },
843 { .name = "IRIG", .value = 2 },
844 { .name = "PPS", .value = 3 },
845 { .name = "PTP", .value = 4 },
846 { .name = "RTC", .value = 5 },
847 { .name = "DCF", .value = 6 },
848 { .name = "REGS", .value = 0xfe },
849 { .name = "EXT", .value
[all...]
/third_party/googletest/googletest/src/
H A Dgtest.cc542 nullptr, // No value parameter. in InsertSyntheticTestCase()
604 nullptr, // No value parameter. in CheckForInstantiations()
943 // return the same value, as it always calls GetTypeId<>() from the
947 // The value of GetTestTypeId() as seen from within the Google Test
1171 // value using delete[]. Returns the wide string, or NULL if the
1186 // value using delete[]. Returns the ANSI string, or NULL if the
1627 // Find the value which is closest to zero.
1629 // Find the distance to the next double from that value.
1790 // depending on the value of the expected_to_be_substring parameter.
2165 // Formats an int value a
[all...]
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi_soa.c86 * Emit code to print a register value.
93 LLVMValueRef value) in emit_dump_reg()
101 lp_build_print_value(gallivm, buf, value); in emit_dump_reg()
580 * Loop over elements of index_vec, load scalar value, insert it into 'res'. in build_gather()
638 * Loop over elements of index_vec, store scalar value. in emit_mask_scatter()
666 * Read the current value of the ADDR register, convert the floats to
702 * value actually stored is expected to be an integer */ in get_indirect_index()
1132 /* This is really a system value not a regular input */ in emit_fetch_gs_input()
1144 * XXX: this is possibly not quite the right value, since file_max may be in emit_fetch_gs_input()
1220 /* This is really a system value no in emit_fetch_tcs_input()
89 emit_dump_reg(struct gallivm_state *gallivm, unsigned file, unsigned index, unsigned chan, LLVMValueRef value) emit_dump_reg() argument
1642 emit_store_64bit_chan(struct lp_build_tgsi_context *bld_base, LLVMValueRef chan_ptr, LLVMValueRef chan_ptr2, LLVMValueRef value) emit_store_64bit_chan() argument
1676 emit_store_output(struct lp_build_tgsi_context *bld_base, enum tgsi_opcode_type dtype, const struct tgsi_full_dst_register *reg, unsigned index, unsigned chan_index, LLVMValueRef indirect_index, LLVMValueRef value) emit_store_output() argument
1725 emit_store_tcs_output(struct lp_build_tgsi_context *bld_base, enum tgsi_opcode_type dtype, const struct tgsi_full_dst_register *reg, unsigned index, unsigned chan_index, LLVMValueRef indirect_index, LLVMValueRef value) emit_store_tcs_output() argument
1784 emit_store_temp(struct lp_build_tgsi_context *bld_base, enum tgsi_opcode_type dtype, const struct tgsi_full_dst_register *reg, unsigned index, unsigned chan_index, LLVMValueRef indirect_index, LLVMValueRef value) emit_store_temp() argument
1837 emit_store_address(struct lp_build_tgsi_context *bld_base, enum tgsi_opcode_type dtype, const struct tgsi_full_dst_register *reg, unsigned index, unsigned chan_index, LLVMValueRef indirect_index, LLVMValueRef value) emit_store_address() argument
1861 emit_store_chan( struct lp_build_tgsi_context *bld_base, const struct tgsi_full_instruction *inst, unsigned index, unsigned chan_index, LLVMValueRef value) emit_store_chan() argument
3623 LLVMValueRef value; store_emit() local
3814 LLVMValueRef value; atomic_emit() local
4322 LLVMValueRef value = bld->inputs[index][chan]; emit_prologue() local
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
H A Dcapture_gles_ext_autogen.h1475 GLint value);
1486 const GLfloat *value);
1497 const GLint *value);
1508 const GLuint *value);
1520 const GLfloat *value);
1532 const GLint *value);
1544 const GLuint *value);
1557 const GLfloat *value);
1570 const GLint *value);
1583 const GLuint *value);
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DReactor.hpp36 // Bind value to its symbolic name taken from the backtrace.
37 void EmitDebugVariable(class Value *value);
42 # define RR_DEBUG_INFO_EMIT_VAR(value) rr::EmitDebugVariable(value)
46 # define RR_DEBUG_INFO_EMIT_VAR(value)
140 Value *storeValue(Value *value) const;
200 this->storeValue(rvalue.value()); in store()
302 Value *value() const { return val; } in value() function in rr::RValue
2012 // Convert to nearest integer. If a converted value is outside of the integer
2436 // Returns an undefined value whe
2543 Store(RValue<T> value, RValue<Pointer<T>> pointer, unsigned int alignment, bool atomic, std::memory_order memoryOrder) Store() argument
2549 Store(RValue<T> value, Pointer<T> pointer, unsigned int alignment, bool atomic, std::memory_order memoryOrder) Store() argument
2555 Store(T value, Pointer<T> pointer, unsigned int alignment, bool atomic, std::memory_order memoryOrder) Store() argument
2756 RValue(Value *value) RValue() argument
3005 Value *value = Nucleus::createNullPointer(T::type()); Pointer() local
3030 Value *value = Nucleus::createNullPointer(T::type()); operator =() local
3468 operator =(bool value) operator =() argument
[all...]
/applications/standard/contacts_data/contacts/src/
H A Dcontacts_build.cpp526 HILOG_INFO("ContactsBuild GetArrayByKey value is not array"); in GetArrayByKey()
535 napi_value value = resultConvert.GetNapiValue(env, key.c_str(), valueObject); in GetStringValueByKey() local
536 std::string result = NapiGetValueString(env, value); in GetStringValueByKey()
543 napi_value value = resultConvert.GetNapiValue(env, key.c_str(), valueObject); in GetIntValueByKey() local
544 if (value == nullptr) { in GetIntValueByKey()
548 napi_get_value_int64(env, value, &result); in GetIntValueByKey()
837 int64_t value = 0; in GetInt() local
840 return value; in GetInt()
842 napi_get_value_int64(env, id, &value); in GetInt()
843 return value; in GetInt()
884 NapiGetValueString(napi_env env, napi_value value) NapiGetValueString() argument
[all...]
/device/soc/rockchip/common/vendor/drivers/gpu/arm/mali400/mali/linux/
H A Dmali_osk_profiling.c277 static u32 _mali_profiling_pack_int(u8 *const buf, u32 const buf_size, u32 const pos, s32 value) in _mali_profiling_pack_int() argument
283 char byte_value = value & 0x7f; in _mali_profiling_pack_int()
284 value >>= 0x07; in _mali_profiling_pack_int()
286 if ((value == 0 && (byte_value & 0x40) == 0) || (value == -1 && (byte_value & 0x40) != 0)) { in _mali_profiling_pack_int()
816 void _mali_osk_profiling_record_global_counters(int counter_id, u32 value) in _mali_osk_profiling_record_global_counters() argument
823 global_mali_profiling_counters[i].current_counter_value = value; in _mali_osk_profiling_record_global_counters()
1130 * @param event_id Event ID that the counter should count (HW counter value from TRM).
1255 void mali_profiling_control(u32 action, u32 value) in mali_profiling_control() argument
1260 (value in mali_profiling_control()
[all...]
/device/soc/rockchip/common/kernel/drivers/gpu/arm/mali400/mali/linux/
H A Dmali_osk_profiling.c272 static u32 _mali_profiling_pack_int(u8 *const buf, u32 const buf_size, u32 const pos, s32 value) in _mali_profiling_pack_int() argument
278 char byte_value = value & 0x7f; in _mali_profiling_pack_int()
279 value >>= 7; in _mali_profiling_pack_int()
281 if ((value == 0 && (byte_value & 0x40) == 0) || (value == -1 && (byte_value & 0x40) != 0)) { in _mali_profiling_pack_int()
800 void _mali_osk_profiling_record_global_counters(int counter_id, u32 value) in _mali_osk_profiling_record_global_counters() argument
806 global_mali_profiling_counters[i].current_counter_value = value; in _mali_osk_profiling_record_global_counters()
1107 * @param event_id Event ID that the counter should count (HW counter value from TRM).
1235 void _mali_profiling_control(u32 action, u32 value) in _mali_profiling_control() argument
1239 mali_set_user_setting(_MALI_UK_USER_SETTING_COLORBUFFER_CAPTURE_ENABLED, (value in _mali_profiling_control()
[all...]
/kernel/linux/linux-5.10/drivers/clk/samsung/
H A Dclk-exynos4.c261 { .offset = VPLL_CON0, .value = 0x80600302, },
262 { .offset = EPLL_CON0, .value = 0x806F0302, },
263 { .offset = SRC_MASK_TOP, .value = 0x00000001, },
264 { .offset = SRC_MASK_CAM, .value = 0x11111111, },
265 { .offset = SRC_MASK_TV, .value = 0x00000111, },
266 { .offset = SRC_MASK_LCD0, .value = 0x00001111, },
267 { .offset = SRC_MASK_MAUDIO, .value = 0x00000001, },
268 { .offset = SRC_MASK_FSYS, .value = 0x01011111, },
269 { .offset = SRC_MASK_PERIL0, .value = 0x01111111, },
270 { .offset = SRC_MASK_PERIL1, .value
[all...]
/kernel/linux/common_modules/tzdriver/core/
H A Dagent.c263 mb_pack->operation.params[0].value.a = in send_set_smc_cmd()
265 mb_pack->operation.params[0].value.b = in send_set_smc_cmd()
267 mb_pack->operation.params[1].value.a = buf_len; in send_set_smc_cmd()
346 mb_pack->operation.params[0].value.a = index; in tc_ns_late_init()
622 mb_pack->operation.params[0].value.a = tc_ns_time->seconds; in tc_ns_sync_sys_time()
623 mb_pack->operation.params[0].value.b = tc_ns_time->millis; in tc_ns_sync_sys_time()
922 mb_pack->operation.params[0].value.a = in register_agent_to_tee()
924 mb_pack->operation.params[0].value.b = in register_agent_to_tee()
926 mb_pack->operation.params[1].value.a = agent_buff_size; in register_agent_to_tee()
1044 mb_pack->operation.params[0].value in tc_ns_unregister_agent()
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/stmicro/stmmac/
H A Ddwmac-sun8i.c32 * @default_syscon_value: The default value of the EMAC register in syscon
33 * This value is used for disabling properly EMAC
34 * and used as a good starting value in case of the
42 * @rx_delay_max: Maximum raw value for RX delay chain
43 * @tx_delay_max: Maximum raw value for TX delay chain
46 * value of zero indicates this is not supported.
343 u32 value = readl(ioaddr + EMAC_INT_EN); in sun8i_dwmac_enable_dma_irq() local
346 value |= EMAC_RX_INT; in sun8i_dwmac_enable_dma_irq()
348 value |= EMAC_TX_INT; in sun8i_dwmac_enable_dma_irq()
350 writel(value, ioadd in sun8i_dwmac_enable_dma_irq()
356 u32 value = readl(ioaddr + EMAC_INT_EN); sun8i_dwmac_disable_dma_irq() local
1036 u32 value = readl(ioaddr + EMAC_BASIC_CTL0); sun8i_dwmac_set_mac_loopback() local
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/mellanox/mlx5/core/steering/
H A Ddr_rule.c852 static bool dr_rule_cmp_value_to_mask(u8 *mask, u8 *value, in dr_rule_cmp_value_to_mask() argument
858 if (value[i] & ~mask[i]) { in dr_rule_cmp_value_to_mask()
859 pr_info("Rule parameters contains a value not specified by mask\n"); in dr_rule_cmp_value_to_mask()
867 struct mlx5dr_match_parameters *value, in dr_rule_verify()
871 size_t value_size = value->match_sz; in dr_rule_verify()
883 mlx5dr_ste_copy_param(matcher->match_criteria, param, value); in dr_rule_verify()
890 mlx5dr_err(matcher->tbl->dmn, "Rule outer parameters contains a value not specified by mask\n"); in dr_rule_verify()
900 mlx5dr_err(matcher->tbl->dmn, "Rule misc parameters contains a value not specified by mask\n"); in dr_rule_verify()
910 mlx5dr_err(matcher->tbl->dmn, "Rule inner parameters contains a value not specified by mask\n"); in dr_rule_verify()
920 mlx5dr_err(matcher->tbl->dmn, "Rule misc2 parameters contains a value no in dr_rule_verify()
866 dr_rule_verify(struct mlx5dr_matcher *matcher, struct mlx5dr_match_parameters *value, struct mlx5dr_match_param *param) dr_rule_verify() argument
985 dr_rule_skip(enum mlx5dr_domain_type domain, enum mlx5dr_ste_entry_type ste_type, struct mlx5dr_match_param *mask, struct mlx5dr_match_param *value, u32 flow_source) dr_rule_skip() argument
1171 dr_rule_create_rule(struct mlx5dr_matcher *matcher, struct mlx5dr_match_parameters *value, size_t num_actions, struct mlx5dr_action *actions[], u32 flow_source) dr_rule_create_rule() argument
1232 mlx5dr_rule_create(struct mlx5dr_matcher *matcher, struct mlx5dr_match_parameters *value, size_t num_actions, struct mlx5dr_action *actions[], u32 flow_source) mlx5dr_rule_create() argument
[all...]
/kernel/linux/linux-5.10/drivers/net/ieee802154/
H A Datusb.c85 __u16 value, __u16 index, in atusb_control_msg()
95 value, index, data, size, timeout); in atusb_control_msg()
102 __func__, request, value, index, ret); in atusb_control_msg()
116 static int atusb_write_reg(struct atusb *atusb, u8 reg, u8 value) in atusb_write_reg() argument
120 dev_dbg(&usb_dev->dev, "%s: 0x%02x <- 0x%02x\n", __func__, reg, value); in atusb_write_reg()
123 value, reg, NULL, 0, 1000); in atusb_write_reg()
131 u8 value; in atusb_read_reg() local
143 value = buffer[0]; in atusb_read_reg()
145 return value; in atusb_read_reg()
153 u8 shift, u8 value) in atusb_write_subreg()
83 atusb_control_msg(struct atusb *atusb, unsigned int pipe, __u8 request, __u8 requesttype, __u16 value, __u16 index, void *data, __u16 size, int timeout) atusb_control_msg() argument
152 atusb_write_subreg(struct atusb *atusb, u8 reg, u8 mask, u8 shift, u8 value) atusb_write_subreg() argument
[all...]
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath11k/
H A Dhal_rx.c31 desc = (struct hal_reo_get_queue_stats *)tlv->value; in ath11k_hal_reo_cmd_queue_stats()
64 desc = (struct hal_reo_flush_cache *)tlv->value; in ath11k_hal_reo_cmd_flush_cache()
103 desc = (struct hal_reo_update_rx_queue *)tlv->value; in ath11k_hal_reo_cmd_update_rx_queue()
437 (struct hal_reo_get_queue_stats_status *)tlv->value; in ath11k_hal_reo_status_queue_stats()
501 hdr = (struct hal_reo_status_hdr *)tlv->value; in ath11k_hal_reo_process_status()
512 (struct hal_reo_flush_queue_status *)tlv->value; in ath11k_hal_reo_flush_queue_status()
531 (struct hal_reo_flush_cache_status *)tlv->value; in ath11k_hal_reo_flush_cache_status()
573 (struct hal_reo_unblock_cache_status *)tlv->value; in ath11k_hal_reo_unblk_cache_status()
601 (struct hal_reo_flush_timeout_list_status *)tlv->value; in ath11k_hal_reo_flush_timeout_list_status()
631 (struct hal_reo_desc_thresh_reached_status *)tlv->value; in ath11k_hal_reo_desc_thresh_reached_status()
[all...]
/kernel/linux/linux-5.10/drivers/parisc/
H A Dlba_pci.c131 #define WRITE_U8(value, addr) __raw_writeb(value, addr)
132 #define WRITE_U16(value, addr) __raw_writew(value, addr)
133 #define WRITE_U32(value, addr) __raw_writel(value, addr)
139 #define WRITE_REG8(value, addr) writeb(value, addr)
140 #define WRITE_REG16(value, addr) writew(value, add
[all...]
/kernel/linux/linux-5.10/drivers/tee/
H A Dtee_core.c386 params[n].u.value.a = ip.a; in params_from_user()
387 params[n].u.value.b = ip.b; in params_from_user()
388 params[n].u.value.c = ip.c; in params_from_user()
453 if (put_user(p->u.value.a, &up->a) || in params_to_user()
454 put_user(p->u.value.b, &up->b) || in params_to_user()
455 put_user(p->u.value.c, &up->c)) in params_to_user()
653 ip.a = p->u.value.a; in params_to_supp()
654 ip.b = p->u.value.b; in params_to_supp()
655 ip.c = p->u.value.c; in params_to_supp()
755 p->u.value in params_from_supp()
[all...]
/kernel/linux/linux-5.10/drivers/tty/serial/
H A Dsunsu.c121 static void serial_out(struct uart_sunsu_port *up, int offset, int value) in serial_out() argument
133 value |= UART_MCR_OUT2; in serial_out()
140 outb(value, up->port.iobase + 1); in serial_out()
144 writeb(value, up->port.membase + offset); in serial_out()
148 outb(value, up->port.iobase + offset); in serial_out()
159 #define serial_outp(up, offset, value) serial_out(up, offset, value)
165 static void serial_icr_write(struct uart_sunsu_port *up, int offset, int value) in serial_icr_write() argument
168 serial_out(up, UART_ICR, value); in serial_icr_write()
174 unsigned int value;
[all...]
/kernel/linux/linux-5.10/sound/soc/codecs/
H A Dcros_ec_codec.c124 ucontrol->value.integer.value[0] = r.gain; in dmic_get_gain()
133 ucontrol->value.integer.value[1] = r.gain; in dmic_get_gain()
148 int left = ucontrol->value.integer.value[0]; in dmic_put_gain()
149 int right = ucontrol->value.integer.value[1]; in dmic_put_gain()
636 ucontrol->value.integer.value[ in wov_enable_get()
[all...]
H A Dwm8350.c323 out->left_vol = ucontrol->value.integer.value[0]; in wm8350_put_volsw_2r_vu()
324 out->right_vol = ucontrol->value.integer.value[1]; in wm8350_put_volsw_2r_vu()
353 ucontrol->value.integer.value[0] = out1->left_vol; in wm8350_get_volsw_2r()
354 ucontrol->value.integer.value[1] = out1->right_vol; in wm8350_get_volsw_2r()
358 ucontrol->value.integer.value[ in wm8350_get_volsw_2r()
[all...]
/kernel/linux/linux-5.10/sound/pci/hda/
H A Dpatch_via.c225 ucontrol->value.enumerated.item[0] = spec->gen.power_down_unused; in via_pin_power_ctl_get()
234 bool val = !!ucontrol->value.enumerated.item[0]; in via_pin_power_ctl_put()
464 ucontrol->value.integer.value[0] = spec->vt1708_jack_detect; in vt1708_jack_detect_get()
477 val = !!ucontrol->value.integer.value[0]; in vt1708_jack_detect_put()
885 uinfo->value.integer.min = 0; in vt1716s_dmic_info()
886 uinfo->value.integer.max = 1; in vt1716s_dmic_info()
899 *ucontrol->value.integer.value in vt1716s_dmic_get()
[all...]

Completed in 58 milliseconds

1...<<491492493494495496497498499500>>...1088