HomeSort by relevance Sort by last modified time
    Searched refs:alloc (Results 51 - 75 of 611) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
mempool.h 29 mempool_alloc_t *alloc; member in struct:mempool_s
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
mempool.h 29 mempool_alloc_t *alloc; member in struct:mempool_s
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
mempool.h 29 mempool_alloc_t *alloc; member in struct:mempool_s
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
mempool.h 29 mempool_alloc_t *alloc; member in struct:mempool_s
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/
mempool.h 29 mempool_alloc_t *alloc; member in struct:mempool_s
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/
mempool.h 29 mempool_alloc_t *alloc; member in struct:mempool_s
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/
mempool.h 29 mempool_alloc_t *alloc; member in struct:mempool_s
  /frameworks/base/libs/rs/driver/
rsdAllocation.h 57 android::renderscript::Allocation *alloc,
60 android::renderscript::Allocation *alloc);
63 const android::renderscript::Allocation *alloc,
66 const android::renderscript::Allocation *alloc,
69 const android::renderscript::Allocation *alloc);
72 const android::renderscript::Allocation *alloc,
76 const android::renderscript::Allocation *alloc,
81 const android::renderscript::Allocation *alloc,
108 const android::renderscript::Allocation *alloc,
112 const android::renderscript::Allocation *alloc,
    [all...]
  /dalvik/vm/
PointerSet.cpp 25 u2 alloc; member in struct:PointerSet
65 pSet->alloc = initialSize;
125 if (pSet->count == pSet->alloc) {
129 if (pSet->alloc == 0)
130 pSet->alloc = 4;
132 pSet->alloc *= 2;
133 LOGVV("expanding %p to %d", pSet, pSet->alloc);
134 newList = (const void**)realloc(pSet->list, pSet->alloc * sizeof(void*));
136 LOGE("Failed expanding ptr set (alloc=%d)", pSet->alloc);
    [all...]
  /external/bluetooth/glib/gio/xdgmime/
xdgmimealias.c 125 int alloc; local
134 alloc = list->n_aliases + 16;
135 list->aliases = realloc (list->aliases, alloc * sizeof (XdgAlias));
147 if (list->n_aliases == alloc)
149 alloc <<= 1;
151 alloc * sizeof (XdgAlias));
xdgmimeicon.c 124 int alloc; local
133 alloc = list->n_icons + 16;
134 list->icons = realloc (list->icons, alloc * sizeof (XdgIcon));
146 if (list->n_icons == alloc)
148 alloc <<= 1;
150 alloc * sizeof (XdgIcon));
  /external/valgrind/main/memcheck/tests/
realloc3.stderr.exp 3 Address 0x........ is 15 bytes after a block of size 5 alloc'd
9 Address 0x........ is 15 bytes after a block of size 5 alloc'd
15 Address 0x........ is 15 bytes after a block of size 5 alloc'd
exitprog.stderr.exp 3 Address 0x........ is 0 bytes after a block of size 1,000,000 alloc'd
fwrite.stderr.exp 3 Address 0x........ is 0 bytes inside a block of size 10 alloc'd
inline.stderr.exp 4 Address 0x........ is 0 bytes after a block of size 40 alloc'd
  /external/webkit/Examples/NetscapeCocoaPlugin/
MenuHandler.m 71 menu = [[NSMenu alloc] initWithTitle:@"Menu"];
73 NSMenuItem *item = [[NSMenuItem alloc] initWithTitle:@"Open URL" action:@selector(_openURL:) keyEquivalent:@""];
78 item = [[NSMenuItem alloc] initWithTitle:@"Disabled Item" action:@selector(_disabledItem:) keyEquivalent:@""];
  /external/webkit/Source/WebCore/bindings/objc/
ExceptionHandlers.mm 65 reason = [[NSString alloc] initWithFormat:@"*** %s: %@ %d", description.name, exceptionName, description.code];
67 reason = [[NSString alloc] initWithFormat:@"*** %@ %d", exceptionName, description.code];
69 NSDictionary *userInfo = [[NSDictionary alloc] initWithObjectsAndKeys:[NSNumber numberWithInt:description.code], exceptionName, nil];
  /external/webkit/Source/WebKit/mac/WebView/
WebDeviceOrientationProviderMock.mm 65 return [[WebDeviceOrientation alloc] initWithCoreDeviceOrientation:m_core->lastOrientation()];
83 static WebDeviceOrientationProviderMock *provider = [[WebDeviceOrientationProviderMock alloc] init];
92 m_internal = [[WebDeviceOrientationProviderMockInternal alloc] init];
WebScriptWorld.mm 64 _private = [[WebScriptWorldPrivate alloc] init];
95 static WebScriptWorld *world = [[WebScriptWorld alloc] initWithWorld:mainThreadNormalWorld()];
101 return [[[self alloc] init] autorelease];
128 return [[[self alloc] initWithWorld:world] autorelease];
  /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);
  /external/skia/include/core/
SkMaskFilter.h 100 SkAutoMaskImage(SkMask* mask, bool alloc) {
101 if (alloc) {
  /external/webkit/Source/JavaScriptCore/API/
JSStringRefCF.cpp 54 CFStringRef JSStringCopyCFString(CFAllocatorRef alloc, JSStringRef string)
56 return CFStringCreateWithCharacters(alloc, reinterpret_cast<const UniChar*>(string->characters()), string->length());
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/mac/
PluginProxyMac.mm 42 m_pluginLayer.adoptNS([[CALayer alloc] init]);
  /external/webkit/Tools/DumpRenderTree/chromium/
TestShellMac.mm 63 NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
112 WatchDogTarget* watchdog = [[[WatchDogTarget alloc]
114 NSThread* thread = [[NSThread alloc] initWithTarget:watchdog
138 NSAlert* alert = [[[NSAlert alloc] init] autorelease];
  /external/webkit/Tools/TestWebKitAPI/mac/
main.mm 30 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];

Completed in 1279 milliseconds

1 23 4 5 6 7 8 91011>>