Searched defs:spot (Results 1 - 12 of 12) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/src/
H A DSDL_error.c137 char tmp[32], *spot = tmp; local
138 *spot++ = *fmt++;
139 while ( (*fmt == '.' || (*fmt >= '0' && *fmt <= '9')) && spot < (tmp+SDL_arraysize(tmp)-2) ) {
140 *spot++ = *fmt++;
142 *spot++ = *fmt++;
143 *spot++ = '\0';
144 switch (spot[-2]) {
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_vb_lighttmp.h150 GLfloat spot = powf(PV_dot_dir, light->SpotExponent); local
151 attenuation *= spot;
328 GLfloat spot = powf(PV_dot_dir, light->SpotExponent); local
329 attenuation *= spot;
H A Dt_rasterpos.c168 GLfloat spot = powf(PV_dot_dir, light->SpotExponent); local
169 attenuation *= spot;
/external/mesa3d/src/mesa/tnl/
H A Dt_vb_lighttmp.h150 GLfloat spot = powf(PV_dot_dir, light->SpotExponent); local
151 attenuation *= spot;
328 GLfloat spot = powf(PV_dot_dir, light->SpotExponent); local
329 attenuation *= spot;
H A Dt_rasterpos.c168 GLfloat spot = powf(PV_dot_dir, light->SpotExponent); local
169 attenuation *= spot;
/external/qemu/distrib/sdl-1.2.15/src/audio/windx5/
H A DSDL_dx5audio.c360 { DWORD spot = cursor; local
361 if ( spot < lastchunk ) {
362 spot += NUM_BUFFERS;
364 if ( spot > lastchunk+1 ) {
366 (spot - (lastchunk+1)));
/external/qemu/distrib/sdl-1.2.15/src/events/
H A DSDL_events.c289 /* Cut an event, and return the next valid spot, or the tail */
291 static int SDL_CutEvent(int spot) argument
293 if ( spot == SDL_EventQ.head ) {
297 if ( (spot+1)%MAXEVENTS == SDL_EventQ.tail ) {
298 SDL_EventQ.tail = spot;
309 for ( here=spot; here != SDL_EventQ.tail; here = next ) {
313 return(spot);
337 int spot; local
345 spot = SDL_EventQ.head;
346 while ((used < numevents)&&(spot !
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DVector.h1070 T* spot = begin() + position; local
1071 TypeOperations::moveOverlapping(spot, end(), spot + dataSize);
1072 VectorCopier<VectorTraits<T>::canCopyWithMemcpy, T>::uninitializedCopy(data, &data[dataSize], spot);
1086 T* spot = begin() + position; local
1087 TypeOperations::moveOverlapping(spot, end(), spot + 1);
1088 new (NotNull, spot) T(*data);
1120 T* spot = begin() + position;
1121 spot
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11video.c284 char *spot; local
292 spot = SDL_getenv("SDL_VIDEO_X11_WMCLASS");
293 if ( spot ) {
294 SDL_strlcpy(classname, spot, maxlen);
310 spot = SDL_strrchr(linkfile, '/');
311 if ( spot ) {
312 SDL_strlcpy(classname, spot+1, maxlen);
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dffvertex_prog.c954 /* Calculate spot attenuation:
959 struct ureg spot = get_temp(p); local
964 emit_op2(p, OPCODE_DP3, spot, 0, negate(VPpli), spot_dir_norm);
965 emit_op2(p, OPCODE_SLT, slt, 0, swizzle1(spot_dir_norm,W), spot);
966 emit_op2(p, OPCODE_POW, spot, 0, spot, swizzle1(attenuation, W));
967 emit_op2(p, OPCODE_MUL, att, 0, slt, spot);
969 release_temp(p, spot);
990 /* spot-atten * dist-atten */
/external/mesa3d/src/mesa/main/
H A Dffvertex_prog.c954 /* Calculate spot attenuation:
959 struct ureg spot = get_temp(p); local
964 emit_op2(p, OPCODE_DP3, spot, 0, negate(VPpli), spot_dir_norm);
965 emit_op2(p, OPCODE_SLT, slt, 0, swizzle1(spot_dir_norm,W), spot);
966 emit_op2(p, OPCODE_POW, spot, 0, spot, swizzle1(attenuation, W));
967 emit_op2(p, OPCODE_MUL, att, 0, slt, spot);
969 release_temp(p, spot);
990 /* spot-atten * dist-atten */
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...

Completed in 326 milliseconds