Searched defs:stop (Results 201 - 225 of 429) sorted by relevance

1234567891011>>

/external/qemu/tcg/sparc/
H A Dtcg-target.h141 static inline void flush_icache_range(unsigned long start, unsigned long stop) argument
146 stop = (stop + (8UL - 1UL)) & ~(8UL - 1UL);
148 for (; p < stop; p += 8)
/external/qemu/tcg/x86_64/
H A Dtcg-target.h93 static inline void flush_icache_range(unsigned long start, unsigned long stop) argument
/external/quake/quake/src/QW/client/
H A Dr_misc.c73 float start, stop, time; local
97 stop = Sys_DoubleTime ();
98 time = stop-start;
/external/quake/quake/src/QW/server/
H A Dsv_move.c39 vec3_t mins, maxs, start, stop; local
71 start[0] = stop[0] = (mins[0] + maxs[0])*0.5;
72 start[1] = stop[1] = (mins[1] + maxs[1])*0.5;
73 stop[2] = start[2] - 2*STEPSIZE;
74 trace = SV_Move (start, vec3_origin, vec3_origin, stop, true, ent);
84 start[0] = stop[0] = x ? maxs[0] : mins[0];
85 start[1] = stop[1] = y ? maxs[1] : mins[1];
87 trace = SV_Move (start, vec3_origin, vec3_origin, stop, true, ent);
/external/quake/quake/src/WinQuake/
H A Dr_misc.cpp72 float start, stop, time; local
96 stop = Sys_FloatTime ();
97 time = stop-start;
H A Dsv_move.cpp39 vec3_t mins, maxs, start, stop; local
71 start[0] = stop[0] = (mins[0] + maxs[0])*0.5;
72 start[1] = stop[1] = (mins[1] + maxs[1])*0.5;
73 stop[2] = start[2] - 2*STEPSIZE;
74 trace = SV_Move (start, vec3_origin, vec3_origin, stop, true, ent);
84 start[0] = stop[0] = x ? maxs[0] : mins[0];
85 start[1] = stop[1] = y ? maxs[1] : mins[1];
87 trace = SV_Move (start, vec3_origin, vec3_origin, stop, true, ent);
H A Dsv_user.cpp126 vec3_t start, stop; local
137 start[0] = stop[0] = origin[0] + vel[0]/speed*16;
138 start[1] = stop[1] = origin[1] + vel[1]/speed*16;
140 stop[2] = start[2] - 34;
142 trace = SV_Move (start, vec3_origin, vec3_origin, stop, true, sv_player);
/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/include/core/
H A DSkTDArray.h209 const T* stop = fArray + fCount;
211 for (; iter < stop; iter++) {
221 const T* stop = fArray;
223 while (iter > stop) {
225 return iter - stop;
241 T* stop = fArray + fCount; local
242 while (iter < stop) {
251 T* stop = fArray + fCount; local
252 while (iter < stop) {
261 T* stop local
271 T* stop = fArray + fCount; local
[all...]
/external/skia/src/core/
H A DSkStrokerPriv.cpp15 const SkVector& normal, const SkPoint& stop,
18 path->lineTo(stop.fX, stop.fY);
22 const SkVector& normal, const SkPoint& stop,
37 stop.fX, stop.fY);
41 const SkVector& normal, const SkPoint& stop,
56 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
40 SquareCapper(SkPath* path, const SkPoint& pivot, const SkVector& normal, const SkPoint& stop, SkPath* otherPath) argument
/external/skia/src/utils/
H A DSkParse.cpp205 char* stop; local
206 float v = (float)strtod(str, &stop);
207 if (str == stop) {
213 return stop;
/external/skia/src/views/
H A DSkEventSink.cpp171 const SkEventSinkID* stop = iter + sinkList->countListners(); local
172 while (iter < stop)
212 const SkEventSinkID* stop = iter + list->countListners(); local
213 while (iter < stop) {
H A DSkTextBox.cpp20 static size_t linebreak(const char text[], const char stop[], const SkPaint& paint, SkScalar margin) argument
33 while (text < stop)
49 while (text < stop && is_ws(SkUTF8_ToUnichar(text)))
70 const char* stop = text + len; local
77 text += linebreak(text, stop, paint, width);
78 } while (text < stop);
/external/skia/src/xml/
H A DSkXMLWriter.cpp114 const char* stop = src + length; local
116 while (src < stop)
/external/svox/pico/compat/jni/
H A Dtts.h116 // @return TTS_CALLBACK_HALT to indicate the synthesis must stop,
156 android_tts_result_t (*stop) member in struct:android_tts_engine_funcs_t
/external/svox/pico/compat/src/com/android/tts/compat/
H A DSynthProxy.java70 public int stop() { method in class:SynthProxy
75 * Synchronous stop of the synthesizer. This method returns when the synth
76 * has completed the stop procedure and doesn't use any of the resources it
/external/webkit/Source/JavaScriptCore/bytecode/
H A DSamplingTool.cpp63 void SamplingFlags::stop() function in class:JSC::SamplingFlags
83 void SamplingFlags::stop() {}
152 void SamplingThread::stop() function in class:JSC::SamplingThread
/external/webkit/Source/WebCore/css/
H A DCSSGradientValue.h56 void addStop(const CSSGradientColorStop& stop) { m_stops.append(stop); } argument
/external/webkit/Source/WebCore/fileapi/
H A DFileStreamProxy.cpp92 void FileStreamProxy::stop() function in class:WebCore::FileStreamProxy
109 m_stream->stop();
/external/webkit/Source/WebCore/platform/graphics/
H A DGradient.h118 float stop; member in struct:WebCore::Gradient::ColorStop
124 ColorStop() : stop(0), red(0), green(0), blue(0), alpha(0) { }
125 ColorStop(float s, float r, float g, float b, float a) : stop(s), red(r), green(g), blue(b), alpha(a) { }
/external/webkit/Source/WebCore/plugins/
H A DPluginStream.cpp100 void PluginStream::stop() function in class:WebCore::PluginStream
220 stop();
/external/webkit/Source/WebCore/workers/
H A DWorkerRunLoop.cpp56 virtual void stop() { m_nextFireTime = 0; } function in class:WebCore::WorkerSharedTimer
/external/webkit/Source/WebKit/android/jni/
H A DGeolocationServiceBridge.cpp85 stop();
97 void GeolocationServiceBridge::stop() function in class:android::GeolocationServiceBridge
183 env->GetMethodID(javaGeolocationServiceClass, "stop", "()V");
/external/webkit/Source/WebKit/wince/
H A DWebView.cpp228 void WebView::stop() function in class:WebView

Completed in 480 milliseconds

1234567891011>>