Home
last modified time | relevance | path

Searched defs:cond (Results 651 - 675 of 764) sorted by relevance

1...<<2122232425262728293031

/third_party/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi_soa.c3533 LLVMValueRef cond, temp_res; in load_emit() local
3657 LLVMValueRef cond; in store_emit() local
3857 LLVMValueRef cond, temp_res; atomic_emit() local
[all...]
H A Dlp_bld_nir_soa.c854 LLVMValueRef cond = LLVMBuildICmp(gallivm->builder, LLVMIntNE, exec_mask, uint_bld->zero, ""); in emit_load_global() local
918 LLVMValueRef cond = LLVMBuildICmp(gallivm->builder, LLVMIntNE, exec_mask, uint_bld->zero, ""); in emit_store_global() local
953 LLVMValueRef cond, temp_res; in emit_atomic_global() local
1254 LLVMValueRef cond = LLVMBuildICmp(gallivm->builder, LLVMIntNE, exec_mask, uint_bld->zero, ""); emit_load_mem() local
1357 LLVMValueRef cond = LLVMBuildICmp(gallivm->builder, LLVMIntNE, exec_mask, uint_bld->zero, ""); emit_store_mem() local
1419 LLVMValueRef cond = LLVMBuildICmp(gallivm->builder, LLVMIntNE, exec_mask, uint_bld->zero, ""); emit_atomic_mem() local
1881 if_cond(struct lp_build_nir_context *bld_base, LLVMValueRef cond) if_cond() argument
1913 discard(struct lp_build_nir_context *bld_base, LLVMValueRef cond) discard() argument
2175 LLVMValueRef cond = LLVMBuildICmp(gallivm->builder, emit_elect() local
2567 LLVMValueRef cond, temp_res; emit_load_scratch() local
2627 LLVMValueRef cond; emit_store_scratch() local
[all...]
/third_party/pcre2/pcre2/src/sljit/
H A DsljitLir.c1992 sljit_s32 cond = type & ~SLJIT_32; in check_sljit_emit_cmov() local
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
H A DParseHelper.cpp3719 TIntermTyped *TParseContext::addTernarySelection(TIntermTyped *cond, TIntermTyped *trueBlock, TIntermTyped *falseBlock, const TSourceLoc &loc) in addTernarySelection() argument
/third_party/vixl/src/aarch64/
H A Dmacro-assembler-aarch64.cc625 void MacroAssembler::B(Label* label, Condition cond) { in Emit() argument
1238 Ccmp(const Register& rn, const Operand& operand, StatusFlags nzcv, Condition cond) Emit() argument
1251 Ccmn(const Register& rn, const Operand& operand, StatusFlags nzcv, Condition cond) Emit() argument
1264 ConditionalCompareMacro(const Register& rn, const Operand& operand, StatusFlags nzcv, Condition cond, ConditionalCompareOp op) Emit() argument
1292 CselHelper(MacroAssembler* masm, const Register& rd, Operand left, Operand right, Condition cond, bool* should_synthesise_left, bool* should_synthesise_right) Emit() argument
1389 CselSubHelperTwoImmediates(MacroAssembler* masm, const Register& rd, int64_t left, int64_t right, Condition cond, bool* should_synthesise_left, bool* should_synthesise_right) Emit() argument
1431 CselSubHelperTwoOrderedImmediates(MacroAssembler* masm, const Register& rd, int64_t left, int64_t right, Condition cond) Emit() argument
1449 CselSubHelperRightSmallImmediate( MacroAssembler* masm, UseScratchRegisterScope* temps, const Register& rd, const Operand& left, const Operand& right, Condition cond, bool* should_synthesise_left) Emit() argument
[all...]
/third_party/python/Modules/
H A D_tkinter.c1425 Tcl_Condition cond = NULL; in Tkapp_Call() local
1605 Tcl_Condition *cond; member
1698 Tcl_Condition cond = NULL; in var_invoke() local
734 Tkapp_ThreadSend(TkappObject *self, Tcl_Event *ev, Tcl_Condition *cond, Tcl_Mutex *mutex) Tkapp_ThreadSend() argument
2349 Tcl_Condition cond = NULL; _tkinter_tkapp_createcommand_impl() local
2402 Tcl_Condition cond = NULL; _tkinter_tkapp_deletecommand_impl() local
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/
H A Dmutex.cc492 const Condition *cond; // The condition that this thread is waiting for. member
1503 LockWhen(const Condition &cond) LockWhen() argument
1511 LockWhenWithTimeout(const Condition &cond, absl::Duration timeout) LockWhenWithTimeout() argument
1515 LockWhenWithDeadline(const Condition &cond, absl::Time deadline) LockWhenWithDeadline() argument
1525 ReaderLockWhen(const Condition &cond) ReaderLockWhen() argument
1533 ReaderLockWhenWithTimeout(const Condition &cond, absl::Duration timeout) ReaderLockWhenWithTimeout() argument
1538 ReaderLockWhenWithDeadline(const Condition &cond, absl::Time deadline) ReaderLockWhenWithDeadline() argument
1548 Await(const Condition &cond) Await() argument
1559 AwaitWithTimeout(const Condition &cond, absl::Duration timeout) AwaitWithTimeout() argument
1563 AwaitWithDeadline(const Condition &cond, absl::Time deadline) AwaitWithDeadline() argument
1578 AwaitCommon(const Condition &cond, KernelTimeout t) AwaitCommon() argument
1766 LockSlow(MuHow how, const Condition *cond, int flags) LockSlow() argument
1774 EvalConditionAnnotated(const Condition *cond, Mutex *mu, bool locking, bool trylock, bool read_lock) EvalConditionAnnotated() argument
1824 EvalConditionIgnored(Mutex *mu, const Condition *cond) EvalConditionIgnored() argument
1849 LockSlowWithDeadline(MuHow how, const Condition *cond, KernelTimeout t, int flags) LockSlowWithDeadline() argument
2727 Condition(const bool *cond) Condition() argument
[all...]
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fShaderOperatorTests.cpp143 template<typename T> inline T selection (bool cond, T a, T b) { return cond ? a : b; } in selection() argument
/kernel/linux/linux-5.10/drivers/infiniband/hw/mlx5/
H A Dqp.c2550 bool cond; in process_vendor_flags() local
2518 process_vendor_flag(struct mlx5_ib_dev *dev, int *flags, int flag, bool cond, struct mlx5_ib_qp *qp) process_vendor_flag() argument
2621 process_create_flag(struct mlx5_ib_dev *dev, int *flags, int flag, bool cond, struct mlx5_ib_qp *qp) process_create_flag() argument
2650 bool cond; process_create_flags() local
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/qlogic/qed/
H A Dqed_dev.c2704 u8 cond; in qed_hw_init_pf_doorbell_bar() local
/kernel/linux/linux-5.10/include/sound/
H A Dpcm.h230 unsigned int cond; member
/kernel/linux/linux-6.6/drivers/net/ethernet/qlogic/qed/
H A Dqed_dev.c2786 u8 cond; in qed_hw_init_pf_doorbell_bar() local
/kernel/linux/linux-6.6/include/sound/
H A Dpcm.h231 unsigned int cond; member
/kernel/linux/linux-6.6/drivers/net/wireless/realtek/rtw89/
H A Dfw.c419 bool (*cond)(u32 suit_ver_code, u32 comp_ver_code); member
2937 unsigned int cond; in rtw89_fw_h2c_del_pkt_offload() local
2976 unsigned int cond; in rtw89_fw_h2c_add_pkt_offload() local
3029 unsigned int cond; rtw89_fw_h2c_scan_list_offload() local
3096 unsigned int cond; rtw89_fw_h2c_scan_offload() local
4308 rtw89_h2c_tx_and_wait(struct rtw89_dev *rtwdev, struct sk_buff *skb, struct rtw89_wait_info *wait, unsigned int cond) rtw89_h2c_tx_and_wait() argument
4332 unsigned int cond; rtw89_fw_h2c_add_mcc() local
4379 unsigned int cond; rtw89_fw_h2c_start_mcc() local
4415 unsigned int cond; rtw89_fw_h2c_stop_mcc() local
4445 unsigned int cond; rtw89_fw_h2c_del_mcc_group() local
4473 unsigned int cond; rtw89_fw_h2c_reset_mcc_group() local
4503 unsigned int cond; rtw89_fw_h2c_mcc_req_tsf() local
4541 unsigned int cond; rtw89_fw_h2c_mcc_macid_bitamp() local
4577 unsigned int cond; rtw89_fw_h2c_mcc_sync() local
4608 unsigned int cond; rtw89_fw_h2c_mcc_set_duration() local
[all...]
H A Dcore.c3462 int rtw89_wait_for_cond(struct rtw89_wait_info *wait, unsigned int cond) in rtw89_wait_for_cond() argument
3484 void rtw89_complete_cond(struct rtw89_wait_info *wait, unsigned int cond, in rtw89_complete_cond() argument
/kernel/linux/linux-6.6/drivers/infiniband/hw/mlx5/
H A Dqp.c2876 bool cond; in process_vendor_flags() local
2844 process_vendor_flag(struct mlx5_ib_dev *dev, int *flags, int flag, bool cond, struct mlx5_ib_qp *qp) process_vendor_flag() argument
2950 process_create_flag(struct mlx5_ib_dev *dev, int *flags, int flag, bool cond, struct mlx5_ib_qp *qp) process_create_flag() argument
2979 bool cond; process_create_flags() local
[all...]
/test/xts/acts/resourceschedule/resourceschedule_standard/ffrt/entry/src/main/cpp/
H A Dffrtndk.cpp85 ffrt_cond_t* cond; member
378 ffrt_cond_t cond; ConditionVariableTest001() local
417 ffrt_cond_t cond; ConditionVariableTest002() local
456 ffrt_cond_t cond; ConditionVariableTest003() local
498 ffrt_cond_t cond; ConditionVariableTest004() local
552 ffrt_cond_t cond; ConditionVariableApiTest001() local
596 ffrt_cond_t cond; ConditionVariableApiTest002() local
635 ffrt_cond_t cond; ConditionVariableApiTest003() local
674 ffrt_cond_t cond; ConditionVariableApiTest004() local
[all...]
/third_party/glslang/SPIRV/
H A DSpvBuilder.cpp3465 Builder::If::If(Id cond, unsigned int ctrl, Builder& gb) : in If() argument
/third_party/mesa3d/src/amd/compiler/
H A Daco_optimizer.cpp39 perfwarn(Program* program, bool cond, const char* msg, Instruction* instr) in perfwarn() argument
/third_party/mesa3d/src/broadcom/compiler/
H A Dnir_to_vir.c1268 enum v3d_qpu_cond cond; in ntq_emit_bool_to_cond() local
1280 ntq_emit_cond_to_bool(struct v3d_compile *c, enum v3d_qpu_cond cond) in ntq_emit_cond_to_bool() argument
1292 ntq_emit_cond_to_int(struct v3d_compile *c, enum v3d_qpu_cond cond) in ntq_emit_cond_to_int() argument
1647 enum v3d_qpu_cond cond; in ntq_emit_alu() local
1670 enum v3d_qpu_cond cond; ntq_emit_alu() local
3532 enum v3d_qpu_cond cond = ntq_emit_bool_to_cond(c, instr->src[0]); ntq_emit_intrinsic() local
3546 vir_uniform_ui(c, 0)), cond); ntq_emit_intrinsic() local
3901 enum v3d_qpu_cond cond = ntq_emit_bool_to_cond(c, if_stmt->condition); ntq_emit_uniform_if() local
3988 enum v3d_qpu_cond cond = ntq_emit_bool_to_cond(c, if_stmt->condition); ntq_emit_nonuniform_if() local
[all...]
/third_party/mesa3d/src/compiler/glsl/
H A Dast_to_hir.cpp7133 ir_rvalue *const cond = in condition_to_hir() local
H A Dir.h1803 ir_discard(ir_rvalue *cond) in ir_discard() argument
/third_party/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_ir.h1108 value *cond; // glued to pseudo output (dst[2]) of the PRED_SETxxx member in r600_sb::if_node
/third_party/mesa3d/src/gallium/drivers/zink/nir_to_spirv/
H A Dnir_to_spirv.c1217 emit_select(struct ntv_context *ctx, SpvId type, SpvId cond, in emit_select() argument
/third_party/node/deps/v8/src/wasm/baseline/ppc/
H A Dliftoff-assembler-ppc.h1603 Condition cond = liftoff::ToCondition(liftoff_cond); in emit_cond_jump() local
1643 Condition cond = liftoff::ToCondition(liftoff_cond); in emit_i32_cond_jumpi() local

Completed in 124 milliseconds

1...<<2122232425262728293031