Home
last modified time | relevance | path

Searched refs:stackbuf (Results 1 – 25 of 30) sorted by relevance

12

/external/bison/lib/
Dstrerror_r.c186 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 …]
Dperror.c35 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/kmod/shared/
Dscratchbuf.c24 void scratchbuf_init(struct scratchbuf *buf, char *stackbuf, size_t size) in scratchbuf_init() argument
26 buf->bytes = stackbuf; in scratchbuf_init()
Dscratchbuf.h17 void scratchbuf_init(struct scratchbuf *buf, char *stackbuf, size_t size);
/external/compiler-rt/test/msan/
Dchained_origin_limits.cc74 char stackbuf[1000]; in init() local
75 char *volatile p = stackbuf; in init()
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DAMutableDictionary.m197 // 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++];
DAMutableArray.m224 // 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/
Dproperty-6.m34 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf co…
Dcompare-qualified-id.m13 …untByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger…
Dcomptypes-9.m35 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf co…
Dproperty-8.m21 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf co…
Dforeach.m37 - (unsigned long)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf
Dweak-attr-ivar.m24 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf co…
/external/clang/test/Analysis/
Duninit-msg-expr.m25 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf co…
Dpr4209.m20 …untByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger…
DNSPanel.m32 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf co…
Dmethod-arg-decay.m19 …untByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger…
Ddelegates.m56 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf co…
Dvariadic-method-types.m40 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf co…
Dmisc-ps-eager-assume.m19 …untByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger…
DNSString.m66 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf co…
Dretain-release-inline.m112 …untByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger…
Dretain-release-gc-only.m104 …untByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger…
/external/clang/test/SemaObjCXX/
Dforeach.mm42 - (unsigned long)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf
/external/clang/test/Analysis/Inputs/
Dsystem-header-simulator-objc.h67 …untByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger…

12