/external/stressapptest/src/ |
sat_factory.cc | 15 // sat_factory.h : factory for SAT 17 #include "sat.h" // NOLINT 19 Sat *SatFactory() { 20 return new Sat();
|
sat.h | 15 // sat.h : sat stress test object interface and data structures 34 // SAT stress test class. 35 class Sat { 40 Sat(); 41 virtual ~Sat(); 57 // Return value is success or failure of the SAT run, *not* of this function! 196 int monitor_mode_; // Switch for monitor-only mode SAT. 198 // argument, as SAT will only run error 322 Sat::PageQueueType pe_q_implementation_; // Queue implementation switc [all...] |
main.cc | 15 // sat.cc : a stress test for stressful testing 18 #include "sat.h" 21 Sat *sat = SatFactory(); local 22 if (sat == NULL) { 23 logprintf(0, "Process Error: failed to allocate Sat object\n"); 27 if (!sat->ParseArgs(argc, argv)) { 28 logprintf(0, "Process Error: Sat::ParseArgs() failed\n"); 29 sat->bad_status(); 30 } else if (!sat->Initialize()) [all...] |
sat.cc | 15 // sat.cc : a stress test for stressful testing 17 // stressapptest (or SAT, from Stressful Application Test) is a test 47 #include "sat.h" 59 // This makes Sat objects not safe for multiple instances. 61 Sat *g_sat = NULL; 76 bool Sat::InitializeLogfile() { 110 bool Sat::CheckEnvironment() { 115 logprintf(1, "Log: Running DEBUG version of SAT, " 118 logprintf(0, "Process Error: Running DEBUG version of SAT, " 220 bool Sat::AllocateMemory() [all...] |
worker.h | 18 // for the SAT test. Worker Threads implement a repetative 215 class Sat *sat_init, 393 class Sat *sat_; // Reference to parent stest object.
|
/external/expat/ |
expat.spec | 49 * Sat Aug 19 2017 Sebastian Pipping <sebastian@pipping.org> 61 * Sat Jun 17 2017 Sebastian Pipping <sebastian@pipping.org> 73 * Sat Mar 3 2012 Karl Waclawek <karl@waclawek.net> 94 * Sat Jan 25 2003 Fred L. Drake, Jr. <fdrake@acm.org> 104 * Sat Jun 29 2002 Fred L. Drake, Jr. <fdrake@acm.org>
|
/external/syslinux/ |
syslinux.spec | 193 * Sat Jun 1 2002 H. Peter Anvin <hpa@zytor.com> 209 * Sat Feb 3 2002 H. Peter Anvin <hpa@zytor.com> 215 * Sat Dec 15 2001 H. Peter Anvin <hpa@zytor.com> 218 * Sat Aug 24 2001 H. Peter Anvin <hpa@zytor.com> 226 * Sat Apr 24 2001 H. Peter Anvin <hpa@zytor.com> 229 * Sat Apr 14 2001 H. Peter Anvin <hpa@zytor.com> 236 * Sat Feb 10 2001 Matt Wilson <msw@redhat.com>
|
/prebuilts/go/darwin-x86/src/time/ |
example_test.go | 187 t, err := time.Parse(time.UnixDate, "Sat Mar 7 11:06:39 PST 2015") 233 do("Basic", "Mon Jan 2 15:04:05 MST 2006", "Sat Mar 7 11:06:39 PST 2015") 254 do("Unix", time.UnixDate, "Sat Mar 7 11:06:39 PST 2015") 265 t, err = time.Parse(time.UnixDate, "Sat Mar 7 11:06:39.1234 PST 2015") 271 do("No fraction", time.UnixDate, "Sat Mar 7 11:06:39 PST 2015") 284 // Unix format: Sat Mar 7 11:06:39 PST 2015 285 // Same, in UTC: Sat Mar 7 19:06:39 UTC 2015 289 // Basic "Mon Jan 2 15:04:05 MST 2006" gives "Sat Mar 7 11:06:39 PST 2015" 294 // Unix "Mon Jan _2 15:04:05 MST 2006" gives "Sat Mar 7 11:06:39 PST 2015" 296 // No fraction "Mon Jan _2 15:04:05 MST 2006" gives "Sat Mar 7 11:06:39 PST 2015 [all...] |
zoneinfo_test.go | 92 "Sat, 31 Dec 2011 00:00:00 +1300 (+13)",
|
mono_test.go | 30 tp, _ := Parse(UnixDate, "Sat Mar 7 11:06:39 PST 2015") 31 no(`Parse(UnixDate, "Sat Mar 7 11:06:39 PST 2015")`, tp)
|
/prebuilts/go/linux-x86/src/time/ |
example_test.go | 187 t, err := time.Parse(time.UnixDate, "Sat Mar 7 11:06:39 PST 2015") 233 do("Basic", "Mon Jan 2 15:04:05 MST 2006", "Sat Mar 7 11:06:39 PST 2015") 254 do("Unix", time.UnixDate, "Sat Mar 7 11:06:39 PST 2015") 265 t, err = time.Parse(time.UnixDate, "Sat Mar 7 11:06:39.1234 PST 2015") 271 do("No fraction", time.UnixDate, "Sat Mar 7 11:06:39 PST 2015") 284 // Unix format: Sat Mar 7 11:06:39 PST 2015 285 // Same, in UTC: Sat Mar 7 19:06:39 UTC 2015 289 // Basic "Mon Jan 2 15:04:05 MST 2006" gives "Sat Mar 7 11:06:39 PST 2015" 294 // Unix "Mon Jan _2 15:04:05 MST 2006" gives "Sat Mar 7 11:06:39 PST 2015" 296 // No fraction "Mon Jan _2 15:04:05 MST 2006" gives "Sat Mar 7 11:06:39 PST 2015 [all...] |
zoneinfo_test.go | 92 "Sat, 31 Dec 2011 00:00:00 +1300 (+13)",
|
mono_test.go | 30 tp, _ := Parse(UnixDate, "Sat Mar 7 11:06:39 PST 2015") 31 no(`Parse(UnixDate, "Sat Mar 7 11:06:39 PST 2015")`, tp)
|
/external/mesa3d/src/gallium/drivers/r300/compiler/tests/ |
rc_test_helpers.c | 352 struct match_info Sat; 388 tokens.Sat.String = inst_str + matches[2].rm_so; 389 tokens.Sat.Length = match_length(matches, 2);
|
/external/capstone/packages/rpm/ |
capstone.spec | 163 * Sat Sep 27 2014 Adel Gadllah <adel.gadllah@gmail.com> - 2.1.2-2
|
/external/libogg/ |
libogg.spec | 108 * Sat Sep 02 2000 Jack Moffitt <jack@icecast.org>
|
/external/strace/ |
strace.spec | 204 * Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.7-2 211 * Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.6-2 472 * Sat Feb 23 2002 Florian La Roche <Florian.LaRoche@redhat.de> 504 * Sat Nov 18 2000 Florian La Roche <Florian.LaRoche@redhat.de> 508 * Sat Aug 19 2000 Jakub Jelinek <jakub@redhat.com> 537 * Sat Nov 27 1999 Jeff Johnson <jbj@redhat.com> 549 * Sat Jun 12 1999 Jeff Johnson <jbj@redhat.com> 585 * Sat Sep 19 1998 Jeff Johnson <jbj@redhat.com>
|
/external/spirv-llvm/lib/SPIRV/ |
OCL20ToSPIRV.cpp | 847 std::string Sat = DemangledName.find("_sat") != std::string::npos ? 853 if (!Sat.empty() && TargetSigned != Signed) { 855 Sat = ""; 874 return getSPIRVFuncName(OC, TargetTyName + Sat + Rounding); [all...] |
SPIRVUtil.cpp | 428 if (Postfix == kSPIRVPostfix::Sat) 453 return kSPIRVPostfix::Sat; [all...] |
SPIRVInternal.h | 336 const static char Sat[] = "sat"; [all...] |
/prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/third_party/svg/ |
svgpan.go | 35 * 1.2, Sat Mar 20 08:42:50 GMT 2010, Zeng Xiaohui
|
/prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/third_party/svg/ |
svgpan.go | 35 * 1.2, Sat Mar 20 08:42:50 GMT 2010, Zeng Xiaohui
|
/prebuilts/go/darwin-x86/src/cmd/vendor/github.com/ianlancetaylor/demangle/ |
ast.go | 1180 Sat bool 1184 if ft.Sat { 1214 ft = &FixedType{Base: base, Accum: ft.Accum, Sat: ft.Sat} 1226 return fmt.Sprintf("%*s%sFixedType: Accum: %t; Sat: %t\n%s", indent, "", field, 1227 ft.Accum, ft.Sat, [all...] |
/prebuilts/go/linux-x86/src/cmd/vendor/github.com/ianlancetaylor/demangle/ |
ast.go | 1180 Sat bool 1184 if ft.Sat { 1214 ft = &FixedType{Base: base, Accum: ft.Accum, Sat: ft.Sat} 1226 return fmt.Sprintf("%*s%sFixedType: Accum: %t; Sat: %t\n%s", indent, "", field, 1227 ft.Accum, ft.Sat, [all...] |
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
SelectionDAG.h | 444 SDValue Rnd, SDValue Sat, ISD::CvtCode Code); [all...] |