Home
last modified time | relevance | path

Searched refs:stop (Results 301 - 325 of 549) sorted by relevance

1...<<11121314151617181920>>...22

/third_party/vk-gl-cts/framework/platform/android/
H A DtcuAndroidRenderActivity.hpp129 void stop (void);
/third_party/ffmpeg/libavcodec/
H A Daacps.c677 int stop = ps2->border_position[e+1]; in stereo_processing() local
678 INTFLOAT width = Q30(1.f) / ((stop - start) ? (stop - start) : 1); in stereo_processing()
712 if (stop - start) in stereo_processing()
715 h, h_step, stop - start); in stereo_processing()
H A Daacsbr_fixed.c126 static void make_bands(int16_t* bands, int start, int stop, int num_bands) in make_bands() argument
131 base = (stop << 23) / start; in make_bands()
149 bands[num_bands-1] = stop - previous; in make_bands()
/third_party/littlefs/scripts/
H A Dbench.py103 '\s*(?:,\s*(?P<stop>[^,\s]*)'
109 stop = (int(m.group('stop'), 0)
110 if m.group('stop') else None)
114 start, stop = 0, start
115 for x in range(start, stop, step):
923 # stop other benches
1072 stop = time.time()
1097 'in %.2fs' % (stop-start)]))))
1319 help="Don't stop o
[all...]
/third_party/python/Modules/_ctypes/
H A D_ctypes.c4615 Py_ssize_t start, stop, step, slicelen, i; in Array_subscript() local
4618 if (PySlice_Unpack(item, &start, &stop, &step) < 0) { in Array_subscript()
4621 slicelen = PySlice_AdjustIndices(self->b_length, &start, &stop, step); in Array_subscript()
4754 Py_ssize_t start, stop, step, slicelen, otherlen, i; in Array_ass_subscript() local
4757 if (PySlice_Unpack(item, &start, &stop, &step) < 0) { in Array_ass_subscript()
4760 slicelen = PySlice_AdjustIndices(self->b_length, &start, &stop, step); in Array_ass_subscript()
4761 if ((step < 0 && start < stop) || in Array_ass_subscript()
4762 (step > 0 && start > stop)) in Array_ass_subscript()
4763 stop = start; in Array_ass_subscript()
5266 Py_ssize_t start, stop, ste in Pointer_subscript() local
[all...]
/third_party/node/deps/openssl/openssl/apps/lib/
H A Dapps.c2694 double app_tminterval(int stop, int usertime) in app_tminterval() argument
2728 if (stop == TM_START) { in app_tminterval()
2745 double app_tminterval(int stop, int usertime) in app_tminterval() argument
2764 if (stop == TM_START) in app_tminterval()
2771 if (stop == TM_START) in app_tminterval()
2782 double app_tminterval(int stop, int usertime) in app_tminterval() argument
2792 if (stop == TM_START) { in app_tminterval()
2806 double app_tminterval(int stop, int usertime) in app_tminterval() argument
2818 if (stop == TM_START) in app_tminterval()
/third_party/openssl/apps/lib/
H A Dapps.c2687 double app_tminterval(int stop, int usertime) in app_tminterval() argument
2721 if (stop == TM_START) { in app_tminterval()
2738 double app_tminterval(int stop, int usertime) in app_tminterval() argument
2757 if (stop == TM_START) in app_tminterval()
2764 if (stop == TM_START) in app_tminterval()
2775 double app_tminterval(int stop, int usertime) in app_tminterval() argument
2785 if (stop == TM_START) { in app_tminterval()
2799 double app_tminterval(int stop, int usertime) in app_tminterval() argument
2811 if (stop == TM_START) in app_tminterval()
/third_party/python/Lib/test/
H A Dtest_array.py811 for stop in indices:
814 self.assertEqual(list(a[start:stop:step]),
815 list(a)[start:stop:step])
909 for stop in indices:
916 data = L[start:stop:step]
918 L[start:stop:step] = data
919 a[start:stop:step] = array.array(self.typecode, data)
922 del L[start:stop:step]
923 del a[start:stop:step]
/third_party/python/Lib/test/test_asyncio/
H A Dtest_base_events.py273 self.loop.stop()
567 fut.add_done_callback(lambda fut: self.loop.stop())
577 fut.add_done_callback(lambda fut: self.loop.stop())
593 fut.add_done_callback(lambda *args: self.loop.stop())
858 # call to stop() if the future raised a BaseException
870 self.loop.stop()
906 self.loop.call_soon(self.loop.stop)
914 # the idiom: loop.call_soon(loop.stop); loop.run_forever().
929 self.loop.stop()
1895 loop.stop()
[all...]
H A Dtest_windows_events.py221 # must complete before our start/stop cycles), but in practice it
224 self.loop.stop()
226 self.loop.stop()
/third_party/json/tests/thirdparty/Fuzzer/
H A DFuzzerTracePC.h50 void HandleInit(uint32_t *start, uint32_t *stop);
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-eventlib-foreign/
H A Dminimal-http-server-eventlib-foreign.c215 ops->stop(); in foreign_timer_service()
/third_party/skia/third_party/externals/oboe/include/oboe/
H A DAudioStream.h35 * stream, such as `start` and `stop`.
98 virtual Result stop(int64_t timeoutNanoseconds = kDefaultTimeoutNanos);
124 * `stop(0)`.
376 * Launch a thread that will stop the stream.
463 * @return the result of the callback: stop or continue
516 std::mutex mLock; // for synchronizing start/stop/close
/third_party/skia/third_party/externals/oboe/samples/iolib/src/main/cpp/player/
H A DSimpleMultiPlayer.cpp137 mAudioStream->stop(); in teardownAudioStream()
/third_party/skia/tools/lottie-web-perf/
H A Dlottie-web-perf.js171 await page.tracing.stop();
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/
H A Dppir.h357 bool stop; member
381 bool stop; member
/third_party/skia/src/pathops/
H A DSkOpSpan.cpp310 const SkOpPtT* stop = test; in mergeMatches() local
367 } while ((test = testNext) != stop); in mergeMatches()
/third_party/skia/src/pdf/
H A DSkPDFBitmap.cpp113 const uint32_t* stop = ptr + pm.height() * pm.width(); in do_deflated_alpha() local
118 while (ptr != stop) { in do_deflated_alpha()
/third_party/python/Lib/idlelib/idle_test/
H A Dtest_codecontext.py93 self.addCleanup(GetHighlight_patcher.stop)
101 self.addCleanup(GetFont_patcher.stop)
213 # Set stop_indent to test indent level to stop at.
/third_party/skia/include/private/
H A DSkTemplates.h183 T* stop = fArray + count; in reset() local
184 while (iter < stop) { in reset()
/third_party/python/Modules/
H A D_elementtree.c1725 Py_ssize_t start, stop, step, slicelen, i; in element_subscr() local
1732 if (PySlice_Unpack(item, &start, &stop, &step) < 0) { in element_subscr()
1735 slicelen = PySlice_AdjustIndices(self->extra->length, &start, &stop, in element_subscr()
1778 Py_ssize_t start, stop, step, slicelen, newlen, i; in element_ass_subscr() local
1789 if (PySlice_Unpack(item, &start, &stop, &step) < 0) { in element_ass_subscr()
1792 slicelen = PySlice_AdjustIndices(self->extra->length, &start, &stop, in element_ass_subscr()
1807 stop = start + 1; in element_ass_subscr()
1808 start = stop + step * (slicelen - 1) - 1; in element_ass_subscr()
1828 for (cur = start, i = 0; cur < (size_t)stop; cur += step, ++i) { in element_ass_subscr()
1916 for (i = stop; in element_ass_subscr()
[all...]
/third_party/alsa-utils/seq/aplaymidi/
H A Darecordmidi.c77 static volatile sig_atomic_t stop = 0; variable
724 stop = 1; in sighandler()
906 if (stop) in main()
/third_party/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
H A DPerfTest.java246 long start, stop; in time()
251 stop = System.currentTimeMillis(); in time()
252 return stop - start; // ms in time()
/third_party/libinput/tools/
H A Dlibinput-debug-events.c51 static volatile sig_atomic_t stop = 0; variable
963 stop = 1; in sighandler()
988 } while (!stop && poll(&fds, 1, -1) > -1); in mainloop()
/third_party/skia/src/core/
H A DSkContourMeasure.cpp306 const SkContourMeasure::Segment* stop = fSegments.end();
311 while (seg < stop) {
317 while (s < stop - 1 && s[0].fPtIndex == s[1].fPtIndex && --maxChecks > 0) {

Completed in 44 milliseconds

1...<<11121314151617181920>>...22