/external/e2fsprogs/resize/ |
test-resize | 3 FS=/bigscratch/testfs 11 /bin/rm -f $FS ; touch $FS 12 truncate -s 8T $FS 13 $MKE2FS -F -t ext4 $FEATURE $FS 14 $E2FSCK -FY $FS 15 $DUMPE2FS $FS > /tmp/d1 17 truncate -s 20T $FS 18 time $RESIZE2FS -d 31 -p $FS > /tmp/r1 19 $DUMPE2FS $FS > /tmp/d [all...] |
/external/llvm/lib/Target/MSP430/ |
MSP430Subtarget.cpp | 29 MSP430Subtarget::initializeSubtargetDependencies(StringRef CPU, StringRef FS) { 30 ParseSubtargetFeatures("generic", FS); 35 const std::string &FS, const TargetMachine &TM) 36 : MSP430GenSubtargetInfo(TT, CPU, FS), FrameLowering(), 37 InstrInfo(initializeSubtargetDependencies(CPU, FS)), TLInfo(TM, *this) {}
|
MSP430Subtarget.h | 45 const std::string &FS, const TargetMachine &TM); 47 MSP430Subtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS); 51 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
|
MSP430TargetMachine.cpp | 29 StringRef CPU, StringRef FS, 33 : LLVMTargetMachine(T, "e-m:e-p:16:16-i32:16:32-a:16-n8:16", TT, CPU, FS, 37 Subtarget(TT, CPU, FS, *this) {
|
/external/llvm/lib/Target/WebAssembly/ |
WebAssemblySubtarget.cpp | 29 WebAssemblySubtarget::initializeSubtargetDependencies(StringRef FS) { 35 ParseSubtargetFeatures(CPUString, FS); 41 const std::string &FS, 43 : WebAssemblyGenSubtargetInfo(TT, CPU, FS), HasSIMD128(false), 45 InstrInfo(initializeSubtargetDependencies(FS)), TSInfo(),
|
WebAssemblySubtarget.h | 47 WebAssemblySubtarget &initializeSubtargetDependencies(StringRef FS); 53 const std::string &FS, const TargetMachine &TM); 80 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
|
/external/llvm/lib/Target/NVPTX/ |
NVPTXSubtarget.cpp | 30 StringRef FS) { 32 if (CPU.empty() && FS.size()) 36 ParseSubtargetFeatures(TargetName, FS); 47 const std::string &FS, 49 : NVPTXGenSubtargetInfo(TT, CPU, FS), PTXVersion(0), SmVersion(20), TM(TM), 50 InstrInfo(), TLInfo(TM, initializeSubtargetDependencies(CPU, FS)),
|
/external/llvm/lib/Target/BPF/ |
BPFSubtarget.cpp | 29 const std::string &FS, const TargetMachine &TM) 30 : BPFGenSubtargetInfo(TT, CPU, FS), InstrInfo(), FrameLowering(*this),
|
BPFSubtarget.h | 41 BPFSubtarget(const Triple &TT, const std::string &CPU, const std::string &FS, 46 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
|
/external/llvm/lib/Target/XCore/ |
XCoreSubtarget.cpp | 29 const std::string &FS, const TargetMachine &TM) 30 : XCoreGenSubtargetInfo(TT, CPU, FS), InstrInfo(), FrameLowering(*this),
|
/external/llvm/lib/Target/Sparc/ |
SparcSubtarget.cpp | 30 StringRef FS) { 43 ParseSubtargetFeatures(CPUName, FS); 53 const std::string &FS, TargetMachine &TM, 55 : SparcGenSubtargetInfo(TT, CPU, FS), Is64Bit(is64Bit), 56 InstrInfo(initializeSubtargetDependencies(CPU, FS)), TLInfo(TM, *this),
|
SparcTargetMachine.cpp | 58 StringRef CPU, StringRef FS, 62 : LLVMTargetMachine(T, computeDataLayout(TT, is64bit), TT, CPU, FS, Options, 65 Subtarget(TT, CPU, FS, *this, is64bit) { 110 StringRef CPU, StringRef FS, 114 : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {} 119 StringRef CPU, StringRef FS, 123 : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true) {} 128 StringRef CPU, StringRef FS, 132 : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {}
|
/external/clang/unittests/Basic/ |
VirtualFileSystemTest.cpp | 20 using llvm::sys::fs::UniqueID; 116 void addRegularFile(StringRef Path, sys::fs::perms Perms = sys::fs::all_all) { 118 1024, sys::fs::file_type::regular_file, Perms); 122 void addDirectory(StringRef Path, sys::fs::perms Perms = sys::fs::all_all) { 124 0, sys::fs::file_type::directory_file, Perms); 130 0, sys::fs::file_type::symlink_file, sys::fs::all_all); 266 Lower->addDirectory("/both", sys::fs::owner_read) [all...] |
/external/llvm/lib/MC/ |
MCSubtargetInfo.cpp | 20 static FeatureBitset getFeatures(StringRef CPU, StringRef FS, 23 SubtargetFeatures Features(FS); 27 void MCSubtargetInfo::InitMCProcessorInfo(StringRef CPU, StringRef FS) { 28 FeatureBits = getFeatures(CPU, FS, ProcDesc, ProcFeatures); 35 void MCSubtargetInfo::setDefaultFeatures(StringRef CPU, StringRef FS) { 36 FeatureBits = getFeatures(CPU, FS, ProcDesc, ProcFeatures); 40 const Triple &TT, StringRef C, StringRef FS, 48 InitMCProcessorInfo(CPU, FS); 65 FeatureBitset MCSubtargetInfo::ToggleFeature(StringRef FS) { 67 FeatureBits = Features.ToggleFeature(FeatureBits, FS, ProcFeatures) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/ |
reg.h | 34 #define FS 9
|
/external/clang/lib/Analysis/ |
FormatStringParsing.h | 47 bool ParseLengthModifier(FormatSpecifier &FS, const char *&Beg, const char *E, 51 T FS; 58 const T &fs) 59 : FS(fs), Start(start), Stop(false) {} 66 return FS; 68 const T &getValue() { return FS; }
|
/external/llvm/lib/Target/Mips/ |
MipsTargetMachine.cpp | 86 StringRef CPU, StringRef FS, 91 CPU, FS, Options, RM, CM, OL), 94 Subtarget(nullptr), DefaultSubtarget(TT, CPU, FS, isLittle, *this), 95 NoMips16Subtarget(TT, CPU, FS.empty() ? "-mips16" : FS.str() + ",-mips16", 97 Mips16Subtarget(TT, CPU, FS.empty() ? "+mips16" : FS.str() + ",+mips16", 108 StringRef CPU, StringRef FS, 112 : MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {} 117 StringRef CPU, StringRef FS, [all...] |
/external/llvm/lib/Target/SystemZ/ |
SystemZSubtarget.cpp | 26 SystemZSubtarget::initializeSubtargetDependencies(StringRef CPU, StringRef FS) { 31 ParseSubtargetFeatures(CPUName, FS); 36 const std::string &FS, 38 : SystemZGenSubtargetInfo(TT, CPU, FS), HasDistinctOps(false), 44 InstrInfo(initializeSubtargetDependencies(CPU, FS)), TLInfo(TM, *this),
|
SystemZTargetMachine.cpp | 26 static bool UsesVectorABI(StringRef CPU, StringRef FS) { 36 FS.split(Features, ',', -1, false /* KeepEmpty */); 48 StringRef FS) { 49 bool VectorABI = UsesVectorABI(CPU, FS); 83 StringRef CPU, StringRef FS, 87 : LLVMTargetMachine(T, computeDataLayout(TT, CPU, FS), TT, CPU, FS, Options, 90 Subtarget(TT, CPU, FS, *this) {
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/QA/ |
runiSACLongtest.txt | 45 $ISAC -I -B $RATE -FL $FRAMESIZE -FS 16 $INDIR/"$file" $OUTDIR/i_"$FRAMESIZE"_"$RATE"_"$file" >> $LOGFILE 51 $ISAC -B $INDIR/${CHANNELLIST[$idx]} -FS 16 $INDIR/"$file" $OUTDIR/a_${name%.*}_"$file" >> $LOGFILE 88 $ISAC -B $INDIR/${CHANNELLIST[0]} -FL 30 -FIXED_FL -FS 16 $INDIR/"$file" $OUTDIR/a30_"$file" >> $LOGFILE 91 $ISAC -B $INDIR/${CHANNELLIST[0]} -FL 60 -FIXED_FL -FS 16 $INDIR/"$file" $OUTDIR/a60_"$file" >> $LOGFILE 96 $ISAC -B $INDIR/${CHANNELLIST[0]} -INITRATE 25000 -FL 30 -FS 16 $INDIR/"$file" $OUTDIR/a60_Init25kbps_"$file" >> $LOGFILE 128 $ISAC -I -B $RATE -FL 30 -FS 32 $INDIR/"$file" $OUTDIR/swb_"$RATE"_"$file" >> $LOGFILE 152 $ISAC -B 10000 -FS 16 ../data/orig/speech_and_misc_WB.pcm \ 160 $ISAC -B 10000 -FL 30 -FIXED_FL -FS 16 ../data/orig/speech_and_misc_WB.pcm \ 167 $ISAC -B 32000 -FS 16 ../data/orig/speech_and_misc_WB.pcm \ 175 $ISAC -B 32000 -FL 60 -FIXED_FL -FS 16 ../data/orig/speech_and_misc_WB.pcm [all...] |
/external/clang/include/clang/Basic/ |
FileSystemStatCache.h | 35 llvm::sys::fs::UniqueID UniqueID; 73 vfs::FileSystem &FS); 97 vfs::FileSystem &FS) = 0; 100 std::unique_ptr<vfs::File> *F, vfs::FileSystem &FS) { 102 return Next->getStat(Path, Data, isFile, F, FS); 106 return get(Path, Data, isFile, F, nullptr, FS) ? CacheMissing : CacheExists; 126 vfs::FileSystem &FS) override;
|
/external/clang/lib/Basic/ |
FileSystemStatCache.cpp | 29 Data.IsNamedPipe = Status.getType() == llvm::sys::fs::file_type::fifo_file; 45 FileSystemStatCache *Cache, vfs::FileSystem &FS) { 51 R = Cache->getStat(Path, Data, isFile, F, FS); 55 llvm::ErrorOr<vfs::Status> Status = FS.status(Path); 70 auto OwnedFile = FS.openFileForRead(Path); 111 std::unique_ptr<vfs::File> *F, vfs::FileSystem &FS) { 112 LookupResult Result = statChained(Path, Data, isFile, F, FS);
|
/bionic/libc/include/sys/ |
reg.h | 43 #define FS 9 79 #define FS 25
|
/development/ndk/platforms/android-21/include/sys/ |
reg.h | 43 #define FS 9 79 #define FS 25
|
/external/llvm/lib/Target/CppBackend/ |
CPPTargetMachine.h | 27 StringRef FS, const TargetOptions &Options, Reloc::Model RM, 29 : TargetMachine(T, "", TT, CPU, FS, Options) {}
|