Home
last modified time | relevance | path

Searched refs:val (Results 20351 - 20375 of 25733) sorted by relevance

1...<<811812813814815816817818819820>>...1030

/third_party/toybox/toys/posix/
H A Dfind.c149 static int compare_numsign(long val, long units, char *str) in compare_numsign() argument
159 if (sign == '+') return val > myval; in compare_numsign()
160 if (sign == '-') return val < myval; in compare_numsign()
161 return val == myval; in compare_numsign()
/third_party/protobuf/ruby/ext/google/protobuf_c/
H A Dprotobuf.h430 VALUE RepeatedField_index_set(VALUE _self, VALUE _index, VALUE val);
432 VALUE RepeatedField_push(VALUE _self, VALUE val);
467 VALUE Map_set_frame(VALUE self, VALUE val);
547 VALUE val);
/third_party/python/Python/
H A Dpytime.c172 long long val = PyLong_AsLongLong(obj); in _PyLong_AsTime_t() local
174 long val = PyLong_AsLong(obj); in _PyLong_AsTime_t()
178 if (val == -1 && PyErr_Occurred()) { in _PyLong_AsTime_t()
184 return (time_t)val; in _PyLong_AsTime_t()
/third_party/protobuf/ruby/compatibility_tests/v3.0.0/tests/
H A Drepeated_field_test.rb112 m.repeated_string.each do |val|
113 assert_equal 'string', val
117 result = m.repeated_string.each{|val| val + '_junk'}
/third_party/protobuf/ruby/tests/
H A Drepeated_field_test.rb120 m.repeated_string.each do |val|
121 assert_equal 'string', val
125 result = m.repeated_string.each{|val| val + '_junk'}
/third_party/skia/third_party/externals/abseil-cpp/absl/container/
H A Dfixed_array_test.cc752 auto val = 0; in TEST() local
754 AllocFxdArr arr(len, val, Alloc(&allocated)); in TEST()
762 auto val = 0; in TEST() local
764 AllocFxdArr arr(len, val, Alloc(&allocated)); in TEST()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/
H A Dwps_upnp.c798 char *val; in upnp_wps_device_send_wlan_event() local
825 val = (char *) base64_encode(raw, raw_len, &val_len); in upnp_wps_device_send_wlan_event()
826 if (val == NULL) in upnp_wps_device_send_wlan_event()
830 sm->wlanevent = val; in upnp_wps_device_send_wlan_event()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/
H A Dwps_upnp.c820 char *val; in upnp_wps_device_send_wlan_event() local
847 val = base64_encode(raw, raw_len, &val_len); in upnp_wps_device_send_wlan_event()
848 if (val == NULL) in upnp_wps_device_send_wlan_event()
852 sm->wlanevent = val; in upnp_wps_device_send_wlan_event()
/kernel/linux/linux-6.6/kernel/bpf/
H A Dverifier.c5275 * val->foo = v; // reg->off is zero, btf and btf_id match type in map_kptr_match_type()
5276 * val->bar = &v->br; // reg->off is still zero, but we need to retry with in map_kptr_match_type()
5278 * val->baz = &v->bz; // reg->off is non-zero, so struct needs to be walked in map_kptr_match_type()
6230 static int bpf_map_direct_read(struct bpf_map *map, int off, int size, u64 *val, in bpf_map_direct_read() argument
6244 *val = is_ldsx ? (s64)*(s8 *)ptr : (u64)*(u8 *)ptr; in bpf_map_direct_read()
6247 *val = is_ldsx ? (s64)*(s16 *)ptr : (u64)*(u16 *)ptr; in bpf_map_direct_read()
6250 *val = is_ldsx ? (s64)*(s32 *)ptr : (u64)*(u32 *)ptr; in bpf_map_direct_read()
6253 *val = *(u64 *)ptr; in bpf_map_direct_read()
6723 u64 val = 0; in check_mem_access() local
6726 &val, is_lds in check_mem_access()
7406 u64 val = reg->var_off.value; process_spin_lock() local
7483 u64 val = reg->var_off.value; process_timer_func() local
9789 u64 val, max; record_func_key() local
12094 s64 val = reg->var_off.value; check_reg_sane_offset() local
13808 is_branch32_taken(struct bpf_reg_state *reg, u32 val, u8 opcode) is_branch32_taken() argument
13886 is_branch64_taken(struct bpf_reg_state *reg, u64 val, u8 opcode) is_branch64_taken() argument
13969 is_branch_taken(struct bpf_reg_state *reg, u64 val, u8 opcode, bool is_jmp32) is_branch_taken() argument
14063 reg_set_min_max(struct bpf_reg_state *true_reg, struct bpf_reg_state *false_reg, u64 val, u32 val32, u8 opcode, bool is_jmp32) reg_set_min_max() argument
14223 reg_set_min_max_inv(struct bpf_reg_state *true_reg, struct bpf_reg_state *false_reg, u64 val, u32 val32, u8 opcode, bool is_jmp32) reg_set_min_max_inv() argument
[all...]
/kernel/linux/linux-5.10/net/core/
H A Ddevlink.c248 u16 val; in devlink_sb_pool_index_get_from_attrs() local
253 val = nla_get_u16(attrs[DEVLINK_ATTR_SB_POOL_INDEX]); in devlink_sb_pool_index_get_from_attrs()
254 if (val >= devlink_sb_pool_count(devlink_sb)) in devlink_sb_pool_index_get_from_attrs()
256 *p_pool_index = val; in devlink_sb_pool_index_get_from_attrs()
272 u8 val; in devlink_sb_pool_type_get_from_attrs() local
277 val = nla_get_u8(attrs[DEVLINK_ATTR_SB_POOL_TYPE]); in devlink_sb_pool_type_get_from_attrs()
278 if (val != DEVLINK_SB_POOL_TYPE_INGRESS && in devlink_sb_pool_type_get_from_attrs()
279 val != DEVLINK_SB_POOL_TYPE_EGRESS) in devlink_sb_pool_type_get_from_attrs()
281 *p_pool_type = val; in devlink_sb_pool_type_get_from_attrs()
296 u8 val; in devlink_sb_th_type_get_from_attrs() local
322 u16 val; devlink_sb_tc_index_get_from_attrs() local
3657 devlink_nl_param_value_fill_one(struct sk_buff *msg, enum devlink_param_type type, enum devlink_param_cmode cmode, union devlink_param_value val) devlink_nl_param_value_fill_one() argument
6725 u8 val; devlink_trap_action_get_from_info() local
[all...]
/third_party/mesa3d/src/amd/llvm/
H A Dac_llvm_build.c1798 LLVMValueRef ac_build_ddxy(struct ac_llvm_context *ctx, uint32_t mask, int idx, LLVMValueRef val) in ac_build_ddxy() argument
1806 result_type = ac_to_float_type(ctx, LLVMTypeOf(val)); in ac_build_ddxy()
1809 val = LLVMBuildZExt(ctx->builder, val, ctx->i32, ""); in ac_build_ddxy()
1811 val = LLVMBuildBitCast(ctx->builder, val, ctx->i32, ""); in ac_build_ddxy()
1818 tl = ac_build_quad_swizzle(ctx, val, tl_lanes[0], tl_lanes[1], tl_lanes[2], tl_lanes[3]); in ac_build_ddxy()
1820 ac_build_quad_swizzle(ctx, val, trbl_lanes[0], trbl_lanes[1], trbl_lanes[2], trbl_lanes[3]); in ac_build_ddxy()
2607 LLVMValueRef val; in ac_build_isign() local
2610 val in ac_build_isign()
2614 ac_eliminate_negative_zero(struct ac_llvm_context *ctx, LLVMValueRef val) ac_eliminate_negative_zero() argument
2626 LLVMValueRef pos, neg, dw[2], val; ac_build_fsign() local
3031 ac_build_alloca_init(struct ac_llvm_context *ac, LLVMValueRef val, const char *name) ac_build_alloca_init() argument
3223 LLVMValueRef val; ac_build_mbcnt_add() local
[all...]
/drivers/peripheral/wlan/wpa/interfaces/hdi_service/service_common/
H A Dwpa_p2p_hal.h66 P2pSupplicantErrCode (*wpaP2pCliCmdServDiscCancelReq)(WifiWpaP2pInterface *p, const char *val);
/kernel/linux/linux-5.10/drivers/edac/
H A Dskx_common.h148 int skx_mce_check_error(struct notifier_block *nb, unsigned long val,
/kernel/linux/linux-5.10/arch/mips/include/asm/
H A Dcpu-info.h134 extern int proc_cpuinfo_notifier_call_chain(unsigned long val, void *v);
H A Dcompat.h27 s32 val[2]; member
/kernel/linux/linux-5.10/drivers/block/paride/
H A Dparide.h83 extern void pi_write_regr(PIA *pi, int cont, int regr, int val);
/kernel/linux/linux-5.10/arch/arm/include/asm/
H A Dhw_breakpoint.h129 unsigned long val, void *data);
/kernel/linux/linux-5.10/arch/arm64/kernel/probes/
H A Duprobes.c163 unsigned long val, void *data) in arch_uprobe_exception_notify()
162 arch_uprobe_exception_notify(struct notifier_block *self, unsigned long val, void *data) arch_uprobe_exception_notify() argument
/kernel/linux/linux-5.10/arch/ia64/include/asm/
H A Dperfmon.h40 unsigned int val; member
/kernel/linux/linux-5.10/arch/mips/loongson2ef/lemote-2f/
H A Dec_kb3310b.h13 extern void ec_write(unsigned short addr, unsigned char val);
/kernel/linux/linux-5.10/arch/powerpc/include/asm/
H A Dhw_breakpoint.h84 unsigned long val, void *data);
H A Dsstep.h117 unsigned long val; member
/kernel/linux/linux-5.10/arch/x86/kernel/
H A Dsmp.c119 static int smp_stop_nmi_callback(unsigned int val, struct pt_regs *regs) in smp_stop_nmi_callback() argument
/kernel/linux/linux-5.10/arch/s390/include/asm/
H A Dgmap.h124 int gmap_read_table(struct gmap *gmap, unsigned long gaddr, unsigned long *val);
/kernel/linux/linux-5.10/arch/x86/include/asm/
H A Diosf_mbi.h244 int iosf_mbi_call_pmic_bus_access_notifier_chain(unsigned long val, void *v) in iosf_mbi_call_pmic_bus_access_notifier_chain() argument

Completed in 59 milliseconds

1...<<811812813814815816817818819820>>...1030