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

1 2

  /external/chromium_org/third_party/mesa/src/src/mesa/main/
vsnprintf.c 57 #define EXTRABYTES 2 /* XXX: why 2? you don't want to know */
70 curobj = (char *)malloc(n + EXTRABYTES + pgsize * 2);
73 e = curobj + n + EXTRABYTES;
80 e = e - n - EXTRABYTES;
99 if (mprotect((caddr_t)(p + n + EXTRABYTES), pgsize,
101 mprotect((caddr_t)(p + n + EXTRABYTES), pgsize,
  /external/mesa3d/src/mesa/main/
vsnprintf.c 57 #define EXTRABYTES 2 /* XXX: why 2? you don't want to know */
70 curobj = (char *)malloc(n + EXTRABYTES + pgsize * 2);
73 e = curobj + n + EXTRABYTES;
80 e = e - n - EXTRABYTES;
99 if (mprotect((caddr_t)(p + n + EXTRABYTES), pgsize,
101 mprotect((caddr_t)(p + n + EXTRABYTES), pgsize,
  /external/clang/test/SemaObjC/
interface-layout.m 19 extern id NSAllocateObject (Class aClass, NSUInteger extraBytes, NSZone * zone);
ivar-access-tests.m 91 extern id NSAllocateObject(Class aClass, NSUInteger extraBytes, NSZone *zone);
method-conflict.m 13 @end extern id NSAllocateObject(Class aClass, NSUInteger extraBytes, NSZone *zone);
weak-attr-ivar.m 18 extern id NSAllocateObject(Class aClass, NSUInteger extraBytes, NSZone *zone);
  /external/chromium_org/third_party/WebKit/Source/core/xml/parser/
SharedBufferReaderTest.cpp 66 const int extraBytes = 3;
67 char outputBuffer[sizeof(testData) + extraBytes];
76 EXPECT_EQ(extraBytes,
  /external/clang/test/Analysis/
uninit-ps-rdar6145427.m 17 extern id NSAllocateObject(Class aClass, NSUInteger extraBytes, NSZone *zone);
rdar-6540084.m 11 extern id NSAllocateObject(Class aClass, NSUInteger extraBytes, NSZone *zone);
rdar-6562655.m 17 @end extern id NSAllocateObject(Class aClass, NSUInteger extraBytes, NSZone *zone);
CFRetainRelease_NSAssertionHandler.m 15 extern id NSAllocateObject(Class aClass, NSUInteger extraBytes, NSZone *zone);
dead-stores.m 12 extern id NSAllocateObject(Class aClass, NSUInteger extraBytes, NSZone *zone);
method-arg-decay.m 13 @end extern id NSAllocateObject(Class aClass, NSUInteger extraBytes, NSZone *zone);
NoReturn.m 23 extern id NSAllocateObject(Class aClass, NSUInteger extraBytes, NSZone *zone);
PR3991.m 17 @end extern id <NSObject> NSAllocateObject(Class aClass, unsigned extraBytes, NSZone *zone);
delegates.m 53 extern id NSAllocateObject(Class aClass, NSUInteger extraBytes, NSZone *zone);
blocks.m 37 extern id NSAllocateObject(Class aClass, NSUInteger extraBytes, NSZone *zone);
  /external/chromium_org/third_party/skia/src/gpu/
GrResourceCache.cpp 330 * extraCount and extraBytes are added to the current resource totals to account
334 void GrResourceCache::purgeAsNeeded(int extraCount, size_t extraBytes) {
343 this->internalPurge(extraCount, extraBytes);
345 (fEntryBytes+extraBytes) > fMaxBytes) &&
350 this->internalPurge(extraCount, extraBytes);
386 void GrResourceCache::internalPurge(int extraCount, size_t extraBytes) {
409 (fEntryBytes+extraBytes) <= fMaxBytes) {
GrResourceCache.h 223 * extraCount and extraBytes are added to the current resource allocation
227 void purgeAsNeeded(int extraCount = 0, size_t extraBytes = 0);
284 void internalPurge(int extraCount, size_t extraBytes);
  /external/skia/src/gpu/
GrResourceCache.cpp 330 * extraCount and extraBytes are added to the current resource totals to account
334 void GrResourceCache::purgeAsNeeded(int extraCount, size_t extraBytes) {
343 this->internalPurge(extraCount, extraBytes);
345 (fEntryBytes+extraBytes) > fMaxBytes) &&
350 this->internalPurge(extraCount, extraBytes);
386 void GrResourceCache::internalPurge(int extraCount, size_t extraBytes) {
409 (fEntryBytes+extraBytes) <= fMaxBytes) {
GrResourceCache.h 310 * extraCount and extraBytes are added to the current resource allocation
314 void purgeAsNeeded(int extraCount = 0, size_t extraBytes = 0);
371 void internalPurge(int extraCount, size_t extraBytes);
  /external/clang/test/Analysis/Inputs/
system-header-simulator-objc.h 63 extern id NSAllocateObject(Class aClass, NSUInteger extraBytes, NSZone *zone);
  /external/lldb/tools/debugserver/source/MacOSX/
stack_logging.h 37 #define stack_logging_flag_object 32 /* NSAllocateObject(Class, extraBytes, zone) */
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1PRNG_SecureRandomImpl.java 288 final int extrabytes = 7;// # of bytes to add in order to computer # of 8 byte words local
295 : (seed[BYTES_OFFSET] + extrabytes) >> 3 - 1;
306 : (seed[BYTES_OFFSET] + extrabytes) >> 3 - 1;
  /external/dnsmasq/src/
rfc1035.c 31 char *name, int isExtract, int extrabytes)
51 if (!CHECK_LEN(header, p, plen, extrabytes))
281 static unsigned char *skip_name(unsigned char *ansp, HEADER *header, size_t plen, int extrabytes)
330 if (!CHECK_LEN(header, ansp, plen, extrabytes))
    [all...]

Completed in 708 milliseconds

1 2