HomeSort by relevance Sort by last modified time
    Searched defs:garbage (Results 1 - 3 of 3) sorted by null

  /dalvik/vm/alloc/
HeapBitmap.cpp 158 * object pointers that correspond to garbage objects. Call
189 unsigned long garbage = live[i] & ~mark[i]; local
190 if (UNLIKELY(garbage != 0)) {
193 while (garbage != 0) {
194 int shift = CLZ(garbage);
195 garbage &= ~(highBit >> shift);
  /system/core/libcutils/
selector.c 48 static char garbage[64]; local
49 if (read(wakeupFd->fd, garbage, sizeof(garbage)) < 0) {
77 static char garbage[1]; local
78 if (write(selector->wakeupPipe[1], garbage, sizeof(garbage)) < 0) {
  /external/libppp/src/
deflate.c 50 static char garbage[10]; variable
327 state->cx.next_out = garbage;
328 state->cx.avail_out = sizeof garbage;
374 state->cx.next_out = garbage;
375 state->cx.avail_out = sizeof garbage;
420 state->cx.next_out = garbage;
421 state->cx.avail_out = sizeof garbage;

Completed in 574 milliseconds