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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/Inputs/
typo.h 4 + (id)alloc;
  /external/valgrind/main/massif/tests/
alloc-fns-B.vgtest 1 prog: alloc-fns
2 vgopts: --stacks=no --time-unit=B --heap-admin=0 --alloc-fn=a4 --alloc-fn=b4 --alloc-fn=b3 --alloc-fn=c4 --alloc-fn=c3 --alloc-fn=c2 --alloc-fn=d4 --alloc-fn=d3 --alloc-fn=d2 --alloc-fn=d1 --massif-out-file=massif.ou
    [all...]
deep-D.vgtest 2 vgopts: --stacks=no --time-unit=B --alloc-fn=a1 --alloc-fn=a2 --alloc-fn=a3 --alloc-fn=a4 --alloc-fn=a5 --alloc-fn=a6 --alloc-fn=a7 --alloc-fn=a8 --alloc-fn=a9 --alloc-fn=a10 --alloc-fn=a11 --alloc-fn=a12 --alloc-fn=main --depth=20 --massif-out-file=massif.ou
    [all...]
deep-B.vgtest 2 vgopts: --stats=yes --stacks=no --time-unit=B --alloc-fn=a6 --alloc-fn=a7 --alloc-fn=a8 --alloc-fn=a9 --alloc-fn=a10 --alloc-fn=a11 --alloc-fn=a12 -v -v --depth=8 --massif-out-file=massif.out
deep-C.vgtest 2 vgopts: --stacks=no --time-unit=B --alloc-fn=a3 --alloc-fn=a4 --alloc-fn=a5 --alloc-fn=a6 --alloc-fn=a7 --alloc-fn=a8 --alloc-fn=a9 --alloc-fn=a10 --alloc-fn=a11 --alloc-fn=a12 -v -v --stats=yes --depth=8 --massif-out-file=massif.ou
    [all...]
filter_stderr 10 # Remove AIX-only alloc-fns
13 # Remove Darwin-only alloc-fns
  /external/clang/test/SemaObjC/
self-in-function.m 11 + (id) alloc;
16 [self alloc];
18 [self alloc];
24 [y alloc];
class-message-protocol-lookup.m 7 + (id)alloc;
15 + (id)alloc;
21 Class<TestProtocol> c = [c alloc]; // expected-warning {{class method '+alloc' not found (return type defaults to 'id')}}
23 Class<Test2Protocol> c2 = [c2 alloc]; // ok
25 + (id)alloc { return 0; }
30 Class<TestProtocol> c = [c alloc]; // expected-warning {{class method '+alloc' not found (return type defaults to 'id')}}
32 Class<Test2Protocol> c2 = [c2 alloc]; // ok
  /external/clang/test/PCH/
objc_import.h 4 + alloc; variable
objc_methods.h 4 + alloc; variable
objc_property.h 8 + alloc;
method_pool.h 16 + alloc; variable
25 + alloc { return 0; }
  /system/extras/ext4_utils/
allocate.h 31 int block_allocation_num_regions(struct block_allocation *alloc);
32 int block_allocation_len(struct block_allocation *alloc);
34 void reduce_allocation(struct block_allocation *alloc, u32 len);
35 u32 get_block(struct block_allocation *alloc, u32 block);
36 u32 get_oob_block(struct block_allocation *alloc, u32 block);
37 void get_next_region(struct block_allocation *alloc);
38 void get_region(struct block_allocation *alloc, u32 *block, u32 *len);
46 void free_alloc(struct block_allocation *alloc);
47 int reserve_oob_blocks(struct block_allocation *alloc, int blocks);
48 int advance_blocks(struct block_allocation *alloc, int blocks)
    [all...]
indirect.c 29 static u8 *create_backing(struct block_allocation *alloc,
40 for (; alloc != NULL && backing_len > 0; get_next_region(alloc)) {
44 get_region(alloc, &region_block, &region_len);
56 static void reserve_indirect_block(struct block_allocation *alloc, int len)
58 if (reserve_oob_blocks(alloc, 1)) {
63 if (advance_blocks(alloc, len)) {
69 static void reserve_dindirect_block(struct block_allocation *alloc, int len)
71 if (reserve_oob_blocks(alloc, 1)) {
79 reserve_indirect_block(alloc, ind_block_len)
388 struct block_allocation *alloc = allocate_blocks(block_len + indirect_len); local
401 struct block_allocation *alloc; local
486 struct block_allocation *alloc; local
    [all...]
extent.c 29 static u8 *extent_create_backing(struct block_allocation *alloc,
37 for (; alloc != NULL && backing_len > 0; get_next_region(alloc)) {
41 get_region(alloc, &region_block, &region_len);
55 static void extent_create_backing_file(struct block_allocation *alloc,
59 for (; alloc != NULL && backing_len > 0; get_next_region(alloc)) {
63 get_region(alloc, &region_block, &region_len);
77 struct block_allocation *alloc = allocate_blocks(block_len + 1); local
83 if (alloc == NULL)
181 struct block_allocation *alloc; local
206 struct block_allocation *alloc; local
222 struct block_allocation *alloc; local
    [all...]
  /frameworks/base/libs/rs/driver/
rsdAllocation.cpp 76 static void Update2DTexture(const Context *rsc, const Allocation *alloc, const void *ptr,
79 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
85 if (alloc->mHal.state.hasFaces) {
92 static void Upload2DTexture(const Context *rsc, const Allocation *alloc, bool isFirstUpload) {
93 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
99 if (alloc->mHal.state.hasFaces) {
105 for (uint32_t lod = 0; lod < alloc->mHal.state.type->getLODCount(); lod++) {
107 p += alloc->mHal.state.type->getLODFaceOffset(lod, (RsAllocationCubemapFace)face, 0, 0);
110 if (alloc->mHal.state.hasFaces) {
116 alloc->mHal.state.type->getLODDimX(lod)
    [all...]
  /external/llvm/unittests/Support/
AllocatorTest.cpp 20 BumpPtrAllocator Alloc;
21 int *a = (int*)Alloc.Allocate(sizeof(int), 0);
22 int *b = (int*)Alloc.Allocate(sizeof(int) * 10, 0);
23 int *c = (int*)Alloc.Allocate(sizeof(int), 0);
32 EXPECT_EQ(1U, Alloc.GetNumSlabs());
37 BumpPtrAllocator Alloc(4096, 4096);
38 Alloc.Allocate(3000, 0);
39 EXPECT_EQ(1U, Alloc.GetNumSlabs());
40 Alloc.Allocate(3000, 0);
41 EXPECT_EQ(2U, Alloc.GetNumSlabs())
    [all...]
  /external/clang/test/CodeCompletion/
templates.cpp 8 template<typename T, typename Alloc = std::allocator<T> >
9 class vector : Alloc {
14 template<typename Alloc> class vector<bool, Alloc>;
22 // CHECK-CC1-NEXT: vector<<#typename T#>{#, <#typename Alloc#>#}>
  /external/clang/test/ARCMT/
atautorelease-3.m 8 +alloc;
18 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
19 NSAutoreleasePool *chunkPool = [[NSAutoreleasePool alloc] init];
21 chunkPool = [[NSAutoreleasePool alloc] init];
30 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
31 NSAutoreleasePool *chunkPool = [[NSAutoreleasePool alloc] init];
33 chunkPool = [[NSAutoreleasePool alloc] init];
  /external/clang/test/CodeGenObjC/
no-vararg-messaging.m 6 +(id)alloc;
16 [[[[[[Foo alloc] init] retain] autorelease] self] release];
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/
container_base_dispatch.hpp 108 typename Policy_Tl, typename Alloc>
111 template<typename Key, typename Mapped, typename Policy_Tl, typename Alloc>
113 Policy_Tl, Alloc>
122 typedef lu_map_data_<Key, Mapped, at0t, Alloc, at1t> type;
125 template<typename Key, typename Policy_Tl, typename Alloc>
127 Policy_Tl, Alloc>
136 typedef lu_map_no_data_<Key, null_mapped_type, at0t, Alloc, at1t> type;
139 template<typename Key, typename Mapped, typename Policy_Tl, typename Alloc>
140 struct container_base_dispatch<Key, Mapped, pat_trie_tag, Policy_Tl, Alloc>
147 typedef pat_trie_data_<Key, Mapped, at1t, Alloc> type
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/
container_base_dispatch.hpp 108 typename Policy_Tl, typename Alloc>
111 template<typename Key, typename Mapped, typename Policy_Tl, typename Alloc>
113 Policy_Tl, Alloc>
122 typedef lu_map_data_<Key, Mapped, at0t, Alloc, at1t> type;
125 template<typename Key, typename Policy_Tl, typename Alloc>
127 Policy_Tl, Alloc>
136 typedef lu_map_no_data_<Key, null_mapped_type, at0t, Alloc, at1t> type;
139 template<typename Key, typename Mapped, typename Policy_Tl, typename Alloc>
140 struct container_base_dispatch<Key, Mapped, pat_trie_tag, Policy_Tl, Alloc>
147 typedef pat_trie_data_<Key, Mapped, at1t, Alloc> type
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/
container_base_dispatch.hpp 108 typename Policy_Tl, typename Alloc>
111 template<typename Key, typename Mapped, typename Policy_Tl, typename Alloc>
113 Policy_Tl, Alloc>
122 typedef lu_map_data_<Key, Mapped, at0t, Alloc, at1t> type;
125 template<typename Key, typename Policy_Tl, typename Alloc>
127 Policy_Tl, Alloc>
136 typedef lu_map_no_data_<Key, null_mapped_type, at0t, Alloc, at1t> type;
139 template<typename Key, typename Mapped, typename Policy_Tl, typename Alloc>
140 struct container_base_dispatch<Key, Mapped, pat_trie_tag, Policy_Tl, Alloc>
147 typedef pat_trie_data_<Key, Mapped, at1t, Alloc> type
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.alias/
p2.cpp 18 template<class T> struct Alloc {};
19 template<class T> using Vec = vector<T, Alloc<T>>;
27 void process(vector<T, Alloc<T>>& w) // expected-error {{redefinition of 'process'}}
34 void g(TT<int, Alloc<int>>);
42 // v's type is same as vector<int, Alloc<int>>.
43 using VTest = vector<int, Alloc<int>>;
  /external/clang/test/CodeGenCXX/
mangle-alias-template.cpp 3 template<typename T> struct alloc {}; struct
4 template<typename T> using Alloc = alloc<T>;
5 template<typename T, typename A = Alloc<T>> struct vector {};
27 Alloc<int> AC;
31 h<Alloc>(AC);

Completed in 1258 milliseconds

1 2 3 4 5 6 7 8 91011>>