HomeSort by relevance Sort by last modified time
    Searched refs:FS (Results 176 - 200 of 809) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/valgrind/none/tests/mips32/
MoveIns.c 38 // mfc1 rt, fs
39 #define TESTINSNMOVE(instruction, offset, FS, RT) \
47 "lwc1 $" #FS ", "#offset"($t0)\n\t" \
49 "mov.s %0, $" #FS"\n\t" \
54 : "t0", "$"#FS, #RT, "memory" \
56 printf("%s :: fs %f, rt 0x%x\n", \
60 // mfhc1 rt, fs
61 #define TESTINSNMOVEd(instruction, offset, FS, RT) \
66 "ldc1 $" #FS ", "#offset"($t0)\n\t" \
71 : "t0", "$"#FS, #RT, "memory"
    [all...]
  /external/llvm/lib/Target/Mips/
MipsSubtarget.cpp 63 const std::string &FS, bool little,
65 : MipsGenSubtargetInfo(TT, CPU, FS), MipsArchVersion(MipsDefault),
76 MipsInstrInfo::create(initializeSubtargetDependencies(CPU, FS, TM))),
147 MipsSubtarget::initializeSubtargetDependencies(StringRef CPU, StringRef FS,
152 ParseSubtargetFeatures(CPUName, FS);
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyTargetMachine.cpp 51 const Target &T, const Triple &TT, StringRef CPU, StringRef FS,
57 TT, CPU, FS, Options, getEffectiveRelocModel(RM),
83 std::string FS = !FSAttr.hasAttribute(Attribute::None)
87 auto &I = SubtargetMap[CPU + FS];
93 I = llvm::make_unique<WebAssemblySubtarget>(TargetTriple, CPU, FS, *this);
WebAssemblyTargetMachine.h 30 StringRef FS, const TargetOptions &Options,
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMSubtarget.cpp 39 const std::string &FS)
40 : ARMGenSubtargetInfo(TT, CPU, FS)
87 if (!FS.empty()) {
89 ArchFS = ArchFS + "," + FS;
91 ArchFS = FS;
ARMTargetMachine.h 43 StringRef CPU, StringRef FS,
73 StringRef CPU, StringRef FS,
113 StringRef CPU, StringRef FS,
  /frameworks/base/tools/obbtool/
mkobb.sh 25 FS=vfat
59 if ! egrep -q "^\s*${FS}$" /proc/filesystems; then \
60 echo "ERROR: Could not find filesystem \`${FS}' in the kernel."
61 echo "Perhaps you need to: modprobe ${FS}"
250 ${MOUNTBIN} -t ${FS} -o loop ${loop_dev} ${temp_mount}
  /external/llvm/lib/Transforms/IPO/
SampleProfile.cpp 221 bool markSamplesUsed(const FunctionSamples *FS, uint32_t LineOffset,
224 unsigned countUsedRecords(const FunctionSamples *FS) const;
225 unsigned countBodyRecords(const FunctionSamples *FS) const;
227 uint64_t countBodySamples(const FunctionSamples *FS) const;
302 bool SampleCoverageTracker::markSamplesUsed(const FunctionSamples *FS,
307 unsigned &Count = SampleCoverage[FS][Loc];
318 SampleCoverageTracker::countUsedRecords(const FunctionSamples *FS) const {
319 auto I = SampleCoverage.find(FS);
321 // The size of the coverage map for FS represents the number of records
328 for (const auto &I : FS->getCallsiteSamples())
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXTargetMachine.cpp 102 StringRef CPU, StringRef FS,
109 : LLVMTargetMachine(T, computeDataLayout(is64bit), TT, CPU, FS, Options,
113 Subtarget(TT, CPU, FS, *this) {
126 StringRef CPU, StringRef FS,
131 : NVPTXTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {}
136 StringRef CPU, StringRef FS,
141 : NVPTXTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true) {}
  /external/llvm/lib/Target/X86/
X86Subtarget.cpp 171 void X86Subtarget::initSubtargetFeatures(StringRef CPU, StringRef FS) {
178 std::string FullFS = FS;
299 StringRef FS) {
301 initSubtargetFeatures(CPU, FS);
305 X86Subtarget::X86Subtarget(const Triple &TT, StringRef CPU, StringRef FS,
308 : X86GenSubtargetInfo(TT, CPU, FS), X86ProcFamily(Others),
316 TSInfo(), InstrInfo(initializeSubtargetDependencies(CPU, FS)),
X86TargetMachine.h 33 StringRef FS, const TargetOptions &Options,
  /external/swiftshader/third_party/LLVM/lib/Target/PTX/
PTXTargetMachine.cpp 89 StringRef TT, StringRef CPU, StringRef FS,
92 : LLVMTargetMachine(T, TT, CPU, FS, RM, CM),
94 Subtarget(TT, CPU, FS, is64Bit),
102 StringRef CPU, StringRef FS,
104 : PTXTargetMachine(T, TT, CPU, FS, RM, CM, false) {
108 StringRef CPU, StringRef FS,
110 : PTXTargetMachine(T, TT, CPU, FS, RM, CM, true) {
  /external/clang/lib/Basic/
FileManager.cpp 49 IntrusiveRefCntPtr<vfs::FileSystem> FS)
50 : FS(FS), FileSystemOpts(FSO),
57 if (!FS)
58 this->FS = vfs::getRealFileSystem();
407 llvm::sys::fs::make_absolute(Path);
439 return FS->getBufferForFile(Filename, FileSize,
444 return FS->getBufferForFile(FilePath, FileSize,
451 return FS->getBufferForFile(Filename);
455 return FS->getBufferForFile(FilePath.c_str())
    [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUTargetMachine.cpp 143 StringRef CPU, StringRef FS,
149 FS, Options, getEffectiveRelocModel(RM), CM, OptLevel),
177 StringRef CPU, StringRef FS,
181 : AMDGPUTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL) {}
186 StringRef FS = getFeatureString(F);
189 SubtargetKey.append(FS);
197 I = llvm::make_unique<R600Subtarget>(TargetTriple, GPU, FS, *this);
219 StringRef CPU, StringRef FS,
223 : AMDGPUTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL) {}
227 StringRef FS = getFeatureString(F)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86TargetMachine.h 41 StringRef CPU, StringRef FS,
87 StringRef CPU, StringRef FS,
114 StringRef CPU, StringRef FS,
  /bionic/libc/kernel/uapi/asm-x86/asm/
ptrace-abi.h 31 #define FS 9
  /external/blktrace/
act_mask.c 24 DECLARE_MASK_MAP(FS),
  /external/clang/lib/Analysis/
PrintfFormatString.cpp 37 static bool ParsePrecision(FormatStringHandler &H, PrintfSpecifier &FS,
41 FS.setPrecision(ParseNonPositionAmount(Beg, E, *argIndex));
47 FS.setPrecision(Amt);
52 static bool ParseObjCFlags(FormatStringHandler &H, PrintfSpecifier &FS,
57 FS.setHasObjCTechnicalTerm(FlagBeg);
111 PrintfSpecifier FS;
112 if (ParseArgPosition(H, FS, Start, I, E))
129 FS.setHasThousandsGrouping(I);
131 case '-': FS.setIsLeftJustified(I); break;
132 case '+': FS.setHasPlusPrefix(I); break
    [all...]
  /external/kernel-headers/original/uapi/asm-x86/asm/
ptrace-abi.h 16 #define FS 9
  /external/llvm/lib/Target/Hexagon/
HexagonTargetMachine.h 32 StringRef FS, const TargetOptions &Options,
  /external/llvm/lib/Target/PowerPC/
PPCSubtarget.h 153 PPCSubtarget(const Triple &TT, const std::string &CPU, const std::string &FS,
158 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
192 PPCSubtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS);
196 void initSubtargetFeatures(StringRef CPU, StringRef FS);
  /external/llvm/lib/Target/SystemZ/
SystemZTargetMachine.h 31 StringRef FS, const TargetOptions &Options,
  /external/swiftshader/third_party/LLVM/lib/Target/Alpha/
AlphaTargetMachine.h 40 StringRef CPU, StringRef FS,
  /external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
BlackfinTargetMachine.h 39 StringRef CPU, StringRef FS,
  /external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
SPUTargetMachine.h 42 StringRef CPU, StringRef FS,

Completed in 939 milliseconds

1 2 3 4 5 6 78 91011>>