Home
last modified time | relevance | path

Searched refs:stop (Results 1 – 25 of 62) sorted by relevance

123

/ndk/tests/device/test-stlport/unit/cppunit/
Dcppunit_timer.h49 void stop() { in stop() function
51 LARGE_INTEGER stop; in stop() local
52 QueryPerformanceCounter(&stop); in stop()
55 m_stop.HighPart += (stop.HighPart - m_restart.HighPart); in stop()
56 if (stop.LowPart < m_restart.LowPart) { in stop()
57 if (m_restart.LowPart - stop.LowPart > m_stop.LowPart) { in stop()
60 m_stop.LowPart -= m_restart.LowPart - stop.LowPart; in stop()
63 if (stop.LowPart - m_restart.LowPart > 0xFFFFFFFF - m_stop.LowPart) { in stop()
66 m_stop.LowPart += stop.LowPart - m_restart.LowPart; in stop()
70 m_stop = stop; in stop()
Dfile_reporter.h100 m_globalTimer.stop(); in end()
101 m_testTimer.stop(); in end()
/ndk/tests/device/test-gnustl-full/unit/cppunit/
Dcppunit_timer.h49 void stop() { in stop() function
51 LARGE_INTEGER stop; in stop() local
52 QueryPerformanceCounter(&stop); in stop()
55 m_stop.HighPart += (stop.HighPart - m_restart.HighPart); in stop()
56 if (stop.LowPart < m_restart.LowPart) { in stop()
57 if (m_restart.LowPart - stop.LowPart > m_stop.LowPart) { in stop()
60 m_stop.LowPart -= m_restart.LowPart - stop.LowPart; in stop()
63 if (stop.LowPart - m_restart.LowPart > 0xFFFFFFFF - m_stop.LowPart) { in stop()
66 m_stop.LowPart += stop.LowPart - m_restart.LowPart; in stop()
70 m_stop = stop; in stop()
Dfile_reporter.h100 m_globalTimer.stop(); in end()
101 m_testTimer.stop(); in end()
/ndk/sources/host-tools/ndk-stack/regex/
Dengine.c139 char *stop; in matcher() local
146 stop = string + pmatch[0].rm_eo; in matcher()
149 stop = start + strlen(start); in matcher()
151 if (stop < start) in matcher()
156 for (dp = start; dp < stop; dp++) in matcher()
157 if (*dp == g->must[0] && stop - dp >= g->mlen && in matcher()
160 if (dp == stop) /* we didn't find g->must */ in matcher()
171 m->endp = (char*)stop; in matcher()
181 endp = fast(m, start, stop, gf, gl); in matcher()
195 endp = slow(m, m->coldp, stop, gf, gl); in matcher()
[all …]
Dregcomp.c249 p_ere(struct parse *p, int stop) /* character this ERE should end at */ in p_ere() argument
260 while (MORE() && (c = PEEK()) != '|' && c != stop) in p_ere()
285 assert(!MORE() || SEE(stop)); in p_ere()
/ndk/sources/host-tools/sed-4.2.1/lib/
Dregex.c38 # define re_match_2(bufp, string1, size1, string2, size2, pos, regs, stop) \ argument
39 __re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
47 # define re_search_2(bufp, st1, s1, st2, s2, startpos, range, regs, stop) \ argument
48 __re_search_2 (bufp, st1, s1, st2, s2, startpos, range, regs, stop)
Dregexec.c43 Idx start, Idx last_start, Idx stop,
51 Idx stop, bool ret_len) internal_function;
54 regoff_t range, Idx stop,
342 re_match_2 (bufp, string1, length1, string2, length2, start, regs, stop)
345 Idx length1, length2, start, stop; variable
349 start, 0, regs, stop, true);
356 re_search_2 (bufp, string1, length1, string2, length2, start, range, regs, stop)
359 Idx length1, length2, start, stop; variable
364 start, range, regs, stop, false);
376 Idx stop, bool ret_len) in weak_alias()
[all …]
Dregex_internal.c186 pstr->stop = pstr->len; in re_string_construct_common()
187 pstr->raw_stop = pstr->stop; in re_string_construct_common()
428 pstr->stop += mbcdlen - mbclen; in build_wcs_upper_buffer()
589 pstr->stop = pstr->raw_stop; in re_string_reconstruct()
646 pstr->stop = pstr->raw_stop - idx + offset; in re_string_reconstruct()
699 pstr->stop = pstr->raw_stop - idx + offset; in re_string_reconstruct()
803 pstr->stop -= offset; in re_string_reconstruct()
Dregex_internal.h397 Idx stop; member
453 #define re_string_eoi(pstr) ((pstr)->stop <= (pstr)->cur_idx)
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
DUnwindLevel1.c230 _Unwind_Stop_Fn stop, void *stop_parameter) { in unwind_phase2_forced() argument
265 (*stop)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced()
319 (*stop)(1, lastAction, exception_object->exception_class, exception_object, in unwind_phase2_forced()
387 _Unwind_Stop_Fn stop, void *stop_parameter) { in _Unwind_ForcedUnwind() argument
389 exception_object, stop); in _Unwind_ForcedUnwind()
395 exception_object->private_1 = (uintptr_t) stop; in _Unwind_ForcedUnwind()
399 return unwind_phase2_forced(&uc, exception_object, stop, stop_parameter); in _Unwind_ForcedUnwind()
DUnwind-sjlj.c197 _Unwind_Stop_Fn stop, void *stop_parameter) { in unwind_phase2_forced() argument
214 (*stop)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced()
269 (*stop)(1, lastAction, exception_object->exception_class, exception_object, in unwind_phase2_forced()
/ndk/tests/abcc/jni/device/
Dmain.cpp62 long long elapsed_msec = (t.stop() + 500) / 1000; in Java_compiler_abcc_AbccService_genLibs()
DAbcc_device.h48 long long stop() { in stop() function
/ndk/sources/cxx-stl/gabi++/include/
Dunwind-itanium.h100 _Unwind_Stop_Fn stop,
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/include/
Dunwind.h254 _Unwind_Stop_Fn stop, void *stop_parameter);
258 _Unwind_Stop_Fn stop, void *stop_parameter);
/ndk/sources/host-tools/make-3.81/
Dremake.c128 int stop = 0, any_not_updated = 0; in update_goal_chain() local
167 stop = 0; in update_goal_chain()
178 stop = (question_flag && !keep_going_flag in update_goal_chain()
200 stop = 1; in update_goal_chain()
209 if (stop) in update_goal_chain()
216 if (stop || !any_not_updated) in update_goal_chain()
244 if (stop) in update_goal_chain()
Daclocal.m4909 # If the value was cached, stop now. We just wanted to have am__tar
913 # tar/untar a dummy directory, and stop if the command works
/ndk/docs/renderscript/
Ddoxygen.css168 …background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(…
461 …ar,center top,center bottom,from(#FFFFFF), color-stop(0.6,#FFFFFF), color-stop(0.60,#FFFFFF), colo…
Djquery.js22 …="-="?-1:1)*N)+T}R.custom(T,N,P)}else{R.custom(T,S,"")}}});return true})},stop:function(F,E){var G… method
43stop:function(e,f){var d=c(this).data("resizable");if(d._revertToRelativePosition&&c.browser.opera… method
44stop:function(e,m){var p=c(this).data("resizable"),f=p.options,k=p.position,l=p.containerOffset,d=… method
/ndk/sources/host-tools/make-3.81/tests/scripts/options/
Ddash-k3 $description = "Test the make -k (don't stop on error) option.\n";
/ndk/tests/abcc/jni/
DAbcc.cpp209 llc_usec += t_llc.stop(); in compile()
/ndk/sources/host-tools/sed-4.2.1/po/
Daf.po566 #~ " --help vertoon hierdie hulpboodskap en stop\n"
567 #~ " -V, --version vertoon weergaweinligting en stop\n"
Dga.po236 " stop priontáil uathoibríoch den spás patrúin\n"
/ndk/sources/host-tools/sed-4.2.1/
Daclocal.m4858 # If the value was cached, stop now. We just wanted to have am__tar
862 # tar/untar a dummy directory, and stop if the command works

123