HomeSort by relevance Sort by last modified time
    Searched full:allocated (Results 1 - 25 of 4362) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/e2fsck/
mtrace.awk 5 $1 == "+" { if (allocated[$2] != "")
6 print "+", $2, "Alloc", NR, "duplicate:", allocated[$2];
8 allocated[$2] = $3;
10 $1 == "-" { if (allocated[$2] != "") {
11 allocated[$2] = "";
12 if (allocated[$2] != "")
13 print "DELETE FAILED", $2, allocated[$2];
17 $1 == "<" { if (allocated[$2] != "")
18 allocated[$2] = "";
22 $1 == ">" { if (allocated[$2] != ""
    [all...]
  /external/clang/test/SemaObjC/
invalid-objc-decls-1.m 4 Super s1; // expected-error{{interface type cannot be statically allocated}}
6 extern Super e1; // expected-error{{interface type cannot be statically allocated}}
9 Super s1; // expected-error{{interface type cannot be statically allocated}}
16 Super ivar1; // expected-error{{interface type cannot be statically allocated}}
21 Super objField; // expected-error{{interface type cannot be statically allocated}}
26 Super<P1> ivar1; // expected-error{{interface type cannot be statically allocated}}
32 Super p1; // expected-error{{interface type cannot be statically allocated}}
39 @property(readonly) NSMutableSet annotations; // expected-error{{interface type cannot be statically allocated}}
  /external/valgrind/main/memcheck/tests/
filter_allocs 5 -e "s/total heap usage: [0-9,]* allocs, [0-9,]* frees, [0-9,]* bytes allocated/total heap usage: ... allocs, ... frees, ... bytes allocated/"
leak-pool.c 17 size_t allocated; member in struct:pool
26 assert(p->used + n < p->allocated);
37 p->allocated = 4096;
39 p->buf = malloc(p->allocated);
41 memset(p->buf, 0, p->allocated);
43 VALGRIND_MAKE_MEM_NOACCESS(p->buf, p->allocated);
  /external/clang/test/Analysis/
free.c 7 free(a); // expected-warning {{Argument to free() is the address of the local variable 'a', which is not memory allocated by malloc()}}
12 free(&a); // expected-warning {{Argument to free() is the address of the local variable 'a', which is not memory allocated by malloc()}}
17 free(a); // expected-warning {{Argument to free() is the address of the static variable 'a', which is not memory allocated by malloc()}}
30 free((void*)1000); // expected-warning {{Argument to free() is a constant address (1000), which is not memory allocated by malloc()}}
44 free(&&label); // expected-warning {{Argument to free() is the address of the label 'label', which is not memory allocated by malloc()}}
48 free((void*)&t10); // expected-warning {{Argument to free() is the address of the function 't10', which is not memory allocated by malloc()}}
53 free(p); // expected-warning {{Argument to free() was allocated by alloca(), not malloc()}}
57 free(^{return;}); // expected-warning {{Argument to free() is a block, which is not memory allocated by malloc()}}
61 free(&a); // expected-warning {{Argument to free() is the address of the parameter 'a', which is not memory allocated by malloc()}}
66 free(someGlobal); // expected-warning {{Argument to free() is the address of the global variable 'someGlobal', which is not memory allocated by malloc()}
    [all...]
  /external/skia/include/core/
SkChunkAlloc.h 20 /** Free up all allocated blocks. This invalidates all returned
25 /** Reuse all allocated blocks. This invalidates all returned
27 of the privately allocated blocks. This is more efficient
42 /** Call this to unalloc the most-recently allocated ptr by alloc(). On
  /external/valgrind/main/memcheck/tests/ppc32/
power_ISA2_05.stderr.exp 5 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
15 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
25 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
35 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
45 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
  /external/valgrind/main/memcheck/tests/ppc64/
power_ISA2_05.stderr.exp 5 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
15 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
25 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
35 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
45 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
  /frameworks/av/libvideoeditor/vss/common/inc/
M4READER_Amr.h 38 * @param pMediaType : Pointer on a M4READER_MediaType (allocated by the caller)
41 * implemented by this reader. The interface is a structure allocated
42 * by the function and must be un-allocated by the caller.
44 * implemented by this reader. The interface is a structure allocated
45 * by the function and must be un-allocated by the caller.
M4READER_Pcm.h 37 * @param pMediaType : Pointer on a M4READER_MediaType (allocated by the caller)
40 * implemented by this reader. The interface is a structure allocated
41 * by the function and must be un-allocated by the caller.
43 * implemented by this reader. The interface is a structure allocated
44 * by the function and must be un-allocated by the caller.
  /external/strace/
scsi.c 19 int allocated, i; local
23 allocated = (len > max_strlen) ? max_strlen : len;
25 (buf = malloc(allocated)) == NULL ||
26 umoven(tcp, (unsigned long) addr, allocated, (char *) buf) < 0) {
32 for (i = 1; i < allocated; ++i)
35 if (allocated != len)
  /bionic/libc/include/
malloc.h 49 size_t arena; /* non-mmapped space allocated from system */
54 size_t usmblks; /* maximum total allocated space */
56 size_t uordblks; /* total allocated space */
68 an allocated chunk, which may be more than you requested (although
71 overwriting other allocated objects. This is not a particularly great
85 number of bytes allocated via malloc (or realloc, etc) but not yet
86 freed. Note that this is the number of bytes allocated, not the
90 zero even when no user-level chunks are allocated.
  /development/ndk/platforms/android-3/include/
malloc.h 49 size_t arena; /* non-mmapped space allocated from system */
54 size_t usmblks; /* maximum total allocated space */
56 size_t uordblks; /* total allocated space */
68 an allocated chunk, which may be more than you requested (although
71 overwriting other allocated objects. This is not a particularly great
85 number of bytes allocated via malloc (or realloc, etc) but not yet
86 freed. Note that this is the number of bytes allocated, not the
90 zero even when no user-level chunks are allocated.
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/
malloc.h 49 size_t arena; /* non-mmapped space allocated from system */
54 size_t usmblks; /* maximum total allocated space */
56 size_t uordblks; /* total allocated space */
68 an allocated chunk, which may be more than you requested (although
71 overwriting other allocated objects. This is not a particularly great
85 number of bytes allocated via malloc (or realloc, etc) but not yet
86 freed. Note that this is the number of bytes allocated, not the
90 zero even when no user-level chunks are allocated.
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/
malloc.h 49 size_t arena; /* non-mmapped space allocated from system */
54 size_t usmblks; /* maximum total allocated space */
56 size_t uordblks; /* total allocated space */
68 an allocated chunk, which may be more than you requested (although
71 overwriting other allocated objects. This is not a particularly great
85 number of bytes allocated via malloc (or realloc, etc) but not yet
86 freed. Note that this is the number of bytes allocated, not the
90 zero even when no user-level chunks are allocated.
  /prebuilts/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
malloc.h 49 size_t arena; /* non-mmapped space allocated from system */
54 size_t usmblks; /* maximum total allocated space */
56 size_t uordblks; /* total allocated space */
68 an allocated chunk, which may be more than you requested (although
71 overwriting other allocated objects. This is not a particularly great
85 number of bytes allocated via malloc (or realloc, etc) but not yet
86 freed. Note that this is the number of bytes allocated, not the
90 zero even when no user-level chunks are allocated.
  /prebuilts/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
malloc.h 49 size_t arena; /* non-mmapped space allocated from system */
54 size_t usmblks; /* maximum total allocated space */
56 size_t uordblks; /* total allocated space */
68 an allocated chunk, which may be more than you requested (although
71 overwriting other allocated objects. This is not a particularly great
85 number of bytes allocated via malloc (or realloc, etc) but not yet
86 freed. Note that this is the number of bytes allocated, not the
90 zero even when no user-level chunks are allocated.
  /prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
malloc.h 49 size_t arena; /* non-mmapped space allocated from system */
54 size_t usmblks; /* maximum total allocated space */
56 size_t uordblks; /* total allocated space */
68 an allocated chunk, which may be more than you requested (although
71 overwriting other allocated objects. This is not a particularly great
85 number of bytes allocated via malloc (or realloc, etc) but not yet
86 freed. Note that this is the number of bytes allocated, not the
90 zero even when no user-level chunks are allocated.
  /prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
malloc.h 49 size_t arena; /* non-mmapped space allocated from system */
54 size_t usmblks; /* maximum total allocated space */
56 size_t uordblks; /* total allocated space */
68 an allocated chunk, which may be more than you requested (although
71 overwriting other allocated objects. This is not a particularly great
85 number of bytes allocated via malloc (or realloc, etc) but not yet
86 freed. Note that this is the number of bytes allocated, not the
90 zero even when no user-level chunks are allocated.
  /prebuilts/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/
malloc.h 49 size_t arena; /* non-mmapped space allocated from system */
54 size_t usmblks; /* maximum total allocated space */
56 size_t uordblks; /* total allocated space */
68 an allocated chunk, which may be more than you requested (although
71 overwriting other allocated objects. This is not a particularly great
85 number of bytes allocated via malloc (or realloc, etc) but not yet
86 freed. Note that this is the number of bytes allocated, not the
90 zero even when no user-level chunks are allocated.
  /prebuilts/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
malloc.h 49 size_t arena; /* non-mmapped space allocated from system */
54 size_t usmblks; /* maximum total allocated space */
56 size_t uordblks; /* total allocated space */
68 an allocated chunk, which may be more than you requested (although
71 overwriting other allocated objects. This is not a particularly great
85 number of bytes allocated via malloc (or realloc, etc) but not yet
86 freed. Note that this is the number of bytes allocated, not the
90 zero even when no user-level chunks are allocated.
  /prebuilts/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/
malloc.h 49 size_t arena; /* non-mmapped space allocated from system */
54 size_t usmblks; /* maximum total allocated space */
56 size_t uordblks; /* total allocated space */
68 an allocated chunk, which may be more than you requested (although
71 overwriting other allocated objects. This is not a particularly great
85 number of bytes allocated via malloc (or realloc, etc) but not yet
86 freed. Note that this is the number of bytes allocated, not the
90 zero even when no user-level chunks are allocated.
  /prebuilts/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/
malloc.h 49 size_t arena; /* non-mmapped space allocated from system */
54 size_t usmblks; /* maximum total allocated space */
56 size_t uordblks; /* total allocated space */
68 an allocated chunk, which may be more than you requested (although
71 overwriting other allocated objects. This is not a particularly great
85 number of bytes allocated via malloc (or realloc, etc) but not yet
86 freed. Note that this is the number of bytes allocated, not the
90 zero even when no user-level chunks are allocated.
  /prebuilts/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/
malloc.h 49 size_t arena; /* non-mmapped space allocated from system */
54 size_t usmblks; /* maximum total allocated space */
56 size_t uordblks; /* total allocated space */
68 an allocated chunk, which may be more than you requested (although
71 overwriting other allocated objects. This is not a particularly great
85 number of bytes allocated via malloc (or realloc, etc) but not yet
86 freed. Note that this is the number of bytes allocated, not the
90 zero even when no user-level chunks are allocated.
  /prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-arm/usr/include/
malloc.h 49 size_t arena; /* non-mmapped space allocated from system */
54 size_t usmblks; /* maximum total allocated space */
56 size_t uordblks; /* total allocated space */
68 an allocated chunk, which may be more than you requested (although
71 overwriting other allocated objects. This is not a particularly great
85 number of bytes allocated via malloc (or realloc, etc) but not yet
86 freed. Note that this is the number of bytes allocated, not the
90 zero even when no user-level chunks are allocated.

Completed in 1715 milliseconds

1 2 3 4 5 6 7 8 91011>>