HomeSort by relevance Sort by last modified time
    Searched defs:Start (Results 176 - 200 of 826) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/libcxx/src/experimental/filesystem/
path.cpp 66 const PosPtr Start = getNextTokenStartPos();
67 if (Start == End)
72 PosPtr TkEnd = consumeSeparator(Start, End);
74 if (TkEnd && TkEnd == Start + 2) {
80 return makeState(PS_InRootName, Start, TkEnd);
83 return makeState(PS_InRootDir, Start, TkEnd);
85 return makeState(PS_InFilenames, Start, consumeName(Start, End));
89 return makeState(PS_InRootDir, Start, consumeSeparator(Start, End))
    [all...]
  /external/libcxx/test/libcxx/utilities/memory/util.smartptr/
race_condition.pass.cpp 27 std::atomic_bool Start;
33 while (Start == false) {}
48 Start = false;
53 std::thread t1(r); // Start the test thread.
55 Start = true;
  /external/libmojo/base/message_loop/
message_pump_android.cc 134 void MessagePumpForUI::Start(Delegate* delegate) {
  /external/libmojo/third_party/catapult/devil/devil/android/
logcat_monitor.py 175 self._record_thread.start()
185 def Start(self):
224 self.Start()
  /external/llvm/lib/CodeGen/
SafeStackLayout.h 23 unsigned Start;
26 StackRegion(unsigned Start, unsigned End,
28 : Start(Start), End(End), Range(Range) {}
30 /// The list of current stack regions, sorted by StackRegion::Start.
54 /// Returns the offset to the object start in the stack frame.
  /external/llvm/lib/DebugInfo/PDB/Raw/
NameHashTable.cpp 85 uint32_t Start = Hash % Count;
90 uint32_t Index = (Start + I) % Count;
  /external/pdfium/xfa/fxfa/
cxfa_imagerenderer.cpp 25 bool CXFA_ImageRenderer::Start() {
153 if (!imageRender.Start())
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
InterferenceCache.cpp 108 SlotIndex Start, Stop;
109 tie(Start, Stop) = Indexes->getMBBRange(MBBNum);
112 if (PrevPos != Start) {
113 if (!PrevPos.isValid() || Start < PrevPos)
115 Iters[i].find(Start);
118 Iters[i].advanceTo(Start);
119 PrevPos = Start;
133 SlotIndex StartI = I.start();
151 tie(Start, Stop) = Indexes->getMBBRange(MBBNum);
157 if (!I.valid() || I.start() >= Stop
    [all...]
  /external/tensorflow/tensorflow/contrib/gdr/
gdr_server_lib.cc 65 Status GdrServer::Start() {
72 return GrpcServer::Start();
  /external/tensorflow/tensorflow/contrib/verbs/
verbs_server_lib.cc 95 Status VerbsServer::Start() {
96 Status s = GrpcServer::Start();
  /external/tensorflow/tensorflow/core/platform/profile_utils/
clock_cycle_profiler.h 31 // Start counting clock cycle.
32 inline void Start() {
43 // Get how many times Start() is called.
  /external/v8/src/base/platform/
elapsed-timer.h 23 void Start() {
50 // Restarts the timer and returns the time elapsed since the previous start.
65 // Returns the time elapsed since the previous start. This method may only
75 // previous start, or |false| if not. This method may only be called on
  /external/webrtc/webrtc/base/
autodetectproxy_unittest.cc 57 auto_detect_proxy_->Start();
71 void Start() {
72 auto_detect_proxy_->Start();
84 Start();
  /frameworks/base/media/mca/filterpacks/native/base/
time_util.cpp 52 void NamedStopWatch::Start() {
88 mWatch->Start();
  /prebuilts/go/darwin-x86/src/net/http/httptest/
server.go 36 // before Start or StartTLS.
75 // to start the broken server so you can interact with it manually.
82 ts.Start()
86 // NewUnstartedServer returns a new Server but doesn't start it.
88 // After changing its configuration, the caller should call Start or
99 // Start starts a server from NewUnstartedServer.
100 func (s *Server) Start() {
  /prebuilts/go/linux-x86/src/net/http/httptest/
server.go 36 // before Start or StartTLS.
75 // to start the broken server so you can interact with it manually.
82 ts.Start()
86 // NewUnstartedServer returns a new Server but doesn't start it.
88 // After changing its configuration, the caller should call Start or
99 // Start starts a server from NewUnstartedServer.
100 func (s *Server) Start() {
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/src/experimental/filesystem/
path.cpp 66 const PosPtr Start = getNextTokenStartPos();
67 if (Start == End)
72 PosPtr TkEnd = consumeSeparator(Start, End);
74 if (TkEnd && TkEnd == Start + 2) {
80 return makeState(PS_InRootName, Start, TkEnd);
83 return makeState(PS_InRootDir, Start, TkEnd);
85 return makeState(PS_InFilenames, Start, consumeName(Start, End));
89 return makeState(PS_InRootDir, Start, consumeSeparator(Start, End))
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/utilities/memory/util.smartptr/
race_condition.pass.cpp 27 std::atomic_bool Start;
33 while (Start == false) {}
48 Start = false;
53 std::thread t1(r); // Start the test thread.
55 Start = true;
  /system/extras/simpleperf/
cmd_debug_unwind_test.cpp 47 bool Start() {
83 ASSERT_TRUE(capture.Start());
87 ASSERT_TRUE(capture.Start());
97 ASSERT_TRUE(capture.Start());
  /art/runtime/gc/
task_processor.cc 118 void TaskProcessor::Start(Thread* self) {
  /art/test/919-obsolete-fields/src/art/
Test919.java 30 private void Start() {
39 reporter.accept("Pre Start private method call");
40 Start();
41 reporter.accept("Post Start private method call");
60 // private void Start() {
69 // reporter.accept("pre Start private method call - Transformed");
70 // Start();
71 // reporter.accept("post Start private method call - Transformed");
  /cts/tests/tests/media/libndkaudio/
AudioPlayer.cpp 250 SLresult AudioPlayer::Start() {
251 // __android_log_print(ANDROID_LOG_INFO, TAG, "Start()");
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/AMD/Styx/Drivers/FdtDxe/
LinuxLoaderHelper.c 46 UINT64 Start, Stop, TimeStamp;
53 TicksPerSecond = GetPerformanceCounterProperties (&Start, &Stop);
54 if (Start < Stop) {
63 Key = GetPerformanceMeasurement (Key, (CONST VOID **)&Handle, &Token, &Module, &Start, &Stop);
67 Delta = CountUp ? (Stop - Start) : (Start - Stop);
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/AMD/Styx/Drivers/StyxSpiFvDxe/
StyxSpiFvDxe.c 433 EFI_LBA Start;
439 for (Start = VA_ARG (Args, EFI_LBA);
440 Start != EFI_LBA_LIST_TERMINATOR;
441 Start = VA_ARG (Args, EFI_LBA)) {
442 Start += mNvStorageLbaOffset;
445 (Start + mNvStorageLbaOffset) * BLOCK_SIZE,
448 SetMem64 ((VOID *)mNvStorageBase + Start * BLOCK_SIZE,
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/
SynchronizationGcc.c 112 UINT64 Start;
127 Start = 0;
137 GetPerformanceCounterProperties (&Start, &End),
142 Cycle = End - Start;
153 if (Start > End) {

Completed in 783 milliseconds

1 2 3 4 5 6 78 91011>>