/external/valgrind/main/massif/tests/ |
culling1.c | 7 malloc(16); // divisible by 16 -- no slop
|
culling2.c | 7 malloc(400*i); // Divisible by 16 -- no slop.
|
peak.c | 7 int* p; // Sizes are divisible by 16 -- no slop.
|
basic.c | 14 a[i] = malloc(400); // 400 is divisible by 16 -- so no slop.
|
insig.c | 8 malloc(16000); // all sizes are divisible by 16 -- no slop
|
realloc.c | 4 { // All sizes are multiples of 16 -- no slop.
|
alloc-fns.c | 25 a1(400); // We use a number that's a multiple of 16, so there's no slop
|
long-names.c | 61 malloc(2000); // Divisible by 16 -- no slop.
|
ignored.c | 3 // All sizes are divisible by 16 -- no slop.
|
thresholds.c | 54 my_malloc1(4000); // All sizes are divisible by 16 -- no slop.
|
/external/valgrind/main/memcheck/tests/ |
malloc_usable.c | 9 // Because Memcheck marks any slop as inaccessible, it doesn't round up
|
/external/chromium_org/third_party/leveldatabase/src/util/ |
arena.cc | 46 size_t slop = (current_mod == 0 ? 0 : align - current_mod); local 47 size_t needed = bytes + slop; 50 result = alloc_ptr_ + slop;
|
/external/chromium_org/third_party/mesa/src/src/glx/ |
packsingle.h | 172 GLint slop = alen*__GLX_SIZE_INT8 & 3; \ 174 if (slop) _XEatData(dpy,4-slop); \ 179 GLint slop = alen*__GLX_SIZE_INT8 & 3; \ 181 if (slop) _XEatData(dpy,4-slop); \ 187 GLint slop = (alen*__GLX_SIZE_INT16) & 3; \ 189 if (slop) _XEatData(dpy,4-slop); \
|
/external/mesa3d/src/glx/ |
packsingle.h | 172 GLint slop = alen*__GLX_SIZE_INT8 & 3; \ 174 if (slop) _XEatData(dpy,4-slop); \ 179 GLint slop = alen*__GLX_SIZE_INT8 & 3; \ 181 if (slop) _XEatData(dpy,4-slop); \ 187 GLint slop = (alen*__GLX_SIZE_INT16) & 3; \ 189 if (slop) _XEatData(dpy,4-slop); \
|
/external/chromium_org/third_party/icu/source/test/perf/usetperf/ |
bitset.cpp | 16 const int32_t SLOP = 8; 21 len = SLOP;
|
/external/icu4c/test/perf/usetperf/ |
bitset.cpp | 16 const int32_t SLOP = 8; 21 len = SLOP;
|
/packages/apps/Browser/src/com/android/browser/view/ |
PieStackView.java | 30 private static final int SLOP = 5; 66 mLeft = anchorX + (left ? SLOP : -(SLOP + mChildWidth));
|
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/ |
LongPressDetectorTest.java | 115 * Verify that the touch move threshold (slop) is working for events offered to native. 120 final int slop = ViewConfiguration.get(getInstrumentation().getTargetContext()) local 132 FAKE_COORD_X + slop / 2, FAKE_COORD_Y + slop / 2, 0); 140 FAKE_COORD_X + slop * 2, FAKE_COORD_Y + slop * 2, 0);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
LintTooltipManager.java | 155 int slop = mVScale.inverseScale(10); // extra space around icon where tip triggers local 168 if (p.x < x2 - layoutIconSize - slop 169 || p.x > x2 + slop 170 || p.y < y2 - layoutIconSize - slop 171 || p.y > y2 + slop) {
|
/external/chromium_org/chrome/browser/extensions/api/app_window/ |
app_window_apitest.cc | 78 int slop = 50; local 80 int slop = 0; local 83 ready_listener.Reply(base::IntToString(slop));
|
/frameworks/base/core/java/android/view/ |
TouchDelegate.java | 49 * mBounds inflated to include some slop. This rect is to track whether the motion events 146 int slop = mSlop; local 147 event.setLocation(-(slop * 2), -(slop * 2));
|
/external/jpeg/ |
jmemmac.c | 18 * application's zone, with the exception of the rather small "slop" 123 long slop, mem; local 132 * We add some slop to ensure we don't use up all available memory. 134 slop = max_bytes_needed / 16 + 32768L; 135 mem = CompactMem(max_bytes_needed + slop) - slop; 137 mem = 0; /* sigh, couldn't even get the slop */
|
/external/qemu/distrib/jpeg-6b/ |
jmemmac.c | 18 * application's zone, with the exception of the rather small "slop" 123 long slop, mem; local 132 * We add some slop to ensure we don't use up all available memory. 134 slop = max_bytes_needed / 16 + 32768L; 135 mem = CompactMem(max_bytes_needed + slop) - slop; 137 mem = 0; /* sigh, couldn't even get the slop */
|
/frameworks/wilhelm/tools/permute/ |
permute.c | 92 // slop is how much wiggle room we have to play with 93 unsigned slop = frameLength - s->mMinSegmentLengthFrames*2; local 94 assert(slop > 0); 95 // choose a random cut point within the slop region 97 unsigned cut = r % slop; 101 unsigned rightLength = s->mMinSegmentLengthFrames + (slop - cut);
|
/external/icu4c/samples/datefmt/ |
util.cpp | 55 plus some slop. */
|