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

1 2

  /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/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);
NSString.m 63 extern id NSAllocateObject(Class aClass, NSUInteger extraBytes, NSZone *zone);
  /external/libvncserver/libvncclient/
tight.c 101 int bufferSize, rowSize, numRows, portionLen, rowsProcessed, extraBytes;
240 extraBytes = 0;
257 zs->next_out = (Bytef *)&client->buffer[extraBytes];
258 zs->avail_out = bufferSize - extraBytes;
276 extraBytes = bufferSize - zs->avail_out - numRows * rowSize;
277 if (extraBytes > 0)
278 memcpy(client->buffer, &client->buffer[numRows * rowSize], extraBytes);
  /external/clang/test/Analysis/Inputs/
system-header-simulator-objc.h 63 extern id NSAllocateObject(Class aClass, NSUInteger extraBytes, NSZone *zone);
  /development/samples/BrokenKeyDerivation/src/com/example/android/brokenkeyderivation/
InsecureSHA1PRNGKeyDerivator.java 288 final int extrabytes = 7;// # of bytes to add in order to computer # of 8 byte words local
294 // This is a bug since extraBytes == 7 instead of 3. Android used to keep it this way for
297 : (seed[BYTES_OFFSET] + extrabytes) >> 3 - 1;
  /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))
283 static unsigned char *skip_name(unsigned char *ansp, HEADER *header, size_t plen, int extrabytes)
332 if (!CHECK_LEN(header, ansp, plen, extrabytes))
    [all...]
  /external/lzma/DOC/
lzma-history.txt 283 rd->ExtraBytes = 1;
  /external/icu/android_icu4j/src/main/java/android/icu/util/
MeasureUnit.java     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
MeasureUnit.java     [all...]
  /frameworks/base/telephony/java/android/telephony/
PhoneNumberUtils.java     [all...]

Completed in 915 milliseconds

1 2