HomeSort by relevance Sort by last modified time
    Searched full:slop (Results 26 - 50 of 198) sorted by null

12 3 4 5 6 7 8

  /external/icu4c/samples/msgfmt/
util.cpp 55 plus some slop. */
  /external/icu4c/samples/translit/
util.cpp 55 plus some slop. */
  /external/valgrind/main/massif/tests/
deep.c 35 a1(400); // divisible by 16 -- no slop
custom_alloc.c 60 int* a = custom_alloc(400); // All sizes are divisible by 16 -- no slop.
  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
SwipePinchDetector.java 119 // If both fingers have moved beyond the touch-slop, it is safe to recognize the gesture.
126 // cannot be equal to the touch-slop, because in that case, SWIPE would rarely be detected.
127 // One finger would usually leave the touch-slop radius slightly before the other finger,
  /external/chromium_org/third_party/libXNVCtrl/
NVCtrl.c 438 int length, numbytes, slop; local
463 slop = numbytes & 3;
475 if (slop) _XEatData(dpy, 4-slop);
982 int length, numbytes, slop; local
1007 slop = numbytes & 3;
1019 if (slop) _XEatData(dpy, 4-slop);
1053 int inSize, outSize, length, slop; local
1097 slop = outSize & 3
    [all...]
  /frameworks/base/core/java/android/text/method/
Touch.java 123 int slop = ViewConfiguration.get(widget.getContext()).getScaledTouchSlop(); local
125 if (Math.abs(event.getX() - ds[0].mX) >= slop ||
126 Math.abs(event.getY() - ds[0].mY) >= slop) {
ArrowKeyMovementMethod.java 252 // Before selecting, make sure we've moved out of the "slop".
254 // OUT of the slop
  /frameworks/base/tools/obbtool/
mkobb.sh 29 SLOP=512 # Amount of filesystem slop in ${BLOCK_SIZE} blocks
221 ${DDBIN} if=/dev/zero of=${tempfile} bs=${BLOCK_SIZE} count=$((${block_count} + ${SLOP})) > /dev/null 2>&1
  /external/chromium_org/ppapi/shared_impl/
time_conversion_unittest.cc 13 // Slop we'll allow in two Time "internal values" to consider them equal.
  /external/jpeg/
jmemmgr.c 232 * we try to get enough space for the current request plus a "slop" factor,
233 * where the slop will be the amount of leftover space in the new pool.
234 * The speed vs. space tradeoff is largely determined by the slop values.
235 * A different slop value is provided for each pool class (lifetime),
263 size_t odd_bytes, min_request, slop; local
288 /* min_request is what we need now, slop is what will be leftover */
291 slop = first_pool_slop[pool_id];
293 slop = extra_pool_slop[pool_id];
295 if (slop > (size_t) (MAX_ALLOC_CHUNK-min_request))
296 slop = (size_t) (MAX_ALLOC_CHUNK-min_request)
    [all...]
jmem-ashmem.c 73 * a slop factor of 5% or so.
jmemansi.c 73 * a slop factor of 5% or so.
  /external/qemu/distrib/jpeg-6b/
jmemmgr.c 232 * we try to get enough space for the current request plus a "slop" factor,
233 * where the slop will be the amount of leftover space in the new pool.
234 * The speed vs. space tradeoff is largely determined by the slop values.
235 * A different slop value is provided for each pool class (lifetime),
263 size_t odd_bytes, min_request, slop; local
288 /* min_request is what we need now, slop is what will be leftover */
291 slop = first_pool_slop[pool_id];
293 slop = extra_pool_slop[pool_id];
295 if (slop > (size_t) (MAX_ALLOC_CHUNK-min_request))
296 slop = (size_t) (MAX_ALLOC_CHUNK-min_request)
    [all...]
jmem-ashmem.c 72 * a slop factor of 5% or so.
jmemansi.c 73 * a slop factor of 5% or so.
  /external/chromium_org/content/browser/renderer_host/input/
synthetic_gesture_target_base.cc 30 // slop.
  /external/chromium_org/third_party/skia/src/core/
SkDescriptor.h 157 + 32 // slop for occational small extras
  /external/skia/src/core/
SkDescriptor.h 157 + 32 // slop for occational small extras
  /external/skia/tests/
ImageCacheTest.cpp 90 static const size_t defLimit = DIM * DIM * 4 * COUNT + 1024; // 1K slop
  /frameworks/base/docs/html/training/gestures/
viewgroup.jd 127 // the touch slop, start the scroll
132 // Touch slop should be calculated using ViewConfiguration
174 <p>"Touch slop" refers to the distance in pixels a user's touch can wander
175 before the gesture is interpreted as scrolling. Touch slop is typically used to
movement.jd 57 "touch slop." Touch slop refers to the distance in pixels a user's touch can wander
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
ReverbConvolver.cpp 48 // It turns out then, that the background thread has about 278msec of scheduling slop.
49 // Empirically, this has been found to be a good compromise between giving enough time for scheduling slop,
  /frameworks/base/core/java/android/app/
SearchDialog.java 499 final int slop = ViewConfiguration.get(mContext).getScaledWindowTouchSlop(); local
500 return (x < -slop) || (y < -slop)
501 || (x > (v.getWidth()+slop))
502 || (y > (v.getHeight()+slop));
  /external/chromium_org/tools/site_compare/drivers/win32/
windowing.py 276 slop = (rect[2]-rect[0]-child_rect[2]+child_rect[0],
278 size = (size[0]+slop[0], size[1]+slop[1])

Completed in 560 milliseconds

12 3 4 5 6 7 8