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

1 2 3 45 6 7 8 91011>>

  /external/dropbear/libtommath/
bn_mp_copy.c 30 if (b->alloc < a->used) {
bn_mp_read_unsigned_bin.c 24 if (a->alloc < 2) {
  /external/qemu/elff/
elf_alloc.h 39 * without having to adjust alignment of the blocks, returned from alloc()
95 void* alloc(size_t size);
elf_alloc.cc 34 void* ElfAllocator::alloc(size_t size) { function in class:ElfAllocator
61 return elf->allocator()->alloc(size);
  /external/skia/gpu/include/
GrMemory.h 56 bool alloc; local
58 alloc = newSize > fAllocatedBytes;
60 alloc = newSize != fAllocatedBytes;
62 if (alloc) {
  /external/valgrind/main/exp-ptrcheck/tests/
arith.stderr.exp 6 Both args derived from address 0x........ of 40-byte block alloc'd
16 First arg derived from address 0x........ of 40-byte block alloc'd
21 Second arg derived from address 0x........ of 40-byte block alloc'd
31 Both args derived from address 0x........ of 40-byte block alloc'd
42 Second arg derived from address 0x........ of 40-byte block alloc'd
52 Both args derived from address 0x........ of 40-byte block alloc'd
63 Second arg derived from address 0x........ of 40-byte block alloc'd
73 Both args derived from address 0x........ of 40-byte block alloc'd
hp_bounds.stderr.exp 5 legitimate range, a block of size 400 alloc'd
12 legitimate range, a block of size 400 alloc'd
pth_specific.stderr.exp 5 legitimate range, a block of size 100 alloc'd
12 legitimate range, a block of size 100 alloc'd
justify.stderr.exp 5 legitimate range, a block of size 10000 alloc'd
strlen_bad.stderr.exp 7 legitimate range, a block of size 13 alloc'd
17 legitimate range, a block of size 13 alloc'd
27 legitimate range, a block of size 13 alloc'd
37 legitimate range, a block of size 13 alloc'd
supp.stderr.exp 5 First byte (0x........) is 3 bytes inside a 6-byte block alloc'd
  /external/webkit/Source/WebCore/platform/text/mac/
LocalizedNumberMac.mm 45 RetainPtr<NSNumberFormatter> formatter(AdoptNS, [[NSNumberFormatter alloc] init]);
70 RetainPtr<NSNumber> number(AdoptNS, [[NSNumber alloc] initWithDouble:inputNumber]);
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebApplicationCache.mm 76 NSMutableArray *webOrigins = [[[NSMutableArray alloc] initWithCapacity:coreOrigins.size()] autorelease];
80 RetainPtr<WebSecurityOrigin> webOrigin(AdoptNS, [[WebSecurityOrigin alloc] _initWithWebCoreSecurityOrigin:(*it).get()]);
WebKeyGenerator.mm 35 static WebKeyGenerator *sharedGenerator = [[WebKeyGenerator alloc] init];
  /external/webkit/Source/WebKit/mac/WebView/
WebDeviceOrientation.mm 50 m_internal = [[WebDeviceOrientationInternal alloc] initWithCoreDeviceOrientation:coreDeviceOrientation];
68 m_internal = [[WebDeviceOrientationInternal alloc] initWithCoreDeviceOrientation:DeviceOrientation::create(canProvideAlpha, alpha, canProvideBeta, beta, canProvideGamma, gamma)];
WebGeolocationPosition.mm 79 _internal = [[WebGeolocationPositionInternal alloc] initWithCoreGeolocationPosition:GeolocationPosition::create(timestamp, latitude, longitude, accuracy)];
81 _internal = [[WebGeolocationPositionInternal alloc] init];
WebSerializedJSValue.mm 57 _private = [[WebSerializedJSValuePrivate alloc] init];
81 _private = [[WebSerializedJSValuePrivate alloc] init];
WebArchive.mm 131 _private = [[WebArchivePrivate alloc] init];
160 _private = [[WebArchivePrivate alloc] init];
217 _private = [[WebArchivePrivate alloc] init];
291 _private->cachedMainResource = [[WebResource alloc] _initWithCoreResource:coreArchive->mainResource()];
311 _private->cachedSubresources = [[NSArray alloc] init];
314 NSMutableArray *mutableArray = [[NSMutableArray alloc] initWithCapacity:subresources.size()];
317 WebResource *resource = [[WebResource alloc] _initWithCoreResource:subresources[i].get()];
344 _private->cachedSubframeArchives = [[NSArray alloc] init];
347 NSMutableArray *mutableArray = [[NSMutableArray alloc] initWithCapacity:subframeArchives.size()];
350 WebArchive *archive = [[WebArchive alloc] _initWithCoreLegacyWebArchive:(LegacyWebArchive *)subframeArchives[i].get()]
    [all...]
  /ndk/sources/host-tools/ndk-stack/elff/
elf_alloc.h 39 * without having to adjust alignment of the blocks, returned from alloc()
95 void* alloc(size_t size);
  /frameworks/compile/libbcc/lib/ScriptCRT/
rs_core.c 247 Allocation_t *alloc = (Allocation_t *)a.p; local
248 return alloc->mHal.state.dimensionX;
253 Allocation_t *alloc = (Allocation_t *)a.p; local
254 return alloc->mHal.state.dimensionY;
259 Allocation_t *alloc = (Allocation_t *)a.p; local
260 return alloc->mHal.state.dimensionZ;
265 Allocation_t *alloc = (Allocation_t *)a.p; local
266 return alloc->mHal.state.hasMipmaps;
271 Allocation_t *alloc = (Allocation_t *)a.p; local
272 return alloc->mHal.state.hasFaces
277 Allocation_t *alloc = (Allocation_t *)a.p; local
285 Allocation_t *alloc = (Allocation_t *)a.p; local
294 Allocation_t *alloc = (Allocation_t *)a.p; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gstreamer/
PlatformVideoWindowMac.mm 31 m_window.adoptNS([[NSView alloc] init]);
  /external/webkit/Source/WebCore/platform/mac/
WebNSAttributedStringExtras.mm 41 attachmentCharString = [[NSString alloc] initWithCharacters:chars length:1];
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
WebTextInputWindowController.m 66 _inputTextView = [[NSTextView alloc] initWithFrame:[self.contentView frame]];
69 NSScrollView* scrollView = [[NSScrollView alloc] initWithFrame:[self.contentView frame]];
139 textInputWindowController = [[WebTextInputWindowController alloc] init];
150 _panel = [[WebTextInputPanel alloc] init];
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
WKTextInputWindowController.mm 65 _inputTextView = [[NSTextView alloc] initWithFrame:[self.contentView frame]];
68 NSScrollView* scrollView = [[NSScrollView alloc] initWithFrame:[self.contentView frame]];
133 textInputWindowController = [[WKTextInputWindowController alloc] init];
144 _panel = [[WKTextInputPanel alloc] init];
  /external/webkit/Source/WebKit2/UIProcess/Launcher/mac/
ThreadLauncherMac.mm 41 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];

Completed in 1550 milliseconds

1 2 3 45 6 7 8 91011>>