Searched defs:stop (Results 176 - 200 of 414) sorted by relevance

1234567891011>>

/external/libvpx/libvpx/vp9/common/
H A Dvp9_thread_common.c93 int start, int stop, int y_only,
108 for (mi_row = start; mi_row < stop;
151 lf_data->start, lf_data->stop, lf_data->y_only,
159 int start, int stop, int y_only,
199 lf_data->stop = stop;
90 thread_loop_filter_rows(const YV12_BUFFER_CONFIG *const frame_buffer, VP9_COMMON *const cm, struct macroblockd_plane planes[MAX_MB_PLANE], int start, int stop, int y_only, VP9LfSync *const lf_sync) argument
156 loop_filter_rows_mt(YV12_BUFFER_CONFIG *frame, VP9_COMMON *cm, struct macroblockd_plane planes[MAX_MB_PLANE], int start, int stop, int y_only, VPxWorker *workers, int nworkers, VP9LfSync *lf_sync) argument
/external/linux-tools-perf/src/tools/perf/bench/
H A Dsched-messaging.c273 struct timeval start, stop, diff; local
309 gettimeofday(&stop, NULL);
311 timersub(&stop, &start, &diff);
/external/lzma/C/
H A DMtCoder.c29 if (p->stop)
39 p->stop = 0;
47 p->stop = 1;
187 static SRes MtThread_Process(CMtThread *p, Bool *stop) argument
190 *stop = True;
207 next->stopReading = *stop = (size != p->mtCoder->blockSize);
212 p->outBuf, &destSize, p->inBuf, size, *stop));
231 Bool stop; local
233 SRes res = MtThread_Process(p, &stop);
244 if (stop)
[all...]
H A DMtCoder.h16 int stop; member in struct:__anon11532
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_soa.c126 const unsigned stop = start + width; local
149 if (stop < format_desc->block.bits) {
178 if (stop < type.width) {
179 unsigned bits = type.width - stop;
217 assert(stop == 32);
250 start = stop;
273 unsigned stop = start + 8; local
282 if (stop < 32)
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/
H A Dtest_rendering.c103 static void Gradient(short *block, unsigned int start, unsigned int stop, int horizontal, unsigned int intra_unsigned) argument
106 unsigned int range = stop - start;
216 const int start = 16, stop = 235, range = stop - start; local
233 const int start = 16, stop = 240, range = stop - start; local
H A Dxvmc_bench.c192 struct timeval start, stop, diff; local
272 gettimeofday(&stop, NULL);
274 timeval_subtract(&diff, &stop, &start);
/external/mesa3d/src/mesa/swrast/
H A Ds_aatriangle.c215 GLint stop = 4, i; local
220 for (i = 0; i < stop; i++) {
233 stop = 16;
243 stop = 16;
253 stop = 16;
258 if (stop == 4)
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/server/
H A DAbstractFtpServer.java202 public void stop() { method in class:AbstractFtpServer
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/core/server/
H A DAbstractFtpServer.java193 public void stop() { method in class:AbstractFtpServer
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/core/server/
H A DAbstractFtpServer.java198 public void stop() { method in class:AbstractFtpServer
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/core/server/
H A DAbstractFtpServer.java201 public void stop() { method in class:AbstractFtpServer
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/core/server/
H A DAbstractFtpServer.java202 public void stop() { method in class:AbstractFtpServer
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/core/server/
H A DAbstractFtpServer.java202 public void stop() { method in class:AbstractFtpServer
/external/nist-sip/java/gov/nist/javax/sip/
H A DSipProviderImpl.java134 protected void stop() { method in class:SipProviderImpl
142 this.eventScanner.stop();
1069 lp.messageProcessor.stop();
H A DSipStackImpl.java1188 sipProviderImpl.stop();
1243 * Finalization -- stop the stack on finalization. Exit the transaction
1270 * @see javax.sip.SipStack#stop()
1272 public void stop() { method in class:SipStackImpl
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DMessageProcessor.java304 public abstract void stop(); method in class:MessageProcessor
/external/pdfium/core/src/fxge/agg/agg23/
H A Dagg_vcgen_stroke.h34 stop enumerator in enum:agg::vcgen_stroke::status_e
/external/replicaisland/src/com/replica/replicaisland/
H A DNPCAnimationComponent.java384 public void setStopAtWalls(boolean stop) { argument
385 mStopAtWalls = stop;
H A DSoundSystem.java106 public final void stop(int stream) { method in class:SoundSystem
107 mSoundPool.stop(stream);
123 stop(mLoopingStreams[x]);
/external/skia/experimental/nanomsg/
H A Dpicture_demo.cpp139 // If we got any message on the control socket, we can stop.
166 static void stop(const char* controlEndpoint) { function
171 // Sending anything (including this 0-byte message) will tell server() to stop.
177 DEFINE_bool(stop, false, "If true, tell server to stop and write its canvas out as a .png.");
186 stop(FLAGS_control[0]);
/external/skia/include/core/
H A DSkTDArray.h217 const T* stop = fArray + fCount;
219 for (; iter < stop; iter++) {
229 const T* stop = fArray;
231 while (iter > stop) {
233 return SkToInt(iter - stop);
275 T* stop = fArray + fCount; local
276 while (iter < stop) {
285 T* stop = fArray + fCount; local
286 while (iter < stop) {
295 T* stop local
305 T* stop = fArray + fCount; local
314 T* stop = this->end(); local
[all...]
/external/skia/src/core/
H A DSkDescriptor.h96 // remove the aa < stop test in the loop...
99 const uint32_t* stop = (const uint32_t*)((const char*)aa + fLength); local
103 } while (aa < stop);
H A DSkStrokerPriv.cpp15 const SkVector& normal, const SkPoint& stop,
18 path->lineTo(stop.fX, stop.fY);
22 const SkVector& normal, const SkPoint& stop,
31 path->conicTo(projectedCenter - normal, stop, SK_ScalarRoot2Over2);
35 const SkVector& normal, const SkPoint& stop,
50 path->lineTo(stop.fX, stop.fY);
14 ButtCapper(SkPath* path, const SkPoint& pivot, const SkVector& normal, const SkPoint& stop, SkPath*) argument
21 RoundCapper(SkPath* path, const SkPoint& pivot, const SkVector& normal, const SkPoint& stop, SkPath*) argument
34 SquareCapper(SkPath* path, const SkPoint& pivot, const SkVector& normal, const SkPoint& stop, SkPath* otherPath) argument
/external/skia/src/fonts/
H A DSkFontMgr_fontconfig.cpp117 FcPattern** stop = iter + font_set->nfont; local
119 for (; iter < stop; ++iter) {
125 if (iter == stop || !match_name(*iter, post_config_family)) {
130 for (; iter < stop; ++iter) {

Completed in 671 milliseconds

1234567891011>>