| /freebsd/sys/contrib/dev/acpica/components/namespace/ |
| H A D | nsnames.c | 367 UINT32 PathSize, in AcpiNsBuildNormalizedPath() argument 395 PathSize = 0; in AcpiNsBuildNormalizedPath() 408 ACPI_PATH_PUT8(FullPath, PathSize, AML_DUAL_NAME_PREFIX, Length); in AcpiNsBuildNormalizedPath() 422 ACPI_PATH_PUT8(FullPath, PathSize, c, Length); in AcpiNsBuildNormalizedPath() 429 ACPI_PATH_PUT8(FullPath, PathSize, AML_ROOT_PREFIX, Length); in AcpiNsBuildNormalizedPath() 433 if (Length <= PathSize) in AcpiNsBuildNormalizedPath() 449 ACPI_PATH_PUT8 (FullPath, PathSize, '\0', Length); in AcpiNsBuildNormalizedPath()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ExprCXX.cpp | 773 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local 776 PathSize, FPO.requiresTrailingStorage())); in Create() 777 auto *E = new (Buffer) CXXStaticCastExpr(T, VK, K, Op, PathSize, WrittenTy, in Create() 779 if (PathSize) in Create() 786 unsigned PathSize, in CreateEmpty() argument 790 PathSize, HasFPFeatures)); in CreateEmpty() 791 return new (Buffer) CXXStaticCastExpr(EmptyShell(), PathSize, HasFPFeatures); in CreateEmpty() 802 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local 803 void *Buffer = C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize)); in Create() 805 new (Buffer) CXXDynamicCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create() [all …]
|
| H A D | Expr.cpp | 2077 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local 2080 PathSize, FPO.requiresTrailingStorage())); in Create() 2087 new (Buffer) ImplicitCastExpr(T, Kind, Operand, PathSize, FPO, VK); in Create() 2088 if (PathSize) in Create() 2095 unsigned PathSize, in CreateEmpty() argument 2099 PathSize, HasFPFeatures)); in CreateEmpty() 2100 return new (Buffer) ImplicitCastExpr(EmptyShell(), PathSize, HasFPFeatures); in CreateEmpty() 2109 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local 2112 PathSize, FPO.requiresTrailingStorage())); in Create() 2114 new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, FPO, WrittenTy, L, R); in Create() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 3315 unsigned PathSize = Record[ASTStmtReader::NumExprFields]; in ReadStmtFromStream() local 3319 S = ImplicitCastExpr::CreateEmpty(Context, PathSize, HasFPFeatures); in ReadStmtFromStream() 3324 unsigned PathSize = Record[ASTStmtReader::NumExprFields]; in ReadStmtFromStream() local 3328 S = CStyleCastExpr::CreateEmpty(Context, PathSize, HasFPFeatures); in ReadStmtFromStream() 4101 unsigned PathSize = Record[ASTStmtReader::NumExprFields]; in ReadStmtFromStream() local 4105 S = CXXStaticCastExpr::CreateEmpty(Context, PathSize, HasFPFeatures); in ReadStmtFromStream() 4110 unsigned PathSize = Record[ASTStmtReader::NumExprFields]; in ReadStmtFromStream() local 4111 S = CXXDynamicCastExpr::CreateEmpty(Context, PathSize); in ReadStmtFromStream() 4116 unsigned PathSize = Record[ASTStmtReader::NumExprFields]; in ReadStmtFromStream() local 4117 S = CXXReinterpretCastExpr::CreateEmpty(Context, PathSize); in ReadStmtFromStream() [all …]
|
| /freebsd/sys/contrib/dev/acpica/include/ |
| H A D | acnamesp.h | 487 UINT32 PathSize,
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ExprCXX.h | 389 Expr *op, unsigned PathSize, bool HasFPFeatures, in CXXNamedCastExpr() argument 392 : ExplicitCastExpr(SC, ty, VK, kind, op, PathSize, HasFPFeatures, in CXXNamedCastExpr() 396 explicit CXXNamedCastExpr(StmtClass SC, EmptyShell Shell, unsigned PathSize, in CXXNamedCastExpr() argument 398 : ExplicitCastExpr(SC, Shell, PathSize, HasFPFeatures) {} in CXXNamedCastExpr() 447 explicit CXXStaticCastExpr(EmptyShell Empty, unsigned PathSize, in CXXStaticCastExpr() argument 449 : CXXNamedCastExpr(CXXStaticCastExprClass, Empty, PathSize, in CXXStaticCastExpr() 466 unsigned PathSize, bool hasFPFeatures); 1835 explicit CXXFunctionalCastExpr(EmptyShell Shell, unsigned PathSize, in CXXFunctionalCastExpr() argument 1837 : ExplicitCastExpr(CXXFunctionalCastExprClass, Shell, PathSize, in CXXFunctionalCastExpr() 1854 CreateEmpty(const ASTContext &Context, unsigned PathSize, bool HasFPFeatures);
|
| H A D | Expr.h | 3794 explicit ImplicitCastExpr(EmptyShell Shell, unsigned PathSize, in ImplicitCastExpr() argument 3796 : CastExpr(ImplicitCastExprClass, Shell, PathSize, HasFPFeatures) {} in ImplicitCastExpr() 3823 unsigned PathSize, bool HasFPFeatures); 3863 CastKind kind, Expr *op, unsigned PathSize, in ExplicitCastExpr() argument 3865 : CastExpr(SC, exprTy, VK, kind, op, PathSize, HasFPFeatures), in ExplicitCastExpr() 3871 ExplicitCastExpr(StmtClass SC, EmptyShell Shell, unsigned PathSize, in ExplicitCastExpr() argument 3873 : CastExpr(SC, Shell, PathSize, HasFPFeatures) {} in ExplicitCastExpr() 3902 unsigned PathSize, FPOptionsOverride FPO, in CStyleCastExpr() argument 3904 : ExplicitCastExpr(CStyleCastExprClass, exprTy, vk, kind, op, PathSize, in CStyleCastExpr() 3912 explicit CStyleCastExpr(EmptyShell Shell, unsigned PathSize, in CStyleCastExpr() argument [all …]
|