HomeSort by relevance Sort by last modified time
    Searched full:allocated (Results 1 - 25 of 6546) 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/compiler-rt/lib/sanitizer_common/tests/
standalone_malloc_test.cc 21 vector<pair<char *, size_t> > allocated; local
22 allocated.reserve(kNumIters);
36 allocated.push_back(make_pair(x, size));
39 if (allocated.empty()) continue;
40 size_t slot = i % allocated.size();
41 char *p = allocated[slot].first;
43 size_t size = allocated[slot].second;
45 swap(allocated[slot], allocated.back());
46 allocated.pop_back()
    [all...]
  /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 {{Memory allocated by alloca() should not be deallocated}}
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...]
MismatchedDeallocator-checker-test.mm 23 delete p; // expected-warning{{Memory allocated by malloc() should be deallocated by free(), not 'delete'}}
29 delete q; // expected-warning{{Memory allocated by realloc() should be deallocated by free(), not 'delete'}}
34 delete p; // expected-warning{{Memory allocated by calloc() should be deallocated by free(), not 'delete'}}
39 delete p; // expected-warning{{Memory allocated by strdup() should be deallocated by free(), not 'delete'}}
44 delete p; // expected-warning{{Memory allocated by my_malloc() should be deallocated by free(), not 'delete'}}
49 operator delete(p); // expected-warning{{Memory allocated by malloc() should be deallocated by free(), not operator delete}}
54 delete[] p; // expected-warning{{Memory allocated by malloc() should be deallocated by free(), not 'delete[]'}}
59 operator delete[](p); // expected-warning{{Memory allocated by malloc() should be deallocated by free(), not operator delete[]}}
65 free(p); // expected-warning{{Memory allocated by 'new' should be deallocated by 'delete', not free()}}
70 free(p); // expected-warning{{Memory allocated by operator new should be deallocated by 'delete', not free()}
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/util/
arena.h 20 // Return a pointer to a newly allocated memory block of "bytes" bytes.
26 // Returns an estimate of the total memory usage of data allocated
27 // by the arena (including space allocated but not yet used for user
41 // Array of new[] allocated memory blocks
44 // Bytes of memory in blocks allocated so far
arena_test.cc 19 std::vector<std::pair<size_t, char*> > allocated; local
48 allocated.push_back(std::make_pair(s, r));
54 for (size_t i = 0; i < allocated.size(); i++) {
55 size_t num_bytes = allocated[i].first;
56 const char* p = allocated[i].second;
  /external/bluetooth/bluedroid/bta/jv/
bta_jv_cfg.c 40 * p_bta_jv_cfg->p_sdp_db must be allocated/stay allocated
42 * p_bta_jv_cfg->p_sdp_raw_data can be allocated before calling BTA_JvStartDiscovery
43 * it can be de-allocated after the last call to access the database */
  /external/valgrind/main/memcheck/tests/ppc32/
power_ISA2_05.stderr.exp 5 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
  /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.
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
listobject.h 27 /* ob_item contains space for 'allocated' elements. The number
30 * 0 <= ob_size <= allocated
32 * ob_item == NULL implies ob_size == allocated == 0
33 * list.sort() temporarily sets allocated to -1 to detect mutations.
38 Py_ssize_t allocated; member in struct:__anon60462
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
listobject.h 27 /* ob_item contains space for 'allocated' elements. The number
30 * 0 <= ob_size <= allocated
32 * ob_item == NULL implies ob_size == allocated == 0
33 * list.sort() temporarily sets allocated to -1 to detect mutations.
38 Py_ssize_t allocated; member in struct:__anon60585
  /external/bluetooth/bluedroid/stack/avct/
avct_ccb.c 39 ** Returns pointer to the ccb, or NULL if none could be allocated.
49 if (!p_ccb->allocated)
51 p_ccb->allocated = AVCT_ALOC_LCB;
137 /* verify ccb is allocated */
138 if (!p_ccb->allocated)
141 AVCT_TRACE_WARNING1("ccb %d not allocated", idx);
  /external/clang/test/CodeGenCXX/
microsoft-abi-array-cookies.cpp 27 // CHECK: [[ALLOCATED:%.*]] = call noalias i8* @"\01??_U@YAPAXI@Z"(i32 46)
29 // CHECK: [[COOKIE:%.*]] = bitcast i8* [[ALLOCATED]] to i32*
31 // CHECK: [[ARRAY:%.*]] = getelementptr inbounds i8* [[ALLOCATED]], i64 4
49 // CHECK: [[ALLOCATED:%.*]] = call noalias i8* @"\01??_U@YAPAXI@Z"(i32 344)
51 // CHECK: [[COOKIE:%.*]] = bitcast i8* [[ALLOCATED]] to i32*
53 // CHECK: [[ARRAY:%.*]] = getelementptr inbounds i8* [[ALLOCATED]], i64 8
  /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)
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prmem.h 60 ** by PRUint32.) Memory allocated by PR_Malloc, PR_Calloc, or PR_Realloc
81 ** INPUTS: _size: size in bytes of item to be allocated
82 ** OUTPUTS: untyped pointer to the node allocated
104 ** OUTPUTS: pointer to node allocated
105 ** RETURN: pointer to node allocated
113 ** and sets the allocated memory to all 0x00.
115 ** OUTPUTS: pointer to node allocated
116 ** RETURN: pointer to node allocated
124 ** and sets the allocated memory to all 0x00.
134 ** PR_DELETE() unallocates an object previosly allocated via PR_NEW(
    [all...]
  /external/chromium_org/content/common/gpu/
gpu_memory_uma_stats.h 23 // The number of bytes currently allocated.
26 // The maximum number of bytes ever allocated at once.
  /external/chromium_org/gpu/command_buffer/service/
gl_surface_mock.h 28 MOCK_METHOD1(SetBackbufferAllocation, bool(bool allocated));
29 MOCK_METHOD1(SetFrontbufferAllocation, void(bool allocated));
  /prebuilts/ndk/4/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/4/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/4/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.

Completed in 463 milliseconds

1 2 3 4 5 6 7 8 91011>>