/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 | 767 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local 770 PathSize, FPO.requiresTrailingStorage())); in Create() 771 auto *E = new (Buffer) CXXStaticCastExpr(T, VK, K, Op, PathSize, WrittenTy, in Create() 773 if (PathSize) in Create() 780 unsigned PathSize, in CreateEmpty() argument 784 PathSize, HasFPFeatures)); in CreateEmpty() 785 return new (Buffer) CXXStaticCastExpr(EmptyShell(), PathSize, HasFPFeatures); in CreateEmpty() 796 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local 797 void *Buffer = C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize)); in Create() 799 new (Buffer) CXXDynamicCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create() [all …]
|
H A D | Expr.cpp | 2079 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local 2082 PathSize, FPO.requiresTrailingStorage())); in Create() 2089 new (Buffer) ImplicitCastExpr(T, Kind, Operand, PathSize, FPO, VK); in Create() 2090 if (PathSize) in Create() 2097 unsigned PathSize, in CreateEmpty() argument 2101 PathSize, HasFPFeatures)); in CreateEmpty() 2102 return new (Buffer) ImplicitCastExpr(EmptyShell(), PathSize, HasFPFeatures); in CreateEmpty() 2111 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local 2114 PathSize, FPO.requiresTrailingStorage())); in Create() 2116 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 | 3188 unsigned PathSize = Record[ASTStmtReader::NumExprFields]; in ReadStmtFromStream() local 3192 S = ImplicitCastExpr::CreateEmpty(Context, PathSize, HasFPFeatures); in ReadStmtFromStream() 3197 unsigned PathSize = Record[ASTStmtReader::NumExprFields]; in ReadStmtFromStream() local 3201 S = CStyleCastExpr::CreateEmpty(Context, PathSize, HasFPFeatures); in ReadStmtFromStream() 3958 unsigned PathSize = Record[ASTStmtReader::NumExprFields]; in ReadStmtFromStream() local 3962 S = CXXStaticCastExpr::CreateEmpty(Context, PathSize, HasFPFeatures); in ReadStmtFromStream() 3967 unsigned PathSize = Record[ASTStmtReader::NumExprFields]; in ReadStmtFromStream() local 3968 S = CXXDynamicCastExpr::CreateEmpty(Context, PathSize); in ReadStmtFromStream() 3973 unsigned PathSize = Record[ASTStmtReader::NumExprFields]; in ReadStmtFromStream() local 3974 S = CXXReinterpretCastExpr::CreateEmpty(Context, PathSize); in ReadStmtFromStream() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | ExprCXX.h | 387 Expr *op, unsigned PathSize, bool HasFPFeatures, in CXXNamedCastExpr() argument 390 : ExplicitCastExpr(SC, ty, VK, kind, op, PathSize, HasFPFeatures, in CXXNamedCastExpr() 394 explicit CXXNamedCastExpr(StmtClass SC, EmptyShell Shell, unsigned PathSize, in CXXNamedCastExpr() argument 396 : ExplicitCastExpr(SC, Shell, PathSize, HasFPFeatures) {} in CXXNamedCastExpr() 445 explicit CXXStaticCastExpr(EmptyShell Empty, unsigned PathSize, in CXXStaticCastExpr() argument 447 : CXXNamedCastExpr(CXXStaticCastExprClass, Empty, PathSize, in CXXStaticCastExpr() 464 unsigned PathSize, bool hasFPFeatures); 1833 explicit CXXFunctionalCastExpr(EmptyShell Shell, unsigned PathSize, in CXXFunctionalCastExpr() argument 1835 : ExplicitCastExpr(CXXFunctionalCastExprClass, Shell, PathSize, in CXXFunctionalCastExpr() 1852 CreateEmpty(const ASTContext &Context, unsigned PathSize, bool HasFPFeatures);
|
H A D | Expr.h | 3688 explicit ImplicitCastExpr(EmptyShell Shell, unsigned PathSize, in ImplicitCastExpr() argument 3690 : CastExpr(ImplicitCastExprClass, Shell, PathSize, HasFPFeatures) {} in ImplicitCastExpr() 3717 unsigned PathSize, bool HasFPFeatures); 3757 CastKind kind, Expr *op, unsigned PathSize, in ExplicitCastExpr() argument 3759 : CastExpr(SC, exprTy, VK, kind, op, PathSize, HasFPFeatures), in ExplicitCastExpr() 3765 ExplicitCastExpr(StmtClass SC, EmptyShell Shell, unsigned PathSize, in ExplicitCastExpr() argument 3767 : CastExpr(SC, Shell, PathSize, HasFPFeatures) {} in ExplicitCastExpr() 3796 unsigned PathSize, FPOptionsOverride FPO, in CStyleCastExpr() argument 3798 : ExplicitCastExpr(CStyleCastExprClass, exprTy, vk, kind, op, PathSize, in CStyleCastExpr() 3806 explicit CStyleCastExpr(EmptyShell Shell, unsigned PathSize, in CStyleCastExpr() argument [all …]
|
/freebsd/sys/contrib/dev/acpica/include/ |
H A D | acnamesp.h | 487 UINT32 PathSize,
|