Home
last modified time | relevance | path

Searched refs:PathSize (Results 1 – 6 of 6) sorted by relevance

/freebsd-12-stable/sys/contrib/dev/acpica/components/namespace/
Dnsnames.c367 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-12-stable/contrib/llvm-project/clang/lib/AST/
DExprCXX.cpp713 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local
716 PathSize, FPO.requiresTrailingStorage())); in Create()
717 auto *E = new (Buffer) CXXStaticCastExpr(T, VK, K, Op, PathSize, WrittenTy, in Create()
719 if (PathSize) in Create()
726 unsigned PathSize, in CreateEmpty() argument
730 PathSize, HasFPFeatures)); in CreateEmpty()
731 return new (Buffer) CXXStaticCastExpr(EmptyShell(), PathSize, HasFPFeatures); in CreateEmpty()
742 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local
743 void *Buffer = C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize)); in Create()
745 new (Buffer) CXXDynamicCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create()
[all …]
DExpr.cpp2011 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local
2014 PathSize, FPO.requiresTrailingStorage())); in Create()
2021 new (Buffer) ImplicitCastExpr(T, Kind, Operand, PathSize, FPO, VK); in Create()
2022 if (PathSize) in Create()
2029 unsigned PathSize, in CreateEmpty() argument
2033 PathSize, HasFPFeatures)); in CreateEmpty()
2034 return new (Buffer) ImplicitCastExpr(EmptyShell(), PathSize, HasFPFeatures); in CreateEmpty()
2043 unsigned PathSize = (BasePath ? BasePath->size() : 0); in Create() local
2046 PathSize, FPO.requiresTrailingStorage())); in Create()
2048 new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, FPO, WrittenTy, L, R); in Create()
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DExprCXX.h388 Expr *op, unsigned PathSize, bool HasFPFeatures, in CXXNamedCastExpr() argument
391 : ExplicitCastExpr(SC, ty, VK, kind, op, PathSize, HasFPFeatures, in CXXNamedCastExpr()
395 explicit CXXNamedCastExpr(StmtClass SC, EmptyShell Shell, unsigned PathSize, in CXXNamedCastExpr() argument
397 : ExplicitCastExpr(SC, Shell, PathSize, HasFPFeatures) {} in CXXNamedCastExpr()
446 explicit CXXStaticCastExpr(EmptyShell Empty, unsigned PathSize, in CXXStaticCastExpr() argument
448 : CXXNamedCastExpr(CXXStaticCastExprClass, Empty, PathSize, in CXXStaticCastExpr()
465 unsigned PathSize, bool hasFPFeatures);
1745 explicit CXXFunctionalCastExpr(EmptyShell Shell, unsigned PathSize, in CXXFunctionalCastExpr() argument
1747 : ExplicitCastExpr(CXXFunctionalCastExprClass, Shell, PathSize, in CXXFunctionalCastExpr()
1764 CreateEmpty(const ASTContext &Context, unsigned PathSize, bool HasFPFeatures);
DExpr.h3626 explicit ImplicitCastExpr(EmptyShell Shell, unsigned PathSize, in ImplicitCastExpr() argument
3628 : CastExpr(ImplicitCastExprClass, Shell, PathSize, HasFPFeatures) {} in ImplicitCastExpr()
3655 unsigned PathSize, bool HasFPFeatures);
3695 CastKind kind, Expr *op, unsigned PathSize, in ExplicitCastExpr() argument
3697 : CastExpr(SC, exprTy, VK, kind, op, PathSize, HasFPFeatures), in ExplicitCastExpr()
3701 ExplicitCastExpr(StmtClass SC, EmptyShell Shell, unsigned PathSize, in ExplicitCastExpr() argument
3703 : CastExpr(SC, Shell, PathSize, HasFPFeatures) {} in ExplicitCastExpr()
3732 unsigned PathSize, FPOptionsOverride FPO, in CStyleCastExpr() argument
3734 : ExplicitCastExpr(CStyleCastExprClass, exprTy, vk, kind, op, PathSize, in CStyleCastExpr()
3742 explicit CStyleCastExpr(EmptyShell Shell, unsigned PathSize, in CStyleCastExpr() argument
[all …]
/freebsd-12-stable/sys/contrib/dev/acpica/include/
Dacnamesp.h487 UINT32 PathSize,