/external/deqp-deps/SPIRV-Tools/source/comp/ |
D | markv_decoder.cpp | 48 model_->GetOperandVariableWidthChunkLength(operand_.type); in DecodeNonIdWord() 455 memset(&operand_, 0, sizeof(operand_)); in DecodeOperand() 458 operand_.offset = static_cast<uint16_t>(operand_offset); in DecodeOperand() 459 operand_.type = type; in DecodeOperand() 462 operand_.number_kind = SPV_NUMBER_NONE; in DecodeOperand() 463 operand_.number_bit_width = 0; in DecodeOperand() 499 operand_.type = SPV_OPERAND_TYPE_ID; in DecodeOperand() 501 if (opcode == SpvOpExtInst && operand_.offset == 3) { in DecodeOperand() 542 operand_.type = SPV_OPERAND_TYPE_LITERAL_INTEGER; in DecodeOperand() 544 operand_.number_kind = SPV_NUMBER_UNSIGNED_INT; in DecodeOperand() [all …]
|
D | markv_encoder.cpp | 53 model_->GetOperandVariableWidthChunkLength(operand_.type); in EncodeNonIdWord() 387 operand_ = inst_.operands[operand_index_]; in EncodeInstruction() 392 logger_->AppendText(spvOperandTypeStr(operand_.type)); in EncodeInstruction() 396 switch (operand_.type) { in EncodeInstruction() 403 const uint32_t id = inst_.words[operand_.offset]; in EncodeInstruction() 404 if (operand_.type == SPV_OPERAND_TYPE_TYPE_ID) { in EncodeInstruction() 407 } else if (operand_.type == SPV_OPERAND_TYPE_RESULT_ID) { in EncodeInstruction() 421 EncodeNonIdWord(inst_.words[operand_.offset]); in EncodeInstruction() 427 const spv_result_t result = EncodeLiteralNumber(operand_); in EncodeInstruction() 434 reinterpret_cast<const char*>(&inst_.words[operand_.offset]); in EncodeInstruction() [all …]
|
D | markv_codec.cpp | 394 assert(spvIsIdType(operand_.type) || in GetRuleBasedMtf() 395 operand_.type == SPV_OPERAND_TYPE_OPTIONAL_ID); in GetRuleBasedMtf() 396 assert(operand_.type != SPV_OPERAND_TYPE_RESULT_ID); in GetRuleBasedMtf()
|
D | markv_codec.h | 275 spv_parsed_operand_t operand_; variable
|
/external/swiftshader/third_party/SPIRV-Tools/source/comp/ |
D | markv_decoder.cpp | 48 model_->GetOperandVariableWidthChunkLength(operand_.type); in DecodeNonIdWord() 455 memset(&operand_, 0, sizeof(operand_)); in DecodeOperand() 458 operand_.offset = static_cast<uint16_t>(operand_offset); in DecodeOperand() 459 operand_.type = type; in DecodeOperand() 462 operand_.number_kind = SPV_NUMBER_NONE; in DecodeOperand() 463 operand_.number_bit_width = 0; in DecodeOperand() 499 operand_.type = SPV_OPERAND_TYPE_ID; in DecodeOperand() 501 if (opcode == SpvOpExtInst && operand_.offset == 3) { in DecodeOperand() 542 operand_.type = SPV_OPERAND_TYPE_LITERAL_INTEGER; in DecodeOperand() 544 operand_.number_kind = SPV_NUMBER_UNSIGNED_INT; in DecodeOperand() [all …]
|
D | markv_encoder.cpp | 53 model_->GetOperandVariableWidthChunkLength(operand_.type); in EncodeNonIdWord() 387 operand_ = inst_.operands[operand_index_]; in EncodeInstruction() 392 logger_->AppendText(spvOperandTypeStr(operand_.type)); in EncodeInstruction() 396 switch (operand_.type) { in EncodeInstruction() 403 const uint32_t id = inst_.words[operand_.offset]; in EncodeInstruction() 404 if (operand_.type == SPV_OPERAND_TYPE_TYPE_ID) { in EncodeInstruction() 407 } else if (operand_.type == SPV_OPERAND_TYPE_RESULT_ID) { in EncodeInstruction() 421 EncodeNonIdWord(inst_.words[operand_.offset]); in EncodeInstruction() 427 const spv_result_t result = EncodeLiteralNumber(operand_); in EncodeInstruction() 434 reinterpret_cast<const char*>(&inst_.words[operand_.offset]); in EncodeInstruction() [all …]
|
D | markv_codec.cpp | 394 assert(spvIsIdType(operand_.type) || in GetRuleBasedMtf() 395 operand_.type == SPV_OPERAND_TYPE_OPTIONAL_ID); in GetRuleBasedMtf() 396 assert(operand_.type != SPV_OPERAND_TYPE_RESULT_ID); in GetRuleBasedMtf()
|
D | markv_codec.h | 275 spv_parsed_operand_t operand_; variable
|
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | cudnn_batchnorm_thunk.cc | 85 operand_(operand), in CudnnBatchNormForwardInferenceThunk() 112 se::DeviceMemory<float>(buffer_allocations.GetDeviceAddress(operand_)), in ExecuteOnStream() 144 operand_(operand), in CudnnBatchNormForwardTrainingThunk() 184 se::DeviceMemory<float>(buffer_allocations.GetDeviceAddress(operand_)), in ExecuteOnStream() 224 operand_(operand), in CudnnBatchNormBackwardThunk() 270 se::DeviceMemory<float>(buffer_allocations.GetDeviceAddress(operand_)), in ExecuteOnStream()
|
D | cudnn_batchnorm_thunk.h | 68 BufferAllocation::Slice operand_; 99 BufferAllocation::Slice operand_; 133 BufferAllocation::Slice operand_;
|
/external/v8/src/compiler/ |
D | register-allocator-verifier.h | 80 operand_(operand), in PendingAssessment() 94 InstructionOperand operand() const { return operand_; } in operand() 100 InstructionOperand operand_; variable
|
D | register-allocator.h | 261 InstructionOperand* operand() const { return operand_; } in NON_EXPORTED_BASE() 262 bool HasOperand() const { return operand_ != nullptr; } in NON_EXPORTED_BASE() 298 InstructionOperand* const operand_; in NON_EXPORTED_BASE() local
|
D | register-allocator.cc | 261 : operand_(operand), hint_(hint), next_(nullptr), pos_(pos), flags_(0) { in UsePosition() 265 if (operand_ != nullptr && operand_->IsUnallocated()) { in UsePosition() 266 const UnallocatedOperand* unalloc = UnallocatedOperand::cast(operand_); in UsePosition()
|
/external/v8/src/mips64/ |
D | simulator-mips64.h | 65 inline int32_t operand() const { return operand_; } in operand() 68 SimInstructionBase() : operand_(-1), instr_(nullptr), type_(kUnsupported) {} in SimInstructionBase() 71 int32_t operand_; variable 86 operand_ = *reinterpret_cast<const int32_t*>(instr); 89 DCHECK(reinterpret_cast<void*>(&operand_) == this);
|
/external/v8/src/mips/ |
D | simulator-mips.h | 65 inline int32_t operand() const { return operand_; } in operand() 68 SimInstructionBase() : operand_(-1), instr_(nullptr), type_(kUnsupported) {} in SimInstructionBase() 71 int32_t operand_; variable 86 operand_ = *reinterpret_cast<const int32_t*>(instr); 89 DCHECK(reinterpret_cast<void*>(&operand_) == this);
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | indexed_array_analysis.h | 111 Array* operand() const { return operand_; } in operand() 118 : operand_(operand), shape_(shape) {} in ReshapedArray() 120 Array* operand_; variable
|
D | pattern_matcher.h | 1317 : operand_index_(operand_index), operand_(operand) {} 1330 operand_.DescribeTo(os, indent + kIndentInc); 1341 if (!operand_.Match(HloOperand(inst, operand_index_), option)) { 1349 HloInstructionPattern<OperandType, OperandImpl> operand_;
|
/external/vixl/src/aarch32/ |
D | disasm-aarch32.h | 226 const MemOperand& operand_; variable 230 : location_type_(location_type), operand_(operand) {} in PrintMemOperand() 232 const MemOperand& GetOperand() const { return operand_; } in GetOperand() 237 const AlignedMemOperand& operand_; variable 242 : location_type_(location_type), operand_(operand) {} in PrintAlignedMemOperand() 244 const AlignedMemOperand& GetOperand() const { return operand_; } in GetOperand()
|
/external/v8/src/compiler/x64/ |
D | code-generator-x64.cc | 237 operand_(operand), in OutOfLineRecordWrite() 251 __ leap(scratch1_, operand_); in Generate() 265 Operand const operand_; member in v8::internal::compiler::__anonf3d38af20111::OutOfLineRecordWrite
|
/external/v8/src/compiler/ia32/ |
D | code-generator-ia32.cc | 265 operand_(operand), in OutOfLineRecordWrite() 297 __ lea(scratch1_, operand_); in Generate() 309 Operand const operand_; member in v8::internal::compiler::__anonb3cb59ac0111::OutOfLineRecordWrite
|
/external/kotlinc/lib/ |
D | kotlin-compiler.jar | META-INF/MANIFEST.MF
org/jetbrains/kotlin/utils/JavaSdkUtil.class
JavaSdkUtil ... |