| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| safe.d | 116 * Determine if it is @safe to cast e from tfrom to tto. 119 * tfrom = type of e 124 bool isSafeCast(Expression e, Type tfrom, Type tto) 127 if (tfrom.implicitConvTo(tto)) 133 auto tfromb = tfrom.toBasetype();
|
| arrayop.d | 262 * tfrom = type converting from 267 bool isArrayOpImplicitCast(TypeDArray tfrom, TypeDArray tto) 269 const tyf = tfrom.nextOf().toBasetype().ty;
|
| /src/crypto/external/bsd/openssl/dist/apps/lib/ |
| apps.c | 2643 TCHAR *tfrom = NULL, *tto; local 2648 tfrom = (TCHAR *)from; 2653 tfrom = malloc(sizeof(*tfrom) * (flen + tlen)); 2654 if (tfrom == NULL) 2656 tto = tfrom + flen; 2658 if (!MultiByteToWideChar(CP_ACP, 0, from, flen, (WCHAR *)tfrom, flen)) 2661 tfrom[i] = (TCHAR)from[i]; 2669 if (MoveFile(tfrom, tto)) 2673 if (DeleteFile(tto) && MoveFile(tfrom, tto) [all...] |
| /src/crypto/external/bsd/openssl.old/dist/apps/ |
| apps.c | 2144 TCHAR *tfrom = NULL, *tto; local 2149 tfrom = (TCHAR *)from; 2154 tfrom = malloc(sizeof(*tfrom) * (flen + tlen)); 2155 if (tfrom == NULL) 2157 tto = tfrom + flen; 2159 if (!MultiByteToWideChar(CP_ACP, 0, from, flen, (WCHAR *)tfrom, flen)) 2162 tfrom[i] = (TCHAR)from[i]; 2170 if (MoveFile(tfrom, tto)) 2174 if (DeleteFile(tto) && MoveFile(tfrom, tto) [all...] |
| /src/crypto/external/apache2/openssl/dist/apps/lib/ |
| apps.c | 2702 TCHAR *tfrom = NULL, *tto; local 2707 tfrom = (TCHAR *)from; 2712 tfrom = malloc(sizeof(*tfrom) * (flen + tlen)); 2713 if (tfrom == NULL) 2715 tto = tfrom + flen; 2717 if (!MultiByteToWideChar(CP_ACP, 0, from, flen, (WCHAR *)tfrom, flen)) 2720 tfrom[i] = (TCHAR)from[i]; 2728 if (MoveFile(tfrom, tto)) 2732 if (DeleteFile(tto) && MoveFile(tfrom, tto) [all...] |
| /src/external/bsd/dhcpcd/dist/src/ |
| dhcp.c | 2979 const char *tfrom; local 3013 tfrom = "from"; 3023 ifp->name, msg, tfrom, inet_ntoa(addr), sname); 3026 ifp->name, msg, a, tfrom, inet_ntoa(addr), sname); 3029 tfrom = "via"; 3034 ifp->name, msg, tfrom, inet_ntoa(addr)); 3037 ifp->name, msg, a, tfrom, inet_ntoa(addr));
|
| /src/external/gpl3/gcc/dist/gcc/cp/ |
| call.cc | 1747 tree tfrom; local 1827 tfrom = from; 1829 tfrom = unlowered_expr_type (expr); 1834 related_p = reference_related_p (to, tfrom); 1838 && !at_least_as_qualified_p (to, tfrom)) 1839 to = cp_build_qualified_type (to, cp_type_quals (tfrom)); 1840 compatible_p = reference_compatible_p (to, tfrom); 1865 conv = build_identity_conv (tfrom, expr);
|
| /src/external/gpl3/gcc.old/dist/gcc/cp/ |
| call.cc | 1714 tree tfrom; local 1788 tfrom = from; 1790 tfrom = unlowered_expr_type (expr); 1795 related_p = reference_related_p (to, tfrom); 1799 && !at_least_as_qualified_p (to, tfrom)) 1800 to = cp_build_qualified_type (to, cp_type_quals (tfrom)); 1801 compatible_p = reference_compatible_p (to, tfrom); 1826 conv = build_identity_conv (tfrom, expr);
|