/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
queue | 45 template <class Alloc> 46 explicit queue(const Alloc& a); 47 template <class Alloc> 48 queue(const container_type& c, const Alloc& a); 49 template <class Alloc> 50 queue(container_type&& c, const Alloc& a); 51 template <class Alloc> 52 queue(const queue& q, const Alloc& a); 53 template <class Alloc> 54 queue(queue&& q, const Alloc& a) [all...] |
/external/lzma/C/ |
XzEnc.c | 8 #include "Alloc.h"
124 SRes Xz_AddIndexRecord(CXzStream *p, UInt64 unpackSize, UInt64 totalSize, ISzAlloc *alloc)
133 blocks = alloc->Alloc(alloc, newSize);
139 Xz_Free(p, alloc);
205 void (*Free)(void *p, ISzAlloc *alloc);
206 SRes (*SetProps)(void *p, const Byte *props, size_t propSize, ISzAlloc *alloc);
353 ISzAlloc *alloc;
member in struct:__anon22627 358 static void Lzma2WithFilters_Construct(CLzma2WithFilters *p, ISzAlloc *alloc, ISzAlloc *bigAlloc) [all...] |
Lzma2Dec.c | 75 SRes Lzma2Dec_AllocateProbs(CLzma2Dec *p, Byte prop, ISzAlloc *alloc)
79 return LzmaDec_AllocateProbs(&p->decoder, props, LZMA_PROPS_SIZE, alloc);
82 SRes Lzma2Dec_Allocate(CLzma2Dec *p, Byte prop, ISzAlloc *alloc)
86 return LzmaDec_Allocate(&p->decoder, props, LZMA_PROPS_SIZE, alloc);
331 Byte prop, ELzmaFinishMode finishMode, ELzmaStatus *status, ISzAlloc *alloc)
346 RINOK(LzmaDec_AllocateProbs(&decoder.decoder, props, LZMA_PROPS_SIZE, alloc));
354 LzmaDec_FreeProbs(&decoder.decoder, alloc);
|
MtCoder.c | 139 if (p->mtCoder->alloc)
140 IAlloc_Free(p->mtCoder->alloc, p->outBuf);
143 if (p->mtCoder->alloc)
144 IAlloc_Free(p->mtCoder->alloc, p->inBuf);
150 { IAlloc_Free(p->mtCoder->alloc, buf); \
151 size = newSize; buf = (Byte *)IAlloc_Alloc(p->mtCoder->alloc, size); \
252 p->alloc = 0;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRCommonTree.m | 34 return [[ANTLRCommonTree alloc] initWithToken:[ANTLRCommonToken invalidToken]]; 40 return [[ANTLRCommonTree alloc] initWithToken:ANTLRCommonToken.INVALID_TOKEN]; 45 return [[ANTLRCommonTree alloc] init]; 50 return [[ANTLRCommonTree alloc] initWithTreeNode:aTree]; 55 return [[ANTLRCommonTree alloc] initWithToken:aToken]; 60 return [[ANTLRCommonTree alloc] initWithTokenType:(NSInteger)aTType]; 65 return [[ANTLRCommonTree alloc] initWithTokenType:(NSInteger)aTType Text:theText];
|
ANTLRMapElement.m | 43 return [[ANTLRMapElement alloc] init]; 48 return [[ANTLRMapElement alloc] initWithName:aName Type:aTType]; 53 return [[ANTLRMapElement alloc] initWithNode:aTType Node:aNode]; 58 return [[ANTLRMapElement alloc] initWithName:aName Node:aNode]; 63 return [[ANTLRMapElement alloc] initWithObj1:anObj1 Obj2:anObj2];
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_menu_bridge.mm | 27 controller_([[BookmarkMenuCocoaController alloc] initWithBridge:this]) { 176 NSMenuItem* items = [[[NSMenuItem alloc] 182 NSMenu* other_submenu = [[[NSMenu alloc] initWithTitle:title] 193 NSMenuItem* item = [[[NSMenuItem alloc] initWithTitle:empty_string 200 NSMenuItem* item = [[[NSMenuItem alloc] initWithTitle:title 207 NSMenu* submenu = [[[NSMenu alloc] initWithTitle:title] autorelease]; 247 NSMenuItem* item = [[[NSMenuItem alloc] initWithTitle:title
|
/external/chromium/chrome/browser/ui/cocoa/ |
search_engine_dialog_controller.mm | 156 ([[NSMutableArray alloc] init]); 204 [[[NSImageView alloc] initWithFrame:logoBounds] autorelease]; 215 [[[NSTextField alloc] initWithFrame:labelBounds] autorelease]; 221 [[NSMutableParagraphStyle alloc] init]); 230 [[NSAttributedString alloc] initWithString:value 240 [[NSButton alloc] initWithFrame:NSMakeRect(0, 0, 100, 34)]); 261 [[[NSView alloc] initWithFrame:containingViewFrame] autorelease];
|
/external/chromium_org/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_menu_bridge.mm | 28 controller_([[BookmarkMenuCocoaController alloc] initWithBridge:this 215 NSMenuItem* items = [[[NSMenuItem alloc] 221 NSMenu* submenu = [[[NSMenu alloc] initWithTitle:title] autorelease]; 233 [[[NSMenuItem alloc] initWithTitle:empty_string 241 [[[NSMenuItem alloc] initWithTitle:title 248 NSMenu* submenu = [[[NSMenu alloc] initWithTitle:title] autorelease]; 296 NSMenuItem* item = [[[NSMenuItem alloc] initWithTitle:title
|
/external/chromium_org/third_party/lzma_sdk/ |
Lzma2Dec.c | 75 SRes Lzma2Dec_AllocateProbs(CLzma2Dec *p, Byte prop, ISzAlloc *alloc) 79 return LzmaDec_AllocateProbs(&p->decoder, props, LZMA_PROPS_SIZE, alloc); 82 SRes Lzma2Dec_Allocate(CLzma2Dec *p, Byte prop, ISzAlloc *alloc) 86 return LzmaDec_Allocate(&p->decoder, props, LZMA_PROPS_SIZE, alloc); 331 Byte prop, ELzmaFinishMode finishMode, ELzmaStatus *status, ISzAlloc *alloc) 346 RINOK(LzmaDec_AllocateProbs(&decoder.decoder, props, LZMA_PROPS_SIZE, alloc)); 354 LzmaDec_FreeProbs(&decoder.decoder, alloc);
|
LzmaDec.h | 134 SRes LzmaDec_AllocateProbs(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc); 135 void LzmaDec_FreeProbs(CLzmaDec *p, ISzAlloc *alloc); 137 SRes LzmaDec_Allocate(CLzmaDec *state, const Byte *prop, unsigned propsSize, ISzAlloc *alloc); 138 void LzmaDec_Free(CLzmaDec *state, ISzAlloc *alloc); 225 ELzmaStatus *status, ISzAlloc *alloc);
|
/external/chromium_org/ui/message_center/cocoa/ |
notification_controller_unittest.mm | 125 [[MCNotificationController alloc] initWithNotification:notification.get() 153 [[MCNotificationController alloc] initWithNotification:notification.get() 176 [[MCNotificationController alloc] initWithNotification:notification.get() 201 [[MCNotificationController alloc] initWithNotification:notification.get() 239 [[MCNotificationController alloc] initWithNotification:notification.get() 267 [[MCNotificationController alloc] initWithNotification:notification.get() 307 [[MCNotificationController alloc] initWithNotification:notification.get()
|
tray_view_controller.mm | 107 notifications_.reset([[NSMutableArray alloc] init]); 108 notificationsPendingRemoval_.reset([[NSMutableArray alloc] init]); 143 base::scoped_nsobject<NSBox> view([[NSBox alloc] initWithFrame:NSMakeRect( 158 [[NSView alloc] initWithFrame:NSZeroRect]); 159 scrollView_.reset([[NSScrollView alloc] initWithFrame:[view frame]]); 161 [[MCClipView alloc] initWithFrame:[[scrollView_ contentView] frame]]); 180 base::scoped_nsobject<NSShadow> shadow([[NSShadow alloc] init]); 200 [[MCNotificationController alloc] 275 clearAllAnimations_.reset([[NSMutableArray alloc] init]); 288 [[MCSettingsController alloc] initWithProvider:provide [all...] |
/external/clang/test/Analysis/ |
NSContainers.m | 23 + (id)alloc; 103 NSMutableArray *marray = [[NSMutableArray alloc] init]; 108 NSMutableArray *marray = [[NSMutableArray alloc] init]; 113 NSMutableArray *marray = [[NSMutableArray alloc] init]; 118 NSMutableArray *marray = [[NSMutableArray alloc] init]; 123 NSMutableArray *marray = [[NSMutableArray alloc] init]; 129 NSArray *array = [[NSArray alloc] init];
|
/frameworks/rs/cpu_ref/ |
rsCpuIntrinsicConvolve5x5.cpp | 42 ObjectBaseRef<Allocation> alloc; member in class:android::renderscript::RsdCpuScriptIntrinsicConvolve5x5 72 alloc.set(static_cast<Allocation *>(data)); 353 if (!cp->alloc.get()) { 357 const uchar *pin = (const uchar *)cp->alloc->mHal.drvState.lod[0].mallocPtr; 358 const size_t stride = cp->alloc->mHal.drvState.lod[0].stride; 402 if (!cp->alloc.get()) { 406 const uchar *pin = (const uchar *)cp->alloc->mHal.drvState.lod[0].mallocPtr; 407 const size_t stride = cp->alloc->mHal.drvState.lod[0].stride; 451 if (!cp->alloc.get()) { 455 const uchar *pin = (const uchar *)cp->alloc->mHal.drvState.lod[0].mallocPtr [all...] |
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
RenderScript.java | 259 native void rsnAllocationCopyToBitmap(int con, int alloc, Bitmap bmp); 260 synchronized void nAllocationCopyToBitmap(int alloc, Bitmap bmp) { 262 rsnAllocationCopyToBitmap(mContext, alloc, bmp); 266 native void rsnAllocationSyncAll(int con, int alloc, int src); 267 synchronized void nAllocationSyncAll(int alloc, int src) { 269 rsnAllocationSyncAll(mContext, alloc, src); 271 native void rsnAllocationIoSend(int con, int alloc); 272 synchronized void nAllocationIoSend(int alloc) { 274 rsnAllocationIoSend(mContext, alloc); 276 native void rsnAllocationIoReceive(int con, int alloc); [all...] |
/device/lge/mako/camera/QCamera/stack/mm-camera-interface/src/ |
mm_camera_helper.c | 105 uint8_t *mm_camera_do_mmap_ion(int ion_fd, struct ion_allocation_data *alloc, 113 alloc->len = (alloc->len + 4095) & (~4095); 115 rc = ioctl(ion_fd, ION_IOC_ALLOC, alloc); 121 ion_info_fd->handle = alloc->handle; 129 alloc->len, 257 uint8_t *mm_camera_do_mmap_ion(int ion_fd, struct ion_allocation_data *alloc, 265 alloc->len = (alloc->len + 4095) & (~4095); 266 alloc->align = 4096 [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
system-alloc.cc | 146 void* Alloc(size_t size, size_t *actual_size, size_t alignment); 154 void* Alloc(size_t size, size_t *actual_size, size_t alignment); 162 void* Alloc(size_t size, size_t *actual_size, size_t alignment); 174 void SetChildAllocator(SysAllocator* alloc, unsigned int index, 176 if (index < kMaxAllocators && alloc != NULL) { 177 allocs_[index] = alloc; 182 void* Alloc(size_t size, size_t *actual_size, size_t alignment); 195 void* SbrkSysAllocator::Alloc(size_t size, size_t *actual_size, 267 void* MmapSysAllocator::Alloc(size_t size, size_t *actual_size, 336 void* DevMemSysAllocator::Alloc(size_t size, size_t *actual_size [all...] |
/external/chromium_org/chrome/browser/ui/cocoa/ |
confirm_bubble_cocoa.mm | 54 [[ConfirmBubbleController alloc] initWithParent:view 172 okButton_.reset([[NSButton alloc] 187 cancelButton_.reset([[NSButton alloc] 207 messageLabel_.reset([[ConfirmBubbleTextView alloc] 212 [[NSMutableAttributedString alloc] initWithString:messageText 217 [[NSAttributedString alloc] initWithString:@" "]); 222 [[NSAttributedString alloc] initWithString:linkText 243 icon_.reset([[NSImageView alloc] initWithFrame:NSMakeRect( 250 titleLabel_.reset([[NSTextView alloc]
|
/external/chromium_org/chrome/browser/ui/cocoa/extensions/ |
extension_install_view_controller_unittest.mm | 49 [[ExtensionInstallViewController alloc] initWithNavigator:browser() 104 [[ExtensionInstallViewController alloc] initWithNavigator:browser() 140 [[ExtensionInstallViewController alloc] 148 [[ExtensionInstallViewController alloc] 175 [[ExtensionInstallViewController alloc] 219 [[ExtensionInstallViewController alloc] initWithNavigator:browser() 288 [[ExtensionInstallViewController alloc] initWithNavigator:browser() 321 [[ExtensionInstallViewController alloc] initWithNavigator:browser() 351 [[ExtensionInstallViewController alloc] initWithNavigator:browser()
|
/art/runtime/gc/space/ |
dlmalloc_space.h | 32 // An alloc space is a space where objects may be allocated and garbage collected. 57 virtual mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated); 107 // The total amount of memory reserved for the alloc space. 127 // Turn ourself into a zygote space and return a new alloc space which has our unused memory. 188 // The capacity of the alloc space until such time that ClearGrowthLimit is called.
|
/device/asus/flo/camera/QCamera2/stack/mm-camera-test/src/ |
mm_qcamera_app.c | 115 struct ion_allocation_data alloc; local 126 memset(&alloc, 0, sizeof(alloc)); 127 alloc.len = buf->mem_info.size; 129 alloc.len = (alloc.len + 4095) & (~4095); 130 alloc.align = 4096; 131 alloc.flags = ION_FLAG_CACHED; 132 alloc.heap_mask = ion_type; 133 rc = ioctl(main_ion_fd, ION_IOC_ALLOC, &alloc); [all...] |
/external/chromium/chrome/browser/ui/cocoa/tabs/ |
tab_strip_controller_unittest.mm | 108 [[NSView alloc] initWithFrame:switch_frame]); 116 [[TabStripView alloc] initWithFrame:strip_frame]); 120 [[NewTabButton alloc] initWithFrame:button_frame]); 126 controller_delegate_.reset([TestTabStripControllerDelegate alloc]); 127 controller_.reset([[TabStripController alloc]
|
/external/chromium_org/third_party/angle/src/compiler/ |
PoolAlloc.cpp | 292 for (const TAllocation* alloc = this; alloc != 0; alloc = alloc->prevAlloc) 293 alloc->check();
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/ |
RTCPeerConnectionFactory.mm | 105 [[RTCPeerConnection alloc] initWithPeerConnection:peerConnection 114 return [[RTCMediaStream alloc] initWithMediaStream:nativeMediaStream]; 125 return [[RTCVideoSource alloc] initWithMediaSource:source]; 133 return [[RTCVideoTrack alloc] initWithMediaTrack:track]; 139 return [[RTCAudioTrack alloc] initWithMediaTrack:track];
|