HomeSort by relevance Sort by last modified time
    Searched full:argptr (Results 26 - 50 of 52) sorted by null

12 3

  /external/svox/pico/lib/
picodbg.c 328 va_list argptr; local
329 va_start(argptr, format);
331 len = vsprintf(msgbuf, format, argptr);
  /external/quake/quake/src/WinQuake/
sys_dos.cpp 544 va_list argptr; local
547 va_start (argptr,fmt);
548 vsprintf (text,fmt,argptr);
549 va_end (argptr);
608 va_list argptr; local
611 va_start (argptr,error);
612 vsprintf (string,error,argptr);
613 va_end (argptr);
pr_exec.cpp 263 va_list argptr; local
266 va_start (argptr,error);
267 vsprintf (string,error,argptr);
268 va_end (argptr);
common.cpp 1204 va_list argptr; local
1207 va_start (argptr, format);
1208 vsprintf (string, format,argptr);
1209 va_end (argptr);
    [all...]
  /external/clang/lib/Lex/
MacroArgs.cpp 99 unsigned MacroArgs::getArgLength(const Token *ArgPtr) {
101 for (; ArgPtr->isNot(tok::eof); ++ArgPtr)
MacroArgs.h 81 static unsigned getArgLength(const Token *ArgPtr);
  /system/core/sh/
jobs.c 263 jp = getjob(*argptr, 0);
342 jp = getjob(*argptr, 0);
352 } while (*argptr && *++argptr);
513 if (*argptr)
515 showjob(out1, getjob(*argptr,0), mode);
516 while (*++argptr);
610 if (!*argptr) {
630 for (; *argptr; argptr++)
    [all...]
exec.c 348 if (*argptr == NULL) {
357 while ((name = *argptr) != NULL) {
370 argptr++;
972 while ((arg = *argptr++)) {
options.h 119 extern char **argptr; /* argument list for builtin commands */
var.c 575 while ((name = *argptr++) != NULL) {
602 while ((name = *argptr++) != NULL) {
724 for (ap = argptr; *ap ; ap++) {
eval.c 1012 argptr = argv + 1;
  /external/quake/quake/src/QW/client/
net_chan.c 143 va_list argptr; local
146 va_start (argptr, format);
147 vsprintf (string, format,argptr);
148 va_end (argptr);
cl_main.c 1190 va_list argptr; local
1193 va_start (argptr,message);
1194 vsprintf (string,message,argptr);
1195 va_end (argptr);
1214 va_list argptr; local
1222 va_start (argptr,error);
1223 vsprintf (string,error,argptr);
1224 va_end (argptr);
common.c 1245 va_list argptr; local
1248 va_start (argptr, format);
1249 vsprintf (string, format,argptr);
1250 va_end (argptr);
    [all...]
  /external/srec/portable/src/
PFileWrap.c 453 int pvfprintf ( PFile *stream, const LCHAR *format, va_list argptr )
458 rc = PFileVfprintf ( stream, &result, format, argptr );
PFile.c 490 int pvfprintf(PFile* stream, const LCHAR* format, va_list argptr)
498 rc = PFileVfprintf(stream, &result, format, argptr);
pstream.c 611 int PortVfprintf(PORT_FILE PortFile, const char *format, va_list argptr)
616 vsprintf(message, format, argptr);
  /external/clang/lib/Rewrite/
RewriteObjC.cpp     [all...]
  /external/quake/quake/src/QW/server/
pr_exec.c 263 va_list argptr; local
266 va_start (argptr,error);
267 vsprintf (string,error,argptr);
268 va_end (argptr);
sv_main.c 123 va_list argptr; local
132 va_start (argptr,error);
133 vsprintf (string,error,argptr);
134 va_end (argptr);
    [all...]
sv_user.c 554 va_list argptr; local
562 va_start (argptr, fmt);
563 vsprintf (send+5, fmt, argptr);
564 va_end (argptr);
    [all...]
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 750 llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, E->getType());
752 if (!ArgPtr) {
761 return EmitLoadOfComplex(ArgPtr, false);
CGExprAgg.cpp 509 llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType());
511 if (!ArgPtr) {
516 EmitFinalDestCopy(VE, CGF.MakeAddrLValue(ArgPtr, VE->getType()));
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 522 void *ArgPtr = GVTOP(AV);
525 (int)(intptr_t)ArgPtr);
528 (intptr_t)ArgPtr);
  /external/v8/src/
platform-win32.cc 142 const char* format, va_list argptr) {
143 return _vsnprintf(buffer, sizeOfBuffer, format, argptr);
    [all...]

Completed in 954 milliseconds

12 3