Searched refs:stackbuf (Results 1 - 12 of 12) sorted by relevance

/external/bison/lib/
H A Dperror.c35 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);
H A Dstrerror_r.c186 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/
H A Dforeach.m37 - (unsigned long)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(unsigned long)len;
/external/quake/quake/src/QW/client/
H A Dsnd_mem.c105 byte stackbuf[1*1024]; // avoid dirtying the cache heap local
112 //Con_Printf ("S_LoadSound: %x\n", (int)stackbuf);
119 data = COM_LoadStackFile(namebuffer, stackbuf, sizeof(stackbuf));
H A Dgl_model.c241 byte stackbuf[1024]; // avoid dirtying the cache heap local
266 buf = (unsigned *)COM_LoadStackFile (mod->name, stackbuf, sizeof(stackbuf));
H A Dmodel.c239 byte stackbuf[1024]; // avoid dirtying the cache heap local
264 buf = (unsigned *)COM_LoadStackFile (mod->name, stackbuf, sizeof(stackbuf));
/external/quake/quake/src/WinQuake/
H A Dsnd_mem.cpp105 byte stackbuf[1*1024]; // avoid dirtying the cache heap local
112 //Con_Printf ("S_LoadSound: %x\n", (int)stackbuf);
119 data = COM_LoadStackFile(namebuffer, stackbuf, sizeof(stackbuf));
H A Dgl_model.cpp241 byte stackbuf[1024]; // avoid dirtying the cache heap local
266 buf = (unsigned *)COM_LoadStackFile (mod->name, stackbuf, sizeof(stackbuf));
H A Dmodel.cpp259 byte stackbuf[1024]; // avoid dirtying the cache heap local
282 buf = (unsigned *)COM_LoadStackFile (mod->name, stackbuf, sizeof(stackbuf));
/external/quake/quake/src/QW/server/
H A Dsv_init.c258 byte stackbuf[1024]; // avoid dirtying the cache heap local
263 buf = (byte *)COM_LoadStackFile (mdl, stackbuf, sizeof(stackbuf));
H A Dmodel.c202 byte stackbuf[1024]; // avoid dirtying the cache heap local
219 buf = (unsigned *)COM_LoadStackFile (mod->name, stackbuf, sizeof(stackbuf));
/external/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator-objc.h67 @protocol NSFastEnumeration - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;

Completed in 635 milliseconds