/third_party/mesa3d/src/intel/isl/ |
H A D | isl_format.c | 58 #define SF(sampl, filt, shad, ck, rt, ab, vb, so, color, tw, tr, ccs_e, ta, sf) \ macro 105 SF( Y, 50, x, x, Y, Y, Y, Y, x, 70, 90, 90, x, R32G32B32A32_FLOAT) 106 SF( Y, x, x, x, Y, x, Y, Y, x, 70, 90, 90, x, R32G32B32A32_SINT) 107 SF( Y, x, x, x, Y, x, Y, Y, x, 70, 90, 90, x, R32G32B32A32_UINT) 108 SF( x, x, x, x, x, x, Y, x, x, x, x, x, x, R32G32B32A32_UNORM) 109 SF( x, x, x, x, x, x, Y, x, x, x, x, x, x, R32G32B32A32_SNORM) 110 SF( x, x, x, x, x, x, Y, x, x, x, x, x, x, R64G64_FLOAT) 111 SF( Y, 50, x, x, 100, 100, x, x, x, x, x, 100, x, R32G32B32X32_FLOAT) 112 SF( x, x, x, x, x, x, Y, x, x, x, x, x, x, R32G32B32A32_SSCALED) 113 SF( [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/ |
H A D | Execution.cpp | 41 static void SetValue(Value *V, GenericValue Val, ExecutionContext &SF) { in SetValue() argument 42 SF.Values[V] = Val; in SetValue() 63 ExecutionContext &SF = ECStack.back(); in visitUnaryOperator() local 65 GenericValue Src = getOperandValue(I.getOperand(0), SF); in visitUnaryOperator() 96 SetValue(&I, R, SF); in visitUnaryOperator() 332 ExecutionContext &SF = ECStack.back(); 334 GenericValue Src1 = getOperandValue(I.getOperand(0), SF); 335 GenericValue Src2 = getOperandValue(I.getOperand(1), SF); 354 SetValue(&I, R, SF); 664 ExecutionContext &SF 2047 return executeBitCastInst(CE->getOperand(0), CE->getType(), SF); global() local 2104 getOperandValue(Value *V, ExecutionContext &SF) getOperandValue() argument 2163 ExecutionContext &SF = ECStack.back(); // Current stack frame run() local [all...] |
H A D | Interpreter.h | 189 gep_type_iterator E, ExecutionContext &SF); 195 void SwitchToNewBasicBlock(BasicBlock *Dest, ExecutionContext &SF); 201 GenericValue getConstantExprValue(ConstantExpr *CE, ExecutionContext &SF); 202 GenericValue getOperandValue(Value *V, ExecutionContext &SF); 204 ExecutionContext &SF); 206 ExecutionContext &SF); 208 ExecutionContext &SF); 210 ExecutionContext &SF); 212 ExecutionContext &SF); 214 ExecutionContext &SF); [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Linker/ |
H A D | LinkModules.cpp | 506 for (Function &SF : *SrcM) in run() 507 if (SF.hasLinkOnceLinkage()) in run() 508 if (const Comdat *SC = SF.getComdat()) in run() 509 LazyComdatMembers[SC].push_back(&SF); in run() 522 for (Function &SF : *SrcM) in run() 523 if (linkIfNeeded(SF)) in run()
|
H A D | IRMover.cpp | 501 Function *copyFunctionProto(const Function *SF); 654 Function *IRLinker::copyFunctionProto(const Function *SF) { in copyFunctionProto() argument 656 // bring SF over. in copyFunctionProto() 657 auto *F = Function::Create(TypeMap.get(SF->getFunctionType()), in copyFunctionProto() 659 SF->getAddressSpace(), SF->getName(), &DstM); in copyFunctionProto() 660 F->copyAttributesFrom(SF); in copyFunctionProto() 690 } else if (auto *SF = dyn_cast<Function>(SGV)) { in copyGlobalValueProto() 691 NewGV = copyFunctionProto(SF); in copyGlobalValueProto()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | FunctionImportUtils.cpp | 300 for (Function &SF : M) in processGlobalsForThinLTO() 301 processGlobalForThinLTO(SF); in processGlobalsForThinLTO()
|
/third_party/vixl/src/aarch64/ |
H A D | assembler-aarch64.cc | 292 Emit(SF(rt) | CBZ | ImmCmpBranch(imm19) | Rt(rt)); in cbz() 304 Emit(SF(rt) | CBNZ | ImmCmpBranch(imm19) | Rt(rt)); in cbnz() 648 Emit(SF(rd) | LSLV | Rm(rm) | Rn(rn) | Rd(rd)); in lslv() 657 Emit(SF(rd) | LSRV | Rm(rm) | Rn(rn) | Rd(rd)); in lsrv() 666 Emit(SF(rd) | ASRV | Rm(rm) | Rn(rn) | Rd(rd)); in asrv() 675 Emit(SF(rd) | RORV | Rm(rm) | Rn(rn) | Rd(rd)); in rorv() 685 Instr N = SF(rd) >> (kSFOffset - kBitfieldNOffset); in bfm() 686 Emit(SF(rd) | BFM | N | ImmR(immr, rd.GetSizeInBits()) | in bfm() 696 Instr N = SF(rd) >> (kSFOffset - kBitfieldNOffset); in sbfm() 697 Emit(SF(r in sbfm() [all...] |
H A D | assembler-aarch64.h | 7274 static Instr SF(Register rd) {
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
H A D | ScheduleDAGRRList.cpp | 1649 template<class SF> 1651 SF &SortFunc; 1653 reverse_sort(SF &sf) : SortFunc(sf) {} 1839 template<class SF> 1840 static SUnit *popFromQueueImpl(std::vector<SUnit *> &Q, SF &Picker) { in popFromQueueImpl() 1852 template<class SF> 1853 SUnit *popFromQueue(std::vector<SUnit *> &Q, SF &Picker, ScheduleDAG *DAG) { in popFromQueue() 1856 reverse_sort<SF> RPicker(Picker); in popFromQueue() 1871 template<class SF> 1873 SF Picke [all...] |
/third_party/node/deps/v8/src/codegen/arm64/ |
H A D | assembler-arm64.cc | 791 Emit(SF(rt) | CBZ | ImmCmpBranch(imm19) | Rt(rt)); in cbz() 799 Emit(SF(rt) | CBNZ | ImmCmpBranch(imm19) | Rt(rt)); in cbnz() 957 Emit(SF(rd) | LSLV | Rm(rm) | Rn(rn) | Rd(rd)); in lslv() 964 Emit(SF(rd) | LSRV | Rm(rm) | Rn(rn) | Rd(rd)); in lsrv() 971 Emit(SF(rd) | ASRV | Rm(rm) | Rn(rn) | Rd(rd)); in asrv() 978 Emit(SF(rd) | RORV | Rm(rm) | Rn(rn) | Rd(rd)); in rorv() 985 Instr N = SF(rd) >> (kSFOffset - kBitfieldNOffset); in bfm() 986 Emit(SF(rd) | BFM | N | ImmR(immr, rd.SizeInBits()) | in bfm() 993 Instr N = SF(rd) >> (kSFOffset - kBitfieldNOffset); in sbfm() 994 Emit(SF(r in sbfm() [all...] |
H A D | assembler-arm64-inl.h | 901 Instr Assembler::SF(Register rd) { in SF() function in v8::internal::Assembler
|
H A D | assembler-arm64.h | 2175 inline static Instr SF(Register rd);
|
/third_party/node/test/parallel/ |
H A D | test-crypto-x509.js | 37 L=SF 45 L=SF 261 L: 'SF', 270 L: 'SF',
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/ |
H A D | nv50_formats.c | 71 #define SF(c, pf, sf, r, g, b, a, t0, t1, t2, t3, sz, u) \ macro 87 SF(c, p, G80_SURFACE_FORMAT_##n, r, g, b, a, t, t, t, t, s, u) 90 SF(c, p, G80_ZETA_FORMAT_##n, \ 93 SF(c, p, G80_ZETA_FORMAT_##n, \ 96 SF(c, p, G80_ZETA_FORMAT_##n, \ 99 SF(c, p, G80_ZETA_FORMAT_NONE, \ 370 SF(A, R8SG8SB8UX8U_NORM, 0, R, G, B, ONE_FLOAT, SNORM, SNORM, UNORM, UNORM, A8B8G8R8, T), 371 SF(A, R5SG5SB6U_NORM, 0, R, G, B, ONE_FLOAT, SNORM, SNORM, UNORM, UNORM, B6G5R5, T),
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
H A D | HexagonExpandCondsets.cpp | 689 MachineOperand &SF = MI.getOperand(3); in split() local 690 if (ST.isReg() && SF.isReg()) { in split() 692 if (RT == RegisterRef(SF)) { in split() 711 genCondTfrFor(SF, At, DR, DSR, MP, false, ReadUndef, true); in split()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
H A D | MCAssembler.cpp | 625 const MCSymbolIdFragment &SF = cast<MCSymbolIdFragment>(F); in writeFragment() local 626 support::endian::write<uint32_t>(OS, SF.getSymbol()->getIndex(), Endian); in writeFragment()
|
/third_party/node/deps/v8/src/codegen/mips/ |
H A D | assembler-mips.cc | 1213 void Assembler::GenInstrImmediate(Opcode opcode, Register rs, SecondaryField SF, in GenInstrImmediate() argument 1217 Instr instr = opcode | (rs.code() << kRsShift) | SF | (j & kImm16Mask); in GenInstrImmediate()
|
H A D | assembler-mips.h | 1705 Opcode opcode, Register rs, SecondaryField SF, int32_t j,
|
/third_party/node/deps/v8/src/codegen/mips64/ |
H A D | assembler-mips64.h | 1741 Opcode opcode, Register rs, SecondaryField SF, int32_t j,
|
H A D | assembler-mips64.cc | 1142 void Assembler::GenInstrImmediate(Opcode opcode, Register rs, SecondaryField SF, in GenInstrImmediate() argument 1146 Instr instr = opcode | (rs.code() << kRsShift) | SF | (j & kImm16Mask); in GenInstrImmediate()
|