HomeSort by relevance Sort by last modified time
    Searched refs:stackbuf (Results 1 - 5 of 5) sorted by null

  /external/bison/lib/
perror.c 35 char stackbuf[STACKBUF_LEN]; local
39 string, even if it returns EINVAL; and stackbuf should be sized
41 ret = strerror_r (errno, stackbuf, sizeof stackbuf);
46 fprintf (stderr, "%s: %s\n", string, stackbuf);
48 fprintf (stderr, "%s\n", stackbuf);
strerror_r.c 186 char stackbuf[80]; local
188 if (buflen < sizeof stackbuf)
190 ret = strerror_r (errnum, stackbuf, sizeof stackbuf);
192 ret = safe_copy (buf, buflen, stackbuf);
210 char stackbuf[STACKBUF_LEN]; local
212 strerror_r (errnum, stackbuf, sizeof stackbuf);
213 len = strlen (stackbuf);
215 if (len + 1 == sizeof stackbuf)
229 char stackbuf[STACKBUF_LEN]; local
    [all...]
  /external/clang/test/SemaObjC/
foreach.m 37 - (unsigned long)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(unsigned long)len;
  /external/clang/test/Analysis/Inputs/
system-header-simulator-objc.h 67 @protocol NSFastEnumeration - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicBlur.cpp 276 float4 stackbuf[2048]; local
277 float4 *buf = &stackbuf[0];

Completed in 848 milliseconds