/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
H A D | lp_bld_tgsi_soa.c | 1863 const struct tgsi_full_instruction *inst, in emit_store_chan() 1871 const struct tgsi_full_dst_register *reg = &inst->Dst[index]; in emit_store_chan() 1874 enum tgsi_opcode_type dtype = tgsi_opcode_infer_dst_type(inst->Instruction.Opcode, index); in emit_store_chan() 1881 if (inst->Instruction.Saturate) { in emit_store_chan() 1927 const struct tgsi_full_instruction * inst, in emit_debug() 1942 tgsi_dump_instruction_str(inst, bld_base->pc, &buf[2], sizeof buf - 2); in emit_debug() 1956 const struct tgsi_full_instruction * inst, in emit_store() 1962 enum tgsi_opcode_type dtype = tgsi_opcode_infer_dst_type(inst->Instruction.Opcode, index); in emit_store() 1964 unsigned writemask = inst->Dst[index].Register.WriteMask; in emit_store() 1969 emit_store_chan(bld_base, inst, inde in emit_store() 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 1925 emit_debug( struct lp_build_tgsi_context * bld_base, const struct tgsi_full_instruction * inst, const struct tgsi_opcode_info * info) emit_debug() argument 1954 emit_store( struct lp_build_tgsi_context * bld_base, const struct tgsi_full_instruction * inst, const struct tgsi_opcode_info * info, unsigned index, LLVMValueRef dst[4]) emit_store() argument 2012 lp_build_lod_property( struct lp_build_tgsi_context *bld_base, const struct tgsi_full_instruction *inst, unsigned src_op) lp_build_lod_property() argument 2066 emit_tex( struct lp_build_tgsi_soa_context *bld, const struct tgsi_full_instruction *inst, enum lp_build_tex_modifier modifier, LLVMValueRef *texel, unsigned sampler_reg, enum lp_sampler_op_type sampler_op) emit_tex() argument 2279 emit_sample(struct lp_build_tgsi_soa_context *bld, const struct tgsi_full_instruction *inst, enum lp_build_tex_modifier modifier, boolean compare, enum lp_sampler_op_type sample_type, LLVMValueRef *texel) emit_sample() argument 2461 emit_fetch_texels( struct lp_build_tgsi_soa_context *bld, const struct tgsi_full_instruction *inst, LLVMValueRef *texel, boolean is_samplei) emit_fetch_texels() argument 2602 emit_size_query( struct lp_build_tgsi_soa_context *bld, const struct tgsi_full_instruction *inst, LLVMValueRef *sizes_out, boolean is_sviewinfo) emit_size_query() argument 2720 emit_kill_if( struct lp_build_tgsi_soa_context *bld, const struct tgsi_full_instruction *inst, int pc) emit_kill_if() argument [all...] |
/third_party/skia/third_party/externals/spirv-tools/test/opt/ |
H A D | ir_context_test.cpp | 216 for (auto& inst : context->debugs2()) { in TEST_F() 217 EXPECT_EQ(inst.opcode(), SpvOpNop); in TEST_F() 221 for (auto& inst : context->annotations()) { in TEST_F() 222 EXPECT_EQ(inst.opcode(), SpvOpNop); in TEST_F() 263 auto inst = context->annotation_begin(); in TEST_F() local 264 EXPECT_EQ(inst->opcode(), SpvOpDecorate); in TEST_F() 265 EXPECT_EQ(inst->GetSingleWordInOperand(0), 3); in TEST_F() 268 ++inst; in TEST_F() 269 EXPECT_EQ(inst->opcode(), SpvOpDecorationGroup); in TEST_F() 270 EXPECT_EQ(inst in TEST_F() 327 auto inst = context->annotation_begin(); TEST_F() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/ |
H A D | ir_context_test.cpp | 216 for (auto& inst : context->debugs2()) { in TEST_F() 217 EXPECT_EQ(inst.opcode(), SpvOpNop); in TEST_F() 221 for (auto& inst : context->annotations()) { in TEST_F() 222 EXPECT_EQ(inst.opcode(), SpvOpNop); in TEST_F() 263 auto inst = context->annotation_begin(); in TEST_F() local 264 EXPECT_EQ(inst->opcode(), SpvOpDecorate); in TEST_F() 265 EXPECT_EQ(inst->GetSingleWordInOperand(0), 3); in TEST_F() 268 ++inst; in TEST_F() 269 EXPECT_EQ(inst->opcode(), SpvOpDecorationGroup); in TEST_F() 270 EXPECT_EQ(inst in TEST_F() 327 auto inst = context->annotation_begin(); TEST_F() local [all...] |
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | const_folding_rules.cpp | 38 return [](IRContext* context, Instruction* inst, in FoldExtractWithConstants() 46 for (uint32_t i = 1; i < inst->NumInOperands(); ++i) { in FoldExtractWithConstants() 47 uint32_t element_index = inst->GetSingleWordInOperand(i); in FoldExtractWithConstants() 52 return const_mgr->GetConstant(type_mgr->GetType(inst->type_id()), {}); in FoldExtractWithConstants() 68 return [](IRContext* context, Instruction* inst, in FoldVectorShuffleWithConstants() 71 assert(inst->opcode() == SpvOpVectorShuffle); in FoldVectorShuffleWithConstants() 102 for (uint32_t i = 2; i < inst->NumInOperands(); ++i) { in FoldVectorShuffleWithConstants() 103 uint32_t index = inst->GetSingleWordInOperand(i); in FoldVectorShuffleWithConstants() 119 return const_mgr->GetConstant(type_mgr->GetType(inst->type_id()), ids); in FoldVectorShuffleWithConstants() 124 return [](IRContext* context, Instruction* inst, in FoldVectorTimesScalar() [all...] |
H A D | private_to_local_pass.h | 26 // An instruction, inst, is totally redundant if there is another instruction 27 // that dominates inst, and also computes the same value. 47 // |inst| is an instruction declaring a varible. If that variable is 51 Function* FindLocalFunction(const Instruction& inst) const; 53 // Returns true is |inst| is a valid use of a pointer. In this case, a 56 bool IsValidUse(const Instruction* inst) const; 64 // Updates |inst|, and any instruction dependent on |inst|, to reflect the 66 bool UpdateUse(Instruction* inst, Instruction* user); 67 bool UpdateUses(Instruction* inst); [all...] |
H A D | function.cpp | 32 [clone, ctx](const Instruction* inst) { in Clone() 33 clone->AddParameter(std::unique_ptr<Instruction>(inst->Clone(ctx))); in Clone() 62 [&f](Instruction* inst) { in ForEachInst() 63 f(inst); in ForEachInst() 73 [&f](const Instruction* inst) { in ForEachInst() 74 f(inst); in ForEachInst() 265 ForEachInst([&str, options](const Instruction* inst) { in PrettyPrint() 266 str << inst->PrettyPrint(options); in PrettyPrint() 267 if (inst->opcode() != SpvOpFunctionEnd) { in PrettyPrint()
|
H A D | ssa_rewrite_pass.cpp | 302 void SSARewriter::ProcessStore(Instruction* inst, BasicBlock* bb) { in ProcessStore() argument 303 auto opcode = inst->opcode(); in ProcessStore() 310 (void)pass_->GetPtr(inst, &var_id); in ProcessStore() 311 val_id = inst->GetSingleWordInOperand(kStoreValIdInIdx); in ProcessStore() 312 } else if (inst->NumInOperands() >= 2) { in ProcessStore() 313 var_id = inst->result_id(); in ProcessStore() 314 val_id = inst->GetSingleWordInOperand(kVariableInitIdInIdx); in ProcessStore() 319 inst, var_id, val_id, inst, &decls_invisible_to_value_assignment_); in ProcessStore() 323 << inst in ProcessStore() 329 ProcessLoad(Instruction* inst, BasicBlock* bb) ProcessLoad() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | const_folding_rules.cpp | 94 return [](IRContext* context, Instruction* inst, in FoldExtractWithConstants() 102 for (uint32_t i = 1; i < inst->NumInOperands(); ++i) { in FoldExtractWithConstants() 103 uint32_t element_index = inst->GetSingleWordInOperand(i); in FoldExtractWithConstants() 108 return const_mgr->GetConstant(type_mgr->GetType(inst->type_id()), {}); in FoldExtractWithConstants() 124 return [](IRContext* context, Instruction* inst, in FoldVectorShuffleWithConstants() 127 assert(inst->opcode() == SpvOpVectorShuffle); in FoldVectorShuffleWithConstants() 158 for (uint32_t i = 2; i < inst->NumInOperands(); ++i) { in FoldVectorShuffleWithConstants() 159 uint32_t index = inst->GetSingleWordInOperand(i); in FoldVectorShuffleWithConstants() 175 return const_mgr->GetConstant(type_mgr->GetType(inst->type_id()), ids); in FoldVectorShuffleWithConstants() 180 return [](IRContext* context, Instruction* inst, in FoldVectorTimesScalar() [all...] |
H A D | private_to_local_pass.h | 26 // An instruction, inst, is totally redundant if there is another instruction 27 // that dominates inst, and also computes the same value. 47 // |inst| is an instruction declaring a varible. If that variable is 51 Function* FindLocalFunction(const Instruction& inst) const; 53 // Returns true is |inst| is a valid use of a pointer. In this case, a 56 bool IsValidUse(const Instruction* inst) const; 64 // Updates |inst|, and any instruction dependent on |inst|, to reflect the 66 bool UpdateUse(Instruction* inst, Instruction* user); 67 bool UpdateUses(Instruction* inst); [all...] |
H A D | function.cpp | 32 [clone, ctx](const Instruction* inst) { in Clone() 33 clone->AddParameter(std::unique_ptr<Instruction>(inst->Clone(ctx))); in Clone() 62 [&f](Instruction* inst) { in ForEachInst() 63 f(inst); in ForEachInst() 73 [&f](const Instruction* inst) { in ForEachInst() 74 f(inst); in ForEachInst() 265 ForEachInst([&str, options](const Instruction* inst) { in PrettyPrint() 266 str << inst->PrettyPrint(options); in PrettyPrint() 267 if (inst->opcode() != SpvOpFunctionEnd) { in PrettyPrint()
|
H A D | ssa_rewrite_pass.cpp | 302 void SSARewriter::ProcessStore(Instruction* inst, BasicBlock* bb) { in ProcessStore() argument 303 auto opcode = inst->opcode(); in ProcessStore() 310 (void)pass_->GetPtr(inst, &var_id); in ProcessStore() 311 val_id = inst->GetSingleWordInOperand(kStoreValIdInIdx); in ProcessStore() 312 } else if (inst->NumInOperands() >= 2) { in ProcessStore() 313 var_id = inst->result_id(); in ProcessStore() 314 val_id = inst->GetSingleWordInOperand(kVariableInitIdInIdx); in ProcessStore() 319 inst, var_id, val_id, inst, &decls_invisible_to_value_assignment_); in ProcessStore() 323 << inst in ProcessStore() 329 ProcessLoad(Instruction* inst, BasicBlock* bb) ProcessLoad() argument [all...] |
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm/crypto/sha/ |
H A D | sha1-armv8.S | 1099 .inst 0x5e280803 //sha1h v3.16b,v0.16b 1100 .inst 0x5e140020 //sha1c v0.16b,v1.16b,v20.4s // 0 1102 .inst 0x5e0630a4 //sha1su0 v4.16b,v5.16b,v6.16b 1103 .inst 0x5e280802 //sha1h v2.16b,v0.16b // 1 1104 .inst 0x5e150060 //sha1c v0.16b,v3.16b,v21.4s 1106 .inst 0x5e2818e4 //sha1su1 v4.16b,v7.16b 1107 .inst 0x5e0730c5 //sha1su0 v5.16b,v6.16b,v7.16b 1108 .inst 0x5e280803 //sha1h v3.16b,v0.16b // 2 1109 .inst 0x5e140040 //sha1c v0.16b,v2.16b,v20.4s 1111 .inst [all...] |
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm_avx2/crypto/sha/ |
H A D | sha1-armv8.S | 1099 .inst 0x5e280803 //sha1h v3.16b,v0.16b 1100 .inst 0x5e140020 //sha1c v0.16b,v1.16b,v20.4s // 0 1102 .inst 0x5e0630a4 //sha1su0 v4.16b,v5.16b,v6.16b 1103 .inst 0x5e280802 //sha1h v2.16b,v0.16b // 1 1104 .inst 0x5e150060 //sha1c v0.16b,v3.16b,v21.4s 1106 .inst 0x5e2818e4 //sha1su1 v4.16b,v7.16b 1107 .inst 0x5e0730c5 //sha1su0 v5.16b,v6.16b,v7.16b 1108 .inst 0x5e280803 //sha1h v3.16b,v0.16b // 2 1109 .inst 0x5e140040 //sha1c v0.16b,v2.16b,v20.4s 1111 .inst [all...] |
/foundation/communication/dsoftbus/components/nstackx/fillp/src/fillp_lib/include/ |
H A D | spunge_stack.h | 25 void SpungeDoRecvCycle(struct SockOsSocket *osSock, struct SpungeInstance *inst); 26 void SpungeDoPackCycle(struct SpungePcb *pcb, struct SpungeInstance *inst); 28 void SpungeDoSendCycle(struct SpungePcb *pcb, struct SpungeInstance *inst, FILLP_LLONG detaTime); 32 FillpQueue *SpungeAllocUnsendBox(struct SpungeInstance *inst);
|
/third_party/mesa3d/src/gallium/drivers/r300/compiler/tests/ |
H A D | rc_test_helpers.h | 40 struct rc_instruction * inst, 45 struct rc_instruction * inst, 49 struct rc_instruction * inst, 55 struct rc_instruction * inst,
|
/third_party/skia/third_party/externals/spirv-tools/test/ |
H A D | assembly_context_test.cpp | 39 spv_instruction_t inst; in TEST_P() local 40 inst.words = GetParam().initial_contents; in TEST_P() 42 context.binaryEncodeString(GetParam().str.c_str(), &inst)); in TEST_P() 44 EXPECT_THAT(inst.words, Eq(Concatenate({GetParam().initial_contents, in TEST_P()
|
/third_party/skia/third_party/externals/spirv-tools/source/reduce/ |
H A D | change_operand_reduction_opportunity.h | 28 // Constructs the opportunity to replace operand |operand_index| of |inst| 30 ChangeOperandReductionOpportunity(opt::Instruction* inst, in ChangeOperandReductionOpportunity() argument 32 : inst_(inst), in ChangeOperandReductionOpportunity() 34 original_id_(inst->GetOperand(operand_index).words[0]), in ChangeOperandReductionOpportunity() 35 original_type_(inst->GetOperand(operand_index).type), in ChangeOperandReductionOpportunity()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/reduce/ |
H A D | change_operand_reduction_opportunity.h | 28 // Constructs the opportunity to replace operand |operand_index| of |inst| 30 ChangeOperandReductionOpportunity(opt::Instruction* inst, in ChangeOperandReductionOpportunity() argument 32 : inst_(inst), in ChangeOperandReductionOpportunity() 34 original_id_(inst->GetOperand(operand_index).words[0]), in ChangeOperandReductionOpportunity() 35 original_type_(inst->GetOperand(operand_index).type), in ChangeOperandReductionOpportunity()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/ |
H A D | assembly_context_test.cpp | 39 spv_instruction_t inst; in TEST_P() local 40 inst.words = GetParam().initial_contents; in TEST_P() 42 context.binaryEncodeString(GetParam().str.c_str(), &inst)); in TEST_P() 44 EXPECT_THAT(inst.words, Eq(Concatenate({GetParam().initial_contents, in TEST_P()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/ |
H A D | test_sync_atomic.h | 17 #define X(inst, type) \ 18 type test_##inst(bool fetch_first, volatile type *ptr, type a); \ 19 type test_alloca_##inst(bool fetch, volatile type *ptr, type a); \ 20 type test_const_##inst(bool fetch, volatile type *ptr, type ignored);
|
/third_party/spirv-tools/source/opt/ |
H A D | private_to_local_pass.h | 26 // An instruction, inst, is totally redundant if there is another instruction 27 // that dominates inst, and also computes the same value. 47 // |inst| is an instruction declaring a variable. If that variable is 51 Function* FindLocalFunction(const Instruction& inst) const; 53 // Returns true is |inst| is a valid use of a pointer. In this case, a 56 bool IsValidUse(const Instruction* inst) const; 64 // Updates |inst|, and any instruction dependent on |inst|, to reflect the 66 bool UpdateUse(Instruction* inst, Instruction* user); 67 bool UpdateUses(Instruction* inst); [all...] |
H A D | function.cpp | 30 [clone, ctx](const Instruction* inst) { in Clone() 31 clone->AddParameter(std::unique_ptr<Instruction>(inst->Clone(ctx))); in Clone() 60 [&f](Instruction* inst) { in ForEachInst() 61 f(inst); in ForEachInst() 71 [&f](const Instruction* inst) { in ForEachInst() 72 f(inst); in ForEachInst() 263 ForEachInst([&str, options](const Instruction* inst) { in PrettyPrint() 264 str << inst->PrettyPrint(options); in PrettyPrint() 265 if (inst->opcode() != spv::Op::OpFunctionEnd) { in PrettyPrint()
|
/third_party/spirv-tools/source/reduce/ |
H A D | change_operand_reduction_opportunity.h | 28 // Constructs the opportunity to replace operand |operand_index| of |inst| 30 ChangeOperandReductionOpportunity(opt::Instruction* inst, in ChangeOperandReductionOpportunity() argument 32 : inst_(inst), in ChangeOperandReductionOpportunity() 34 original_id_(inst->GetOperand(operand_index).words[0]), in ChangeOperandReductionOpportunity() 35 original_type_(inst->GetOperand(operand_index).type), in ChangeOperandReductionOpportunity()
|
/third_party/spirv-tools/test/ |
H A D | assembly_context_test.cpp | 39 spv_instruction_t inst; in TEST_P() local 40 inst.words = GetParam().initial_contents; in TEST_P() 42 context.binaryEncodeString(GetParam().str.c_str(), &inst)); in TEST_P() 44 EXPECT_THAT(inst.words, Eq(Concatenate({GetParam().initial_contents, in TEST_P()
|
/third_party/libwebsockets/lib/drivers/netdev/ |
H A D | wifi.c | 56 wnd->inst.ops->scan(&wnd->inst); in lws_netdev_wifi_scan() 79 lws_netdevs_t *netdevs = lws_netdevs_from_ndi(&wnd->inst); in lws_netdev_wifi_scan_select() 160 wnd->inst.ops->connect(&wnd->inst, pc->ssid, pc->passphrase, in lws_netdev_wifi_scan_select() 189 lws_netdevs_t *netdevs = lws_netdevs_from_ndi(&wnd->inst); in lws_netdev_wifi_redo_last() 201 lws_snprintf(setname, sizeof(setname), "netdev.last.%s", wnd->inst.name); in lws_netdev_wifi_redo_last() 235 wnd->inst.ops->connect(&wnd->inst, ssid_copy, pp, bssid); in lws_netdev_wifi_redo_last()
|