HomeSort by relevance Sort by last modified time
    Searched full:alloc (Results 601 - 625 of 3588) sorted by null

<<21222324252627282930>>

  /external/chromium_org/chrome/browser/ui/cocoa/
screen_capture_notification_ui_cocoa.mm 60 windowController_.reset([[ScreenCaptureNotificationController alloc]
76 [[NSWindow alloc] initWithContentRect:ui::kWindowSizeDeterminedLater
122 [[ScreenCaptureNotificationView alloc]
127 stopButton_.reset([[BlueLabelButton alloc] initWithFrame:NSZeroRect]);
139 base::scoped_nsobject<WindowGripView> gripView([[WindowGripView alloc] init]);
158 [[NSTextField alloc] initWithFrame:ui::kWindowSizeDeterminedLater]);
  /external/chromium_org/chrome/installer/mini_installer/
decompress.cc 13 FNALLOC(Alloc) {
23 // The returned string will have been allocated with Alloc(), so free it
31 ret = reinterpret_cast<char*>(Alloc(size * sizeof(ret[0])));
45 ret = reinterpret_cast<wchar_t*>(Alloc(size * sizeof(ret[0])));
168 typedef HFDI (DIAMONDAPI* FDICreateFn)(PFNALLOC alloc, PFNFREE free,
248 HFDI fdi = g_FDICreate(&Alloc, &Free, &Open, &Read, &Write, &Close, &Seek,
  /external/chromium_org/gpu/command_buffer/client/
ring_buffer.h 20 // with Alloc and then a is freed pending a token with FreePendingToken. Old
45 Offset Alloc(unsigned int size);
138 void* Alloc(unsigned int size) {
139 RingBuffer::Offset offset = allocator_.Alloc(size);
146 // This is a type-safe version of Alloc, returning a typed pointer.
155 return static_cast<T*>(Alloc(count * sizeof(T)));
transfer_buffer.h 35 // Hiding Alloc from RingBufferWrapper
36 void* Alloc(unsigned int size) {
37 return RingBufferWrapper::Alloc(RoundToAlignment(size));
79 // Note: Alloc will fail if it can not return size bytes.
80 virtual void* Alloc(unsigned int size) = 0;
108 virtual void* Alloc(unsigned int size) OVERRIDE;
  /external/chromium_org/third_party/lzma_sdk/
LzFind.c 17 static void LzInWindow_Free(CMatchFinder *p, ISzAlloc *alloc)
21 alloc->Free(alloc, p->bufferBase);
28 static int LzInWindow_Create(CMatchFinder *p, UInt32 keepSizeReserv, ISzAlloc *alloc)
38 LzInWindow_Free(p, alloc);
40 p->bufferBase = (Byte *)alloc->Alloc(alloc, (size_t)blockSize);
151 static void MatchFinder_FreeThisClassMemory(CMatchFinder *p, ISzAlloc *alloc)
153 alloc->Free(alloc, p->hash)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
compat.hpp 44 alloc(int n, const T *q, int m) { function in class:clover::compat::vector
65 vector(const vector &v) : p(alloc(v.n, v.p, v.n)), n(v.n) {
68 vector(T *p, size_t n) : p(alloc(n, p, n)), n(n) {
73 p(alloc(v.size(), &*v.begin(), v.size())), n(v.size()) {
84 p = alloc(v.n, v.p, v.n);
93 T *q = alloc(m, p, n);
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzFind.c 18 static void LzInWindow_Free(CMatchFinder *p, ISzAlloc *alloc)
22 alloc->Free(alloc, p->bufferBase);
29 static int LzInWindow_Create(CMatchFinder *p, UInt32 keepSizeReserv, ISzAlloc *alloc)
39 LzInWindow_Free(p, alloc);
41 p->bufferBase = (Byte *)alloc->Alloc(alloc, (size_t)blockSize);
152 static void MatchFinder_FreeThisClassMemory(CMatchFinder *p, ISzAlloc *alloc)
154 alloc->Free(alloc, p->hash)
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkRegionPriv.h 62 static RunHead* Alloc(int count) {
64 //SkDEBUGF(("************** gRgnAllocCounter::alloc %d\n", gRgnAllocCounter));
77 static RunHead* Alloc(int count, int yspancount, int intervalCount) {
81 RunHead* head = Alloc(count);
99 // We need to alloc & copy the current region before we call
102 writable = Alloc(fRunCount, fYSpanCount, fIntervalCount);
  /external/chromium_org/ui/message_center/cocoa/
popup_controller.mm 101 [[MCPopupWindow alloc] initWithContentRect:ui::kWindowSizeDeterminedLater
110 [[MCNotificationController alloc] initWithNotification:notification
127 [[CrTrackingArea alloc] initWithRect:NSZeroRect
217 boundsAnimation_.reset([[NSViewAnimation alloc]
242 boundsAnimation_.reset([[NSViewAnimation alloc]
267 boundsAnimation_.reset([[NSViewAnimation alloc]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramStateTrait.h 87 static void *CreateContext(llvm::BumpPtrAllocator& Alloc) {
88 return new typename data_type::Factory(Alloc);
138 static void *CreateContext(llvm::BumpPtrAllocator& Alloc) {
139 return new typename data_type::Factory(Alloc);
177 static void *CreateContext(llvm::BumpPtrAllocator& Alloc) {
178 return new typename data_type::Factory(Alloc);
  /external/clang/test/Analysis/
delegates.m 22 extern CFStringRef CFStringCreateWithFormat(CFAllocatorRef alloc, CFDictionaryRef formatOptions, CFStringRef format, ...);
49 + (id)alloc;
100 NSString *str = [[NSString alloc] init]; // no-warning
105 NSString *str = [[NSString alloc] init]; // no-warning
126 (void)[[ObjectThatRequiresDelegate alloc] initWithDelegate:self];
127 (void)[[ObjectThatRequiresDelegate alloc] initWithNumber:0 delegate:self];
  /external/clang/test/SemaObjC/
arc-property-lifetime.m 158 + (id) alloc;
165 f.prop = [[Baz alloc] init];
166 f.strong_prop = [[Baz alloc] init];
167 f.strong_attr_prop = [[Baz alloc] init];
168 f.realy_strong_attr_prop = [[Baz alloc] init];
169 f.implicit = [[Baz alloc] init];
  /external/lzma/C/
LzFind.c 17 static void LzInWindow_Free(CMatchFinder *p, ISzAlloc *alloc)
21 alloc->Free(alloc, p->bufferBase);
28 static int LzInWindow_Create(CMatchFinder *p, UInt32 keepSizeReserv, ISzAlloc *alloc)
38 LzInWindow_Free(p, alloc);
40 p->bufferBase = (Byte *)alloc->Alloc(alloc, (size_t)blockSize);
151 static void MatchFinder_FreeThisClassMemory(CMatchFinder *p, ISzAlloc *alloc)
153 alloc->Free(alloc, p->hash);
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/core/
compat.hpp 44 alloc(int n, const T *q, int m) { function in class:clover::compat::vector
65 vector(const vector &v) : p(alloc(v.n, v.p, v.n)), n(v.n) {
68 vector(T *p, size_t n) : p(alloc(n, p, n)), n(n) {
73 p(alloc(v.size(), &*v.begin(), v.size())), n(v.size()) {
84 p = alloc(v.n, v.p, v.n);
93 T *q = alloc(m, p, n);
  /external/skia/src/core/
SkRegionPriv.h 62 static RunHead* Alloc(int count) {
64 //SkDEBUGF(("************** gRgnAllocCounter::alloc %d\n", gRgnAllocCounter));
77 static RunHead* Alloc(int count, int yspancount, int intervalCount) {
81 RunHead* head = Alloc(count);
99 // We need to alloc & copy the current region before we call
102 writable = Alloc(fRunCount, fYSpanCount, fIntervalCount);
  /external/valgrind/main/memcheck/tests/
mismatches.stderr.exp 4 Address 0x........ is 0 bytes inside a block of size 10 alloc'd
11 Address 0x........ is 0 bytes inside a block of size 10 alloc'd
18 Address 0x........ is 0 bytes inside a block of size 40 alloc'd
25 Address 0x........ is 0 bytes inside a block of size 40 alloc'd
32 Address 0x........ is 0 bytes inside a block of size 4 alloc'd
39 Address 0x........ is 0 bytes inside a block of size 4 alloc'd
  /frameworks/rs/driver/
rsdMeshObj.cpp 136 const Allocation *alloc = mRSMesh->mHal.state.vertexBuffers[ct]; local
137 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
139 rsdAllocationSyncAll(rsc, alloc, RS_ALLOCATION_USAGE_SCRIPT);
146 Allocation *alloc = mRSMesh->mHal.state.vertexBuffers[allocIndex]; local
147 DrvAllocation *drvAlloc = (DrvAllocation *)alloc->mHal.drv;
154 mAttribs[ct].ptr = (const uint8_t*)alloc->mHal.drvState.lod[0].mallocPtr;
  /frameworks/rs/
rsAllocation.cpp 64 rsc->setError(RS_ERROR_FATAL_DRIVER, "Allocation::Allocation, alloc failure");
375 Allocation *alloc = Allocation::createAllocation(rsc, type, RS_ALLOCATION_USAGE_SCRIPT); local
381 uint32_t packedSize = alloc->getPackedSize();
385 ObjectBase::checkDelete(alloc);
390 alloc->assignName(name);
394 alloc->data(rsc, 0, 0, count, stream->getPtr() + stream->getPos(), dataSize);
396 alloc->unpackVec3Allocation(rsc, stream->getPtr() + stream->getPos(), dataSize);
400 return alloc;
463 intptr_t ip = (intptr_t)alloc;
478 mBufferListener->alloc = this
530 Allocation *alloc = static_cast<Allocation *>(va); local
597 Allocation * alloc = Allocation::createAllocation(rsc, static_cast<Type *>(vtype), usages, mips, (void*)ptr); local
699 Allocation *alloc = static_cast<Allocation *>(valloc); local
705 Allocation *alloc = static_cast<Allocation *>(valloc); local
710 Allocation *alloc = static_cast<Allocation *>(valloc); local
715 Allocation *alloc = static_cast<Allocation *>(valloc); local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/
eq.pass.cpp 12 // template <class Key, class T, class Hash, class Pred, class Alloc>
14 // operator==(const unordered_map<Key, T, Hash, Pred, Alloc>& x,
15 // const unordered_map<Key, T, Hash, Pred, Alloc>& y);
17 // template <class Key, class T, class Hash, class Pred, class Alloc>
19 // operator!=(const unordered_map<Key, T, Hash, Pred, Alloc>& x,
20 // const unordered_map<Key, T, Hash, Pred, Alloc>& y);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/
eq.pass.cpp 12 // template <class Key, class T, class Hash, class Pred, class Alloc>
14 // operator==(const unordered_multimap<Key, T, Hash, Pred, Alloc>& x,
15 // const unordered_multimap<Key, T, Hash, Pred, Alloc>& y);
17 // template <class Key, class T, class Hash, class Pred, class Alloc>
19 // operator!=(const unordered_multimap<Key, T, Hash, Pred, Alloc>& x,
20 // const unordered_multimap<Key, T, Hash, Pred, Alloc>& y);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/
eq.pass.cpp 12 // template <class Key, class Hash, class Pred, class Alloc>
14 // operator==(const unordered_multiset<Key, Hash, Pred, Alloc>& x,
15 // const unordered_multiset<Key, Hash, Pred, Alloc>& y);
17 // template <class Key, class Hash, class Pred, class Alloc>
19 // operator!=(const unordered_multiset<Key, Hash, Pred, Alloc>& x,
20 // const unordered_multiset<Key, Hash, Pred, Alloc>& y);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/
eq.pass.cpp 12 // template <class Key, class Hash, class Pred, class Alloc>
14 // operator==(const unordered_set<Key, Hash, Pred, Alloc>& x,
15 // const unordered_set<Key, Hash, Pred, Alloc>& y);
17 // template <class Key, class Hash, class Pred, class Alloc>
19 // operator!=(const unordered_set<Key, Hash, Pred, Alloc>& x,
20 // const unordered_set<Key, Hash, Pred, Alloc>& y);
  /art/runtime/gc/space/
space_test.cc 98 mirror::Object* ptr1 = space->Alloc(self, 1 * MB, &dummy);
102 mirror::Object* ptr2 = space->Alloc(self, 8 * MB, &dummy);
112 mirror::Object* ptr4 = space->Alloc(self, 8 * MB, &dummy);
135 space->Alloc(self, 1U * MB, &dummy);
136 space = space->CreateZygoteSpace("alloc space");
142 ptr1 = space->Alloc(self, 1 * MB, &dummy);
146 ptr2 = space->Alloc(self, 8 * MB, &dummy);
170 mirror::Object* ptr1 = space->Alloc(self, 1 * MB, &dummy);
174 mirror::Object* ptr2 = space->Alloc(self, 8 * MB, &dummy);
184 mirror::Object* ptr4 = space->Alloc(self, 8 * MB, &dummy)
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/content_settings/
collected_cookies_mac.mm 77 [[[CollectedCookiesSheetBridge alloc]
86 sheet_controller_ = [[CollectedCookiesWindowController alloc]
150 animation_.reset([[NSViewAnimation alloc] init]);
174 [[NSGradient alloc] initWithStartingColor:bannerStartingColor
202 detailsViewController_.reset([[CookieDetailsViewController alloc] init]);
363 icons_.reset([[NSMutableArray alloc] init]);
378 [[CocoaCookieTreeNode alloc] initWithNode:root]);
382 [[CocoaCookieTreeNode alloc] initWithNode:root]);
406 label = [[[NSString alloc] init] autorelease];
436 label = [[[NSString alloc] init] autorelease]
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ext/
hash_set 22 class Alloc = allocator<Value>>
31 typedef Alloc allocator_type;
93 template <class Value, class Hash, class Pred, class Alloc>
94 void swap(hash_set<Value, Hash, Pred, Alloc>& x,
95 hash_set<Value, Hash, Pred, Alloc>& y);
97 template <class Value, class Hash, class Pred, class Alloc>
99 operator==(const hash_set<Value, Hash, Pred, Alloc>& x,
100 const hash_set<Value, Hash, Pred, Alloc>& y);
102 template <class Value, class Hash, class Pred, class Alloc>
104 operator!=(const hash_set<Value, Hash, Pred, Alloc>& x
    [all...]

Completed in 615 milliseconds

<<21222324252627282930>>