/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
D | Format.h | 44 bool isFixed, 108 bool isFixed; member 148 bool isFixed, in Format() argument 178 isFixed(isFixed), in Format()
|
/third_party/mesa3d/src/amd/compiler/ |
D | aco_live_var_analysis.cpp | 137 if (definition.isFixed() && definition.physReg() == vcc) in process_live_temps_per_block() 166 if (operand.isFixed() && operand.physReg() == vcc) in process_live_temps_per_block() 203 assert(insn->definitions[0].isFixed() && insn->definitions[0].physReg() == exec); in process_live_temps_per_block() 208 if (definition.isFixed() && definition.physReg() == vcc) in process_live_temps_per_block() 259 if (operand.isFixed() && operand.physReg() == vcc) in process_live_temps_per_block()
|
D | aco_opt_value_numbering.cpp | 140 if (a->operands[i].isFixed()) { in operator ()() 141 if (!b->operands[i].isFixed()) in operator ()() 156 if (a->definitions[i].isFixed()) { in operator ()() 157 if (!b->definitions[i].isFixed()) in operator ()() 393 if (copy_instr && !instr->definitions[0].isFixed() && instr->operands[0].isTemp() && in process_block()
|
D | aco_validate.cpp | 165 check((instr->definitions[0].isFixed() && instr->definitions[0].physReg() == vcc) || in validate_ir() 197 check(instr->operands[2].isFixed() && instr->operands[2].physReg() == vcc, in validate_ir() 201 check(instr->definitions[1].isFixed() && instr->definitions[1].physReg() == vcc, in validate_ir() 234 instr->operands[i].regClass().is_subdword() && !instr->operands[i].isFixed())) in validate_ir() 237 if (instr->definitions[0].regClass().is_subdword() && !instr->definitions[0].isFixed()) in validate_ir() 250 instr->operands[i].regClass().is_subdword() && !instr->operands[i].isFixed()) in validate_ir() 270 check(instr->operands[i].isFixed() || instr->operands[i].isTemp() || in validate_ir() 495 check(instr->definitions.size() >= 2 && instr->definitions[1].isFixed() && in validate_ir() 550 check((instr->operands[0].isFixed() && !instr->operands[0].isConstant()) || in validate_ir() 1020 if (!op.isFixed()) in validate_ra() [all …]
|
D | aco_print_ir.cpp | 182 fprintf(output, "%%%d%s", operand->tempId(), operand->isFixed() ? ":" : ""); in aco_print_operand() 184 if (operand->isFixed()) in aco_print_operand() 203 fprintf(output, "%%%d%s", definition->tempId(), definition->isFixed() ? ":" : ""); in print_definition() 205 if (definition->isFixed()) in print_definition() 626 if (instr->definitions[0].isFixed()) in print_instr_format_specific() 640 if (instr->operands[i].isFixed()) in print_instr_format_specific()
|
D | aco_register_allocation.cpp | 1255 assert(op.isFixed()); in get_reg_impl() 1916 if (instr->operands[idx].isFixed()) in operand_can_use_reg() 1925 (!instr->operands[!idx].isFixed() || instr->operands[!idx].physReg() != m0); in operand_can_use_reg() 1958 if (operand.isFixed()) { in get_reg_for_operand() 2067 if (definition.isFixed()) in get_regs_for_phis() 2075 { return op.isTemp() && (!op.isFixed() || op.physReg() == reg); }; in get_regs_for_phis() 2091 if (definition.isFixed()) in get_regs_for_phis() 2110 if (!op.isTemp() || !op.isFixed()) in get_regs_for_phis() 2129 if (definition.isFixed()) in get_regs_for_phis() 2410 instr->operands[1].isFixed() && instr->operands[1].physReg() == exec) in get_affinities() [all …]
|
D | aco_ir.h | 762 constexpr bool isFixed() const noexcept { return isFixed_; } in isFixed() function 864 if (isFixed() != other.isFixed() || isKillBeforeDef() != other.isKillBeforeDef()) 866 if (isFixed() && other.isFixed() && physReg() != other.physReg()) 949 constexpr bool isFixed() const noexcept { return isFixed_; } in isFixed() function 1033 if (op.isFixed() && op.physReg() == exec) in reads_exec()
|
D | aco_lower_to_cssa.cpp | 112 assert(op.isFixed() && op.physReg() == exec); in collect_parallelcopies()
|
D | aco_optimizer.cpp | 1021 return op.isFixed() && op.physReg() == exec; in fixed_to_exec() 1313 !instr->operands[i].isFixed() && alu_can_accept_constant(instr->opcode, i)) { in label_instruction() 1734 if (instr->definitions[0].isFixed()) { in label_instruction() 1746 assert(instr->operands[0].isFixed()); in label_instruction() 2395 if (!instr->operands[0].isFixed() || instr->operands[0].physReg() != exec) in combine_inverse_comparison() 4280 assert(pred_instr->definitions[1].isFixed() && in to_uniform_bool_instr() 4455 instr->operands[0].isFixed() && instr->operands[0].physReg() == scc) { in select_instruction() 4679 if (instr->operands[0].isFixed() && instr->operands[0].physReg() >= 128) in try_convert_sopc_to_sopk()
|
D | aco_spill.cpp | 203 if (op.isFixed() && op.physReg() == exec) in next_uses_per_block() 413 if (op.isFixed() && op.physReg() == exec) in update_local_next_uses() 1031 assert(phi->definitions[0].isFixed() && phi->definitions[0].physReg() == exec); in add_coupling_code()
|
D | aco_scheduler.cpp | 565 if (def.isFixed() && def.physReg() == exec) in perform_hazard_query()
|
D | aco_lower_to_hw_instr.cpp | 864 assert(clobber_scc.isFixed() && clobber_scc.physReg() == scc); in emit_gfx10_wave64_bpermute() 1858 assert(it->second.op.isFixed()); in handle_operands() 2112 instr2->definitions[0].isFixed() && in lower_to_hw_instr()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64FrameLowering.h | 47 int64_t ObjectOffset, bool isFixed,
|
D | AArch64FrameLowering.cpp | 1708 bool isFixed = MFI.isFixedObjectIndex(FI); in resolveFrameIndexReference() local 1710 return resolveFrameOffsetReference(MF, ObjectOffset, isFixed, isSVE, FrameReg, in resolveFrameIndexReference() 1715 const MachineFunction &MF, int64_t ObjectOffset, bool isFixed, bool isSVE, in resolveFrameOffsetReference() argument 1726 !isFixed && ObjectOffset >= -((int)AFI->getCalleeSavedStackSize(MFI)); in resolveFrameOffsetReference() 1744 if (isFixed) { in resolveFrameOffsetReference() 1796 assert(((isFixed || isCSR) || !RegInfo->needsStackRealignment(MF) || !UseFP) && in resolveFrameOffsetReference() 1822 if (UseFP && !(isFixed || isCSR)) in resolveFrameOffsetReference() 1824 if (!UseFP && (isFixed || isCSR)) in resolveFrameOffsetReference()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/ |
D | SparcFrameLowering.cpp | 268 bool isFixed = MFI.isFixedObjectIndex(FI); in getFrameIndexReference() local 281 } else if (isFixed) { in getFrameIndexReference()
|
/third_party/skia/src/core/ |
D | SkTypeface_remote.h | 48 bool isFixed,
|
D | SkRemoteGlyphCache.cpp | 564 isFixed(is_fixed), glyphMaskNeedsCurrentColor(needsCurrentColor) {} in WireTypeface() 569 bool isFixed{false}; member 1072 wire.typefaceID, wire.glyphCount, wire.style, wire.isFixed, in addTypeface()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86FloatingPoint.cpp | 115 bool isFixed() const { return !Mask || FixCount; } in isFixed() function 522 assert(Bundle.isFixed() && "Reached block before any predecessors"); in setupBlockStack() 567 if (Bundle.isFixed()) { in finishBlockStack()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | ARMFrameLowering.cpp | 897 bool isFixed = MFI.isFixedObjectIndex(FI); in ResolveFrameIndexReference() local 910 if (isFixed) { in ResolveFrameIndexReference() 926 if (isFixed || (hasMovingSP && !RegInfo->hasBasePointer(MF))) { in ResolveFrameIndexReference()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
D | es31fTextureBorderClampTests.cpp | 1516 …const bool isFixed = m_channelClass == tcu::TEXTURECHANNELCLASS_SIGNED_FIXED_POINT || m_chan… in init() local 1615 else if (isFixed) in init()
|
/third_party/vk-gl-cts/framework/common/ |
D | tcuTexture.cpp | 1863 const bool isFixed = channelClass == tcu::TEXTURECHANNELCLASS_SIGNED_FIXED_POINT || in lookupBorder() local 1868 if (isFloat || isFixed) in lookupBorder()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | UtilsVk.cpp | 83 bool srcIsFixed = params.srcFormat->isFixed; in GetConvertVertexFlags()
|
/third_party/skia/third_party/externals/oboe/docs/reference/ |
D | jquery.js | 87 …isFixed:function(){var l=this.$root.css("position")=="fixed";if(!l){this.$root.parentsUntil("body"…
|
/third_party/typescript/src/compiler/ |
D | checker.ts | 22346 if (!inference.isFixed) { 22351 inference.isFixed = true; 22365 if (!inference.isFixed) { 22410 isFixed: false, 22423 isFixed: inference.isFixed, 22931 if (!inference.isFixed) { 23256 if (inference && !inference.isFixed && !isFromInferenceBlockedSource(source)) { 23580 …(inference.isFixed || !isTypeParameterAtTopLevel(getReturnTypeOfSignature(signature), inference.ty…
|
D | types.ts | 6392 isFixed: boolean; // True if inferences are fixed
|