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

1 2 3 4 5 6 78 91011>>

  /external/v8/test/mjsunit/asm/poppler/
poppler.js 40 FS.createDataFile('/', 'input.pdf', input, true, false);
90 var nodeFS = require('fs');
    [all...]
  /external/v8/test/mjsunit/asm/embenchen/
box2d.js 58 var nodeFS = require('fs');
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/
test_iSACfixfloat.c 31 #define FS 16000
67 HeaderRate = HeaderSize * 8 * FS / current_framesamples; /* bits/s */
73 (((packet_size + HeaderSize) * 8 * FS) / (bottleneck + HeaderRate));
596 kbps = (double)FS / (double)cur_framesmpls * 8.0 * stream_len / 1000.0;
607 (double)totalbits * (FS / 1000) / totalsmpls);
613 length_file = ((double)framecnt * (double)declen / FS);
kenny.cc 27 #define FS 16000 /* sampling frequency (Hz) */
60 HeaderRate = HeaderSize * 8 * FS / current_framesamples; /* bits/s */
66 ((packet_size + HeaderSize) * 8 * FS) / (bottleneck + HeaderRate));
87 BN_data->arrival_time += (current_framesamples + ((FS/1000) * current_delay));
785 // ((double)FS) ) * 8 );
809 (double)totalbits *(FS/1000) / totalsmpls);
816 length_file = ((double)framecnt*(double)declen/FS);
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 92 void checkLoopConditionForFloat(const ForStmt *FS);
172 void WalkAST::VisitForStmt(ForStmt *FS) {
173 checkLoopConditionForFloat(FS);
176 VisitChildren(FS);
219 void WalkAST::checkLoopConditionForFloat(const ForStmt *FS) {
224 const Expr *condition = FS->getCond();
230 const Expr *increment = FS->getInc();
293 PathDiagnosticLocation::createBegin(FS, BR.getSourceManager(), AC);
  /external/llvm/include/llvm/Target/
TargetMachine.h 73 const Triple &TargetTriple, StringRef CPU, StringRef FS,
276 const Triple &TargetTriple, StringRef CPU, StringRef FS,
TargetSubtargetInfo.h 51 TargetSubtargetInfo(const Triple &TT, StringRef CPU, StringRef FS,
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCTargetDesc.cpp 44 createAArch64MCSubtargetInfo(const Triple &TT, StringRef CPU, StringRef FS) {
48 return createAArch64MCSubtargetInfoImpl(TT, CPU, FS);
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsMCTargetDesc.cpp 69 StringRef CPU, StringRef FS) {
71 return createMipsMCSubtargetInfoImpl(TT, CPU, FS);
  /external/llvm/lib/Target/Sparc/MCTargetDesc/
SparcMCTargetDesc.cpp 67 createSparcMCSubtargetInfo(const Triple &TT, StringRef CPU, StringRef FS) {
70 return createSparcMCSubtargetInfoImpl(TT, CPU, FS);
  /external/llvm/lib/Target/
TargetMachine.cpp 41 const Triple &TT, StringRef CPU, StringRef FS,
44 TargetFS(FS), CodeGenInfo(nullptr), AsmInfo(nullptr), MRI(nullptr),
  /external/v8/tools/profviz/
worker.js 151 if (FS.findObject(input_file_name)) {
152 FS.deleteFile(input_file_name);
155 FS.createDataFile("/", input_file_name, arrc);
161 displayplot(FS.findObject(output_file_name));
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCTargetDesc.cpp 162 StringRef CPU, StringRef FS) {
164 if (!FS.empty()) {
166 ArchFS = (Twine(ArchFS) + "," + FS).str();
168 ArchFS = FS;
ARMMCTargetDesc.h 48 StringRef FS);
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCTargetDesc.h 64 StringRef FS);
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/internal/obj/
sym.go 121 * ELF uses TLS offset negative from FS.
122 * Translate 0(FS) and 8(FS) into -16(FS) and -8(FS).
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/link/internal/ld/
sym.go 102 * ELF uses TLS offset negative from FS.
103 * Translate 0(FS) and 8(FS) into -16(FS) and -8(FS).
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
sym.go 99 * ELF uses TLS offset negative from FS.
100 * Translate 0(FS) and 8(FS) into -16(FS) and -8(FS).
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/internal/obj/
sym.go 121 * ELF uses TLS offset negative from FS.
122 * Translate 0(FS) and 8(FS) into -16(FS) and -8(FS).
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/link/internal/ld/
sym.go 102 * ELF uses TLS offset negative from FS.
103 * Translate 0(FS) and 8(FS) into -16(FS) and -8(FS).
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
sym.go 99 * ELF uses TLS offset negative from FS.
100 * Translate 0(FS) and 8(FS) into -16(FS) and -8(FS).
  /external/llvm/lib/Support/
raw_ostream.cpp 399 raw_ostream &raw_ostream::operator<<(const FormattedString &FS) {
400 unsigned Len = FS.Str.size();
401 int PadAmount = FS.Width - Len;
402 if (FS.RightJustify && (PadAmount > 0))
404 this->operator<<(FS.Str);
405 if (!FS.RightJustify && (PadAmount > 0))
491 sys::fs::OpenFlags Flags) {
499 if (!(Flags & sys::fs::F_Text))
505 EC = sys::fs::openFileForWrite(Filename, FD, Flags);
513 sys::fs::OpenFlags Flags
    [all...]
  /external/clang/include/clang/Basic/
VirtualFileSystem.h 34 llvm::sys::fs::UniqueID UID;
39 llvm::sys::fs::file_type Type;
40 llvm::sys::fs::perms Perms;
46 Status() : Type(llvm::sys::fs::file_type::status_error) {}
47 Status(const llvm::sys::fs::file_status &Status);
48 Status(StringRef Name, llvm::sys::fs::UniqueID UID,
50 uint64_t Size, llvm::sys::fs::file_type Type,
51 llvm::sys::fs::perms Perms);
55 static Status copyWithNewName(const llvm::sys::fs::file_status &In,
61 /// @name Status interface from llvm::sys::fs
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
FormatString.h 636 const analyze_printf::PrintfSpecifier &FS,
642 virtual bool HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier &FS,
651 const analyze_scanf::ScanfSpecifier &FS,
657 virtual bool HandleScanfSpecifier(const analyze_scanf::ScanfSpecifier &FS,
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
defines.h 27 #define FS 8000

Completed in 342 milliseconds

1 2 3 4 5 6 78 91011>>