Home
last modified time | relevance | path

Searched refs:argPtr (Results 1 – 3 of 3) sorted by relevance

/freebsd/lib/libc/softfloat/
H A Dtimesoftfloat.c2478 char *argPtr; in main() local
2492 while ( argc && ( argPtr = argv[ 0 ] ) ) { in main()
2493 if ( argPtr[ 0 ] == '-' ) ++argPtr; in main()
2494 if ( strcmp( argPtr, "help" ) == 0 ) { in main()
2539 else if ( strcmp( argPtr, "precision32" ) == 0 ) { in main()
2542 else if ( strcmp( argPtr, "precision64" ) == 0 ) { in main()
2545 else if ( strcmp( argPtr, "precision80" ) == 0 ) { in main()
2549 else if ( ( strcmp( argPtr, "nearesteven" ) == 0 ) in main()
2550 || ( strcmp( argPtr, "nearest_even" ) == 0 ) ) { in main()
2553 else if ( ( strcmp( argPtr, "tozero" ) == 0 ) in main()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp2340 const char *argPtr = TypeString.c_str(); in RewriteBlockPointerType() local
2341 if (!strchr(argPtr, '^')) { in RewriteBlockPointerType()
2345 while (*argPtr) { in RewriteBlockPointerType()
2346 Str += (*argPtr == '^' ? '*' : *argPtr); in RewriteBlockPointerType()
2347 argPtr++; in RewriteBlockPointerType()
2356 const char *argPtr = TypeString.c_str(); in RewriteBlockPointerTypeVariable() local
2358 while (*argPtr) { in RewriteBlockPointerTypeVariable()
2359 switch (*argPtr) { in RewriteBlockPointerTypeVariable()
2361 Str += *argPtr; in RewriteBlockPointerTypeVariable()
2365 Str += *argPtr; in RewriteBlockPointerTypeVariable()
[all …]
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp398 const char *argPtr = TypeString.c_str(); in MigrateBlockOrFunctionPointerTypeVariable() local
400 while (*argPtr) { in MigrateBlockOrFunctionPointerTypeVariable()
401 switch (*argPtr) { in MigrateBlockOrFunctionPointerTypeVariable()
403 PropertyString += *argPtr; in MigrateBlockOrFunctionPointerTypeVariable()
407 PropertyString += *argPtr; in MigrateBlockOrFunctionPointerTypeVariable()
412 PropertyString += (*argPtr); in MigrateBlockOrFunctionPointerTypeVariable()
419 PropertyString += *argPtr; in MigrateBlockOrFunctionPointerTypeVariable()
422 argPtr++; in MigrateBlockOrFunctionPointerTypeVariable()