Searched refs:argPtr (Results 1 – 5 of 5) sorted by relevance
| /openbsd-src/lib/libc/softfloat/ |
| H A D | timesoftfloat.c | 2479 char *argPtr; in main() local 2493 while ( argc && ( argPtr = argv[ 0 ] ) ) { in main() 2494 if ( argPtr[ 0 ] == '-' ) ++argPtr; in main() 2495 if ( strcmp( argPtr, "help" ) == 0 ) { in main() 2540 else if ( strcmp( argPtr, "precision32" ) == 0 ) { in main() 2543 else if ( strcmp( argPtr, "precision64" ) == 0 ) { in main() 2546 else if ( strcmp( argPtr, "precision80" ) == 0 ) { in main() 2550 else if ( ( strcmp( argPtr, "nearesteven" ) == 0 ) in main() 2551 || ( strcmp( argPtr, "nearest_even" ) == 0 ) ) { in main() 2554 else if ( ( strcmp( argPtr, "tozero" ) == 0 ) in main() [all …]
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/ |
| H A D | stack.c | 1195 char *argPtr = arg; in backtrace_command() local 1224 argPtr = (char *) xmalloc (totArgLen + 1); in backtrace_command() 1225 if (!argPtr) in backtrace_command() 1229 memset (argPtr, 0, totArgLen + 1); in backtrace_command() 1234 strcat (argPtr, argv[i]); in backtrace_command() 1235 strcat (argPtr, " "); in backtrace_command() 1241 argPtr = (char *) NULL; in backtrace_command() 1245 backtrace_command_1 (argPtr, (argIndicatingFullTrace >= 0), from_tty); in backtrace_command() 1248 xfree (argPtr); in backtrace_command()
|
| /openbsd-src/gnu/llvm/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 2254 const char *argPtr = TypeString.c_str(); in RewriteBlockPointerType() local 2255 if (!strchr(argPtr, '^')) { in RewriteBlockPointerType() 2259 while (*argPtr) { in RewriteBlockPointerType() 2260 Str += (*argPtr == '^' ? '*' : *argPtr); in RewriteBlockPointerType() 2261 argPtr++; in RewriteBlockPointerType() 2270 const char *argPtr = TypeString.c_str(); in RewriteBlockPointerTypeVariable() local 2272 while (*argPtr) { in RewriteBlockPointerTypeVariable() 2273 switch (*argPtr) { in RewriteBlockPointerTypeVariable() 2275 Str += *argPtr; in RewriteBlockPointerTypeVariable() 2279 Str += *argPtr; in RewriteBlockPointerTypeVariable() [all …]
|
| H A D | RewriteModernObjC.cpp | 2341 const char *argPtr = TypeString.c_str(); in RewriteBlockPointerType() local 2342 if (!strchr(argPtr, '^')) { in RewriteBlockPointerType() 2346 while (*argPtr) { in RewriteBlockPointerType() 2347 Str += (*argPtr == '^' ? '*' : *argPtr); in RewriteBlockPointerType() 2348 argPtr++; in RewriteBlockPointerType() 2357 const char *argPtr = TypeString.c_str(); in RewriteBlockPointerTypeVariable() local 2359 while (*argPtr) { in RewriteBlockPointerTypeVariable() 2360 switch (*argPtr) { in RewriteBlockPointerTypeVariable() 2362 Str += *argPtr; in RewriteBlockPointerTypeVariable() 2366 Str += *argPtr; in RewriteBlockPointerTypeVariable() [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/ARCMigrate/ |
| H A D | ObjCMT.cpp | 401 const char *argPtr = TypeString.c_str(); in MigrateBlockOrFunctionPointerTypeVariable() local 403 while (*argPtr) { in MigrateBlockOrFunctionPointerTypeVariable() 404 switch (*argPtr) { in MigrateBlockOrFunctionPointerTypeVariable() 406 PropertyString += *argPtr; in MigrateBlockOrFunctionPointerTypeVariable() 410 PropertyString += *argPtr; in MigrateBlockOrFunctionPointerTypeVariable() 415 PropertyString += (*argPtr); in MigrateBlockOrFunctionPointerTypeVariable() 422 PropertyString += *argPtr; in MigrateBlockOrFunctionPointerTypeVariable() 425 argPtr++; in MigrateBlockOrFunctionPointerTypeVariable()
|