/external/bison/lib/ |
D | strerror_r.c | 186 char stackbuf[80]; in strerror_r() local 188 if (buflen < sizeof stackbuf) in strerror_r() 190 ret = strerror_r (errnum, stackbuf, sizeof stackbuf); in strerror_r() 192 ret = safe_copy (buf, buflen, stackbuf); in strerror_r() 210 char stackbuf[STACKBUF_LEN]; in strerror_r() local 212 strerror_r (errnum, stackbuf, sizeof stackbuf); in strerror_r() 213 len = strlen (stackbuf); in strerror_r() 215 if (len + 1 == sizeof stackbuf) in strerror_r() 229 char stackbuf[STACKBUF_LEN]; in strerror_r() local 232 if (strerror_r (errnum, stackbuf, sizeof stackbuf) == ERANGE) in strerror_r() [all …]
|
D | perror.c | 35 char stackbuf[STACKBUF_LEN]; in perror() local 41 ret = strerror_r (errno, stackbuf, sizeof stackbuf); in perror() 46 fprintf (stderr, "%s: %s\n", string, stackbuf); in perror() 48 fprintf (stderr, "%s\n", stackbuf); in perror()
|
/external/compiler-rt/test/msan/ |
D | chained_origin_limits.cc | 74 char stackbuf[1000]; in init() local 75 char *volatile p = stackbuf; in init()
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | AMutableDictionary.m | 197 // 1) Use the stack based array provided by stackbuf. If you do this, then you must respect the val… 199 …tr MUST be a valid array (non-nil). This sample takes approach #1, using stackbuf to store results. 200 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf co… 219 state->itemsPtr = stackbuf; 225 stackbuf[cnt++] = ptrBuffer[state->state++];
|
D | AMutableArray.m | 224 // 1) Use the stack based array provided by stackbuf. If you do this, then you must respect the val… 226 …tr MUST be a valid array (non-nil). This sample takes approach #1, using stackbuf to store results. 227 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf co… 245 state->itemsPtr = stackbuf; 251 stackbuf[cnt++] = ptrBuffer[state->state++];
|
/external/clang/test/SemaObjC/ |
D | property-6.m | 34 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf co…
|
D | compare-qualified-id.m | 13 …untByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger…
|
D | foreach.m | 37 - (unsigned long)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf…
|
D | comptypes-9.m | 35 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf co…
|
D | property-8.m | 21 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf co…
|
D | weak-attr-ivar.m | 24 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf co…
|
/external/clang/test/Analysis/ |
D | uninit-msg-expr.m | 25 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf co…
|
D | NSPanel.m | 32 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf co…
|
D | pr4209.m | 20 …untByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger…
|
D | method-arg-decay.m | 19 …untByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger…
|
D | delegates.m | 56 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf co…
|
D | variadic-method-types.m | 40 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf co…
|
D | misc-ps-eager-assume.m | 19 …untByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger…
|
D | NSString.m | 66 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf co…
|
D | retain-release-inline.m | 112 …untByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger…
|
D | retain-release-gc-only.m | 104 …untByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger…
|
D | retain-release.mm | 137 …untByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger…
|
/external/clang/test/SemaObjCXX/ |
D | foreach.mm | 44 - (unsigned long)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf…
|
/external/clang/test/Analysis/Inputs/ |
D | system-header-simulator-objc.h | 67 …untByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger…
|
/external/clang/test/ARCMT/ |
D | objcmt-arc-cf-annotations.m | 164 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf co…
|