Searched refs:SF (Results 1 - 25 of 49) sorted by relevance

12

/external/mesa3d/src/intel/isl/
H A Disl_format.c46 #define SF(sampl, filt, shad, ck, rt, ab, vb, so, color, ccs_e, sf) \ macro
90 SF( Y, 50, x, x, Y, Y, Y, Y, x, 90, R32G32B32A32_FLOAT)
91 SF( Y, x, x, x, Y, x, Y, Y, x, 90, R32G32B32A32_SINT)
92 SF( Y, x, x, x, Y, x, Y, Y, x, 90, R32G32B32A32_UINT)
93 SF( x, x, x, x, x, x, Y, x, x, x, R32G32B32A32_UNORM)
94 SF( x, x, x, x, x, x, Y, x, x, x, R32G32B32A32_SNORM)
95 SF( x, x, x, x, x, x, Y, x, x, x, R64G64_FLOAT)
96 SF( Y, 50, x, x, x, x, x, x, x, x, R32G32B32X32_FLOAT)
97 SF( x, x, x, x, x, x, Y, x, x, x, R32G32B32A32_SSCALED)
98 SF(
[all...]
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp40 static void SetValue(Value *V, GenericValue Val, ExecutionContext &SF) { argument
41 SF.Values[V] = Val;
258 ExecutionContext &SF = ECStack.back();
260 GenericValue Src1 = getOperandValue(I.getOperand(0), SF);
261 GenericValue Src2 = getOperandValue(I.getOperand(1), SF);
280 SetValue(&I, R, SF);
446 ExecutionContext &SF = ECStack.back();
448 GenericValue Src1 = getOperandValue(I.getOperand(0), SF);
449 GenericValue Src2 = getOperandValue(I.getOperand(1), SF);
474 SetValue(&I, R, SF);
[all...]
H A DInterpreter.h195 gep_type_iterator E, ExecutionContext &SF);
201 void SwitchToNewBasicBlock(BasicBlock *Dest, ExecutionContext &SF);
208 GenericValue getConstantExprValue(ConstantExpr *CE, ExecutionContext &SF);
209 GenericValue getOperandValue(Value *V, ExecutionContext &SF);
211 ExecutionContext &SF);
213 ExecutionContext &SF);
215 ExecutionContext &SF);
217 ExecutionContext &SF);
219 ExecutionContext &SF);
221 ExecutionContext &SF);
[all...]
/external/clang/test/Layout/
H A Dms-x86-member-pointers.cpp12 struct SF { char a; int (S::*mp)(); }; struct
46 // CHECK-NEXT: 0 | struct SF
77 sizeof(SF) +
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h208 gep_type_iterator E, ExecutionContext &SF);
214 void SwitchToNewBasicBlock(BasicBlock *Dest, ExecutionContext &SF);
220 GenericValue getConstantExprValue(ConstantExpr *CE, ExecutionContext &SF);
221 GenericValue getOperandValue(Value *V, ExecutionContext &SF);
223 ExecutionContext &SF);
225 ExecutionContext &SF);
227 ExecutionContext &SF);
229 ExecutionContext &SF);
231 ExecutionContext &SF);
233 ExecutionContext &SF);
[all...]
H A DExecution.cpp42 static void SetValue(Value *V, GenericValue Val, ExecutionContext &SF) { argument
43 SF.Values[V] = Val;
279 ExecutionContext &SF = ECStack.back();
281 GenericValue Src1 = getOperandValue(I.getOperand(0), SF);
282 GenericValue Src2 = getOperandValue(I.getOperand(1), SF);
301 SetValue(&I, R, SF);
611 ExecutionContext &SF = ECStack.back();
613 GenericValue Src1 = getOperandValue(I.getOperand(0), SF);
614 GenericValue Src2 = getOperandValue(I.getOperand(1), SF);
642 SetValue(&I, R, SF);
1996 return executePtrToIntInst(CE->getOperand(0), CE->getType(), SF); local
2057 getOperandValue(Value *V, ExecutionContext &SF) argument
2116 ExecutionContext &SF = ECStack.back(); // Current stack frame local
[all...]
/external/clang/test/Sema/
H A Dattr-mode-vector-types.c8 typedef float __attribute__((mode(SF))) __attribute__((vector_size(256))) vec_t5;
18 typedef float v4sf __attribute__((mode(SF))) __attribute__ ((vector_size(16)));
/external/clang/test/SemaCXX/
H A Dattr-mode-tmpl.cpp40 typedef T __attribute__((mode(SF))) T5; // expected-error2{{type of machine mode does not match type of base type}}
50 T2 __attribute__((mode(SF))) paramSF,
70 void f2(T __attribute__((mode(SF))) x) {} // expected-error2{{type of machine mode does not match type of base type}}
H A Dscope-check.cpp406 static void foo(const Source &SF, MyCl<TT *> Source::*m) { argument
407 switch (SF.getKind()) {
414 auto &y = const_cast<MyCl<TT *> &>(SF.*m); // expected-warning 0-1{{extension}}
/external/clang/test/CodeGen/
H A Dattr-mode-vector-types.c7 typedef float __attribute__((mode(SF))) __attribute__((vector_size(128))) vec_t5;
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_urb.c42 #define SF 3 macro
60 * The SF unit preallocates a PUE at the start of thread dispatch, and only
63 * For CLIP, the SF unit will hold the previous primitive while the
84 * XXX: Verify SF min_entry_size.
127 if (sfsize < limits[SF].min_entry_size)
128 sfsize = limits[SF].min_entry_size;
145 brw->urb.nr_sf_entries = limits[SF].preferred_nr_entries;
158 brw->urb.nr_sf_entries = limits[SF].preferred_nr_entries;
174 brw->urb.nr_sf_entries = limits[SF].min_nr_entries;
199 "URB fence: %d ..VS.. %d ..GS.. %d ..CLP.. %d ..SF
[all...]
/external/swiftshader/third_party/LLVM/lib/Linker/
H A DLinkModules.cpp677 bool ModuleLinker::linkFunctionProto(Function *SF) { argument
678 GlobalValue *DGV = getLinkedToGlobal(SF);
683 if (getLinkageResult(DGV, SF, NewLinkage, LinkFromSrc))
691 ValueMap[SF] = ConstantExpr::getBitCast(DGV, TypeMap.get(SF->getType()));
695 DoNotLinkFromSource.insert(SF);
702 // bring SF over.
703 Function *NewDF = Function::Create(TypeMap.get(SF->getFunctionType()),
704 SF->getLinkage(), SF
966 linkFunctionBody(cast<Function>(ValueMap[SF]), SF); local
[all...]
/external/syslinux/gpxe/src/arch/i386/include/
H A Dregisters.h185 #define SF ( 1 << 7 ) macro
/external/llvm/lib/Transforms/Utils/
H A DFunctionImportUtils.cpp227 for (Function &SF : M)
228 processGlobalForThinLTO(SF);
/external/clang/test/CodeGenCXX/
H A Dattr-mode-vector-types-tmpl.cpp43 typedef float __attribute__((mode(SF))) __attribute__((vector_size(128))) VT_41;
/external/emma/
H A Dtest.sh78 SF:com/android/bunnies/SubBunny.java
90 SF:com/android/bunnies/Bunny.java
/external/llvm/tools/llvm-cov/
H A DSourceCoverageViewHTML.cpp245 for (StringRef SF : SourceFiles) {
246 std::string LinkText = escape(sys::path::relative_path(SF));
248 escape(getOutputPath(SF, "html", /*InToplevel=*/false));
H A DSourceCoverageViewText.cpp37 for (StringRef SF : SourceFiles)
38 OSRef << getOutputPath(SF, "txt", /*InToplevel=*/false) << '\n';
H A DCodeCoverage.cpp278 for (auto &SF : SourceFiles) {
279 StringRef SFBase = sys::path::filename(SF);
282 RemappedFilenames[CF] = SF;
283 SF = CF;
/external/llvm/lib/Linker/
H A DLinkModules.cpp535 for (Function &SF : *SrcM)
536 if (SF.hasLinkOnceLinkage())
537 if (const Comdat *SC = SF.getComdat())
538 LazyComdatMembers[SC].push_back(&SF);
551 for (Function &SF : *SrcM)
552 if (linkIfNeeded(SF))
/external/v8/src/arm64/
H A Dassembler-arm64.cc1030 Emit(SF(rt) | CBZ | ImmCmpBranch(imm19) | Rt(rt));
1042 Emit(SF(rt) | CBNZ | ImmCmpBranch(imm19) | Rt(rt));
1254 Emit(SF(rd) | LSLV | Rm(rm) | Rn(rn) | Rd(rd));
1263 Emit(SF(rd) | LSRV | Rm(rm) | Rn(rn) | Rd(rd));
1272 Emit(SF(rd) | ASRV | Rm(rm) | Rn(rn) | Rd(rd));
1281 Emit(SF(rd) | RORV | Rm(rm) | Rn(rn) | Rd(rd));
1289 Instr N = SF(rd) >> (kSFOffset - kBitfieldNOffset);
1290 Emit(SF(rd) | BFM | N |
1300 Instr N = SF(rd) >> (kSFOffset - kBitfieldNOffset);
1301 Emit(SF(r
[all...]
/external/aac/libAACdec/src/
H A Dusacdec_acelp.cpp468 #define SF (SF_CODE + SF_GAIN_C + 1 - SF_EXC) macro
476 /* cpe = (1+r_v)/8 * 2 ; ( SF = -1) */
481 *exc++ = tmp + (fMultDiv2(code[0], gain_code) << SF);
485 << SF; /* c(0) * g_sc */
487 code_smooth = fMultDiv2(code_i, gain_code_smoothed) << SF; /* c(1) * g_sc */
498 *exc++ = tmp + (fMultDiv2(code_i, gain_code) << SF);
504 code_smooth = fMultDiv2(code_i, gain_code_smoothed) << SF;
511 *exc = tmp + (fMultDiv2(code_i, gain_code) << SF);
/external/vixl/src/aarch64/
H A Dassembler-aarch64.cc231 Emit(SF(rt) | CBZ | ImmCmpBranch(imm19) | Rt(rt));
243 Emit(SF(rt) | CBNZ | ImmCmpBranch(imm19) | Rt(rt));
559 Emit(SF(rd) | LSLV | Rm(rm) | Rn(rn) | Rd(rd));
568 Emit(SF(rd) | LSRV | Rm(rm) | Rn(rn) | Rd(rd));
577 Emit(SF(rd) | ASRV | Rm(rm) | Rn(rn) | Rd(rd));
586 Emit(SF(rd) | RORV | Rm(rm) | Rn(rn) | Rd(rd));
596 Instr N = SF(rd) >> (kSFOffset - kBitfieldNOffset);
597 Emit(SF(rd) | BFM | N | ImmR(immr, rd.GetSizeInBits()) |
607 Instr N = SF(rd) >> (kSFOffset - kBitfieldNOffset);
608 Emit(SF(r
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp1544 template<class SF>
1546 SF &SortFunc;
1547 reverse_sort(SF &sf) : SortFunc(sf) {}
1736 template<class SF>
1737 static SUnit *popFromQueueImpl(std::vector<SUnit*> &Q, SF &Picker) {
1750 template<class SF>
1751 SUnit *popFromQueue(std::vector<SUnit*> &Q, SF &Picker, ScheduleDAG *DAG) {
1754 reverse_sort<SF> RPicker(Picker);
1762 template<class SF>
1764 SF Picke
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp1411 template<class SF>
1413 SF &SortFunc;
1414 reverse_sort(SF &sf) : SortFunc(sf) {}
1624 template<class SF>
1625 static SUnit *popFromQueueImpl(std::vector<SUnit*> &Q, SF &Picker) {
1638 template<class SF>
1639 SUnit *popFromQueue(std::vector<SUnit*> &Q, SF &Picker, ScheduleDAG *DAG) {
1642 reverse_sort<SF> RPicker(Picker);
1650 template<class SF>
1652 SF Picke
[all...]

Completed in 780 milliseconds

12