HomeSort by relevance Sort by last modified time
    Searched refs:FS (Results 101 - 125 of 194) sorted by null

1 2 3 45 6 7 8

  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/
test_iSACfixfloat.c 31 #define FS 16000
74 HeaderRate = HeaderSize * 8 * FS / current_framesamples; /* bits/s */
79 BN_data->arrival_time += ((packet_size + HeaderSize) * 8 * FS) / (bottleneck + HeaderRate);
656 kbps = ((double) FS) / ((double) cur_framesmpls) * 8.0 * stream_len / 1000.0;// kbits/s
667 printf("\nmeasured average bitrate = %0.3f kbits/s", (double)totalbits *(FS/1000) / totalsmpls);
673 length_file = ((double)framecnt*(double)declen/FS);
kenny.c 26 #define FS 16000 /* sampling frequency (Hz) */
59 HeaderRate = HeaderSize * 8 * FS / current_framesamples; /* bits/s */
64 BN_data->arrival_time += ((packet_size + HeaderSize) * 8 * FS) / (bottleneck + HeaderRate);
85 BN_data->arrival_time += (current_framesamples + ((FS/1000) * current_delay));
788 // ((double)FS) ) * 8 );
796 kbps = ((double) FS) / ((double) cur_framesmpls) * 8.0 *
823 (double)totalbits *(FS/1000) / totalsmpls);
829 (double)totalbits *(FS/1000) / totalsmpls);
838 length_file = ((double)framecnt*(double)declen/FS);
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 82 void checkLoopConditionForFloat(const ForStmt *FS);
162 void WalkAST::VisitForStmt(ForStmt *FS) {
163 checkLoopConditionForFloat(FS);
166 VisitChildren(FS);
209 void WalkAST::checkLoopConditionForFloat(const ForStmt *FS) {
214 const Expr *condition = FS->getCond();
220 const Expr *increment = FS->getInc();
283 PathDiagnosticLocation::createBegin(FS, BR.getSourceManager(), AC);
DeadStoresChecker.cpp 435 FindEscaped FS(&cfg);
436 FS.getCFG().VisitBlockStmts(FS);
437 DeadStoreObs A(cfg, BR.getContext(), BR, AC, pmap, FS.Escaped);
  /external/llvm/include/llvm/Target/
TargetMachine.h 60 StringRef CPU, StringRef FS, const TargetOptions &Options);
290 StringRef CPU, StringRef FS, TargetOptions Options,
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCTargetDesc.cpp 55 StringRef FS) {
57 InitPPCMCSubtargetInfo(X, TT, CPU, FS);
  /external/llvm/lib/Target/
TargetMachine.cpp 48 StringRef TT, StringRef CPU, StringRef FS,
50 : TheTarget(T), TargetTriple(TT), TargetCPU(CPU), TargetFS(FS),
  /external/llvm/lib/Target/X86/
X86Subtarget.h 109 /// HasFSGSBase - Processor has FS/GS base insturctions.
182 const std::string &FS,
196 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
206 void resetSubtargetFeatures(StringRef CPU, StringRef 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);
90 PrintfSpecifier FS;
91 if (ParseArgPosition(H, FS, Start, I, E))
107 FS.setHasThousandsGrouping(I);
109 case '-': FS.setIsLeftJustified(I); break;
110 case '+': FS.setHasPlusPrefix(I); break;
111 case ' ': FS.setHasSpacePrefix(I); break;
112 case '#': FS.setHasAlternativeForm(I); break
    [all...]
FormatString.cpp 145 FormatSpecifier &FS,
169 FS.setArgIndex(Amt.getConstantAmount() - 1);
170 FS.setUsesPositionalArg();
181 clang::analyze_format_string::ParseLengthModifier(FormatSpecifier &FS,
228 FS.setLengthModifier(lm);
  /external/webrtc/src/modules/audio_processing/agc/
digital_agc.c 305 WebRtc_Word16 *out_H, WebRtc_UWord32 FS,
325 if (FS == 8000)
329 } else if (FS == 16000)
333 } else if (FS == 32000)
348 if (FS == 32000)
588 if (FS == 32000)
623 if (FS == 32000)
  /external/clang/include/clang/Analysis/Analyses/
FormatString.h 605 const analyze_printf::PrintfSpecifier &FS,
611 virtual bool HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier &FS,
620 const analyze_scanf::ScanfSpecifier &FS,
626 virtual bool HandleScanfSpecifier(const analyze_scanf::ScanfSpecifier &FS,
  /external/clang/tools/driver/
cc1as_main.cpp 322 std::string FS;
324 FS = Opts.Features[0];
326 FS += "," + Opts.Features[i];
333 STI(TheTarget->createMCSubtargetInfo(Opts.Triple, Opts.CPU, FS));
  /ndk/sources/host-tools/nawk-20071023/
main.c 58 const char *fs = NULL; local
65 "usage: %s [-F fs] [-v var=value] [-f progfile | 'prog'] [file ...]\n",
100 fs = "\t";
102 fs = &argv[1][2];
106 fs = "\t";
108 fs = &argv[1][0];
110 if (fs == NULL || *fs == '\0')
111 WARNING("field separator FS is empty");
152 if (fs)
    [all...]
awk.h 51 extern char **FS;
69 extern char inputFS[]; /* FS at time of input, for field splitting */
lib.c 115 dprintf( ("RS=<%s>, FS=<%s>, ARGC=%g, FILENAME=%s\n",
116 *RS, *FS, *ARGC, *FILENAME) );
188 if (strlen(*FS) >= sizeof(inputFS))
189 FATAL("field separator %.10s... is too long", *FS);
190 strcpy(inputFS, *FS); /* for subsequent field splitting */
298 } else if ((sep = *inputFS) == 0) { /* new: FS="" => 1 char/field */
313 /* subtlecase : if length(FS) == 1 && length(RS > 0)
407 int refldbld(const char *rec, const char *fs) /* build fields from reg expr in FS */
426 pfa = makedfa(fs, 1)
    [all...]
  /external/llvm/lib/CodeGen/
LLVMTargetMachine.cpp 66 StringRef CPU, StringRef FS,
70 : TargetMachine(T, Triple, CPU, FS, Options) {
  /external/llvm/test/MC/X86/
intel-syntax.s 58 // CHECK: movl %fs:(%rdi), %eax
59 mov EAX, DWORD PTR FS:[RDI]
64 // CHECK: movq %fs:320, %rax
65 mov RAX, QWORD PTR FS:[320]
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
PERF.awk 29 FS = ","; # reading a CSV file
armtime 44 FS=" "
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCTargetDesc.cpp 41 StringRef FS) {
  /external/llvm/include/llvm/Support/
TargetRegistry.h     [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 108 FunctionSummariesTy *FS)
112 FunctionSummaries(FS){}
  /external/e2fsprogs/lib/et/
et_c.awk 162 text = text FS $i
172 text = text FS $i
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
feedTools.jar 

Completed in 979 milliseconds

1 2 3 45 6 7 8