HomeSort by relevance Sort by last modified time
    Searched refs:free (Results 201 - 225 of 5033) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.single/
sized_delete_replace.pass.cpp 31 std::free(p);
37 std::free(p);
43 std::free(p);
49 std::free(p);
  /external/libdrm/intel/
mm.c 5 * Permission is hereby granted, free of charge, to any person obtaining a
41 p->size, p->free ? 'F' : '.',
48 drmMsg(" FREE Offset:%08x, Size:%08x, %c%c\n", p->ofs,
49 p->size, p->free ? 'F' : '.',
70 free(heap);
87 block->free = 1;
106 newblock->free = 1;
131 newblock->free = 1;
148 p->free = 0;
150 /* Remove p from the free list:
    [all...]
  /external/libpng/contrib/libtests/
readpng.c 47 if (row != NULL) free(row);
48 if (display != NULL) free(display);
94 free(row);
95 free(display);
  /external/linux-tools-perf/src/tools/perf/util/
xyarray.c 19 free(xy);
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_mm.c 21 struct list_head free; member in struct:mm_bucket
41 int free; member in struct:mm_slab
50 if (slab->free == 0)
58 slab->free--;
71 slab->free++;
72 assert(slab->free <= slab->count);
134 FREE(slab);
142 slab->count = slab->free = size >> chunk_order;
144 LIST_ADD(&slab->head, &mm_bucket_by_order(cache, chunk_order)->free);
180 if (LIST_IS_EMPTY(&bucket->free)) {
    [all...]
  /external/mesa3d/src/mesa/main/
mm.c 5 * Permission is hereby granted, free of charge, to any person obtaining a
44 p->free ? 'F':'.',
51 fprintf(stderr, " FREE Offset:%08x, Size:%08x, %c%c\n",p->ofs,p->size,
52 p->free ? 'F':'.',
74 free(heap);
91 block->free = 1;
111 newblock->free = 1;
135 newblock->free = 1;
152 p->free = 0;
154 /* Remove p from the free list:
    [all...]
  /external/openssh/openbsd-compat/regress/
strduptest.c 34 free(b);
  /external/selinux/libselinux/src/
selinuxswig.i 29 free((*$1)[i]);
31 free(*$1);
  /external/selinux/libsemanage/src/
database_join.c 138 rtable->free(record);
147 rtable1->free(records1[i]);
149 rtable2->free(records2[i]);
150 free(records1);
151 free(records2);
157 rtable1->free(records1[i]);
159 rtable2->free(records2[i]);
160 free(records1);
161 free(records2);
163 rtable->free(record)
    [all...]
  /external/skia/src/gpu/gl/
GrGLNameAllocator.h 65 * Free an OpenGL object name, allowing it to be returned by a future call
68 * this method (but not call glDelete*, since that would free up the name
71 * @param name The object name to free. Not-allocated names are silently
74 void free(GrGLuint name);
  /external/toybox/lib/
llist.c 8 // Callback function to free data pointer of double_list or arg_list
14 free(d->arg);
15 free(d);
22 free(d->data);
23 free(d);
26 // Call a function (such as free()) on each element of a linked list.
  /external/toybox/toys/other/
pwdx.c 28 free(path);
readlink.c 39 if (CFG_TOYBOX_FREE) free(s);
  /external/toybox/toys/posix/
nohup.c 34 free(temp);
  /external/valgrind/drd/tests/
custom_alloc_fiw.stderr.exp 2 --free-is-write=yes is incompatible with custom memory allocator client requests
6 --free-is-write=yes is incompatible with custom memory allocator client requests
  /external/valgrind/massif/tests/
basic.c 17 free(a[i]);
  /external/valgrind/memcheck/tests/
buflen_check.stderr.exp 4 Address 0x........ is not stack'd, malloc'd or (recently) free'd
9 Address 0x........ is not stack'd, malloc'd or (recently) free'd
err_disable1.stderr.exp 10 Address 0x........ is 5 bytes inside a block of size 10 free'd
11 at 0x........: free (vg_replace_malloc.c:...)
23 Address 0x........ is 5 bytes inside a block of size 10 free'd
24 at 0x........: free (vg_replace_malloc.c:...)
33 Address 0x........ is 5 bytes inside a block of size 10 free'd
34 at 0x........: free (vg_replace_malloc.c:...)
40 Address 0x........ is 5 bytes inside a block of size 10 free'd
41 at 0x........: free (vg_replace_malloc.c:...)
err_disable2.c 28 free(block);
err_disable_arange1.c 15 free((void*)mem);
long_namespace_xml.cpp 29 // that occurs just before the free() call.
38 free(ptr);
malloc1.c 19 free(p);
malloc1_ks_alloc_and_free.stderr.exp 3 Address 0x........ is 1 bytes inside a block of size 10 free'd
4 at 0x........: free (vg_replace_malloc.c:...)
malloc1_ks_free.stderr.exp 3 Address 0x........ is 1 bytes inside a block of size 10 free'd
4 at 0x........: free (vg_replace_malloc.c:...)
malloc_free_fill.c 2 /* Test for correct functioning of the --malloc-fill and --free-fill
3 flags. Needs --malloc-fill=0x55 and --free-fill=0x77. */
23 fprintf(stderr, "test simple malloc/free:\n");
28 free(a);
29 TEST(a[5], 0x77777777, " free-filled");
41 TEST(oldr[26], 0x77777777, " free-filled");
44 free(r);
56 TEST(oldr[26], 0x77777777, " free-filled");
58 free(r);
66 free(a)
    [all...]

Completed in 685 milliseconds

1 2 3 4 5 6 7 891011>>