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

/freebsd-10-stable/sys/contrib/dev/acpica/components/namespace/
H A Dnsnames.c184 * PathSize - Size of returned path name buffer
195 * 'PathSize'. So callers are able to check the returning value
204 UINT32 PathSize,
227 * Make sure the PathSize is correct, so that we don't need to
228 * validate both FullPath and PathSize.
232 PathSize = 0;
245 ACPI_PATH_PUT8(FullPath, PathSize, AML_DUAL_NAME_PREFIX, Length);
259 ACPI_PATH_PUT8(FullPath, PathSize, c, Length);
266 ACPI_PATH_PUT8(FullPath, PathSize, AML_ROOT_PREFIX, Length);
270 if (Length <= PathSize)
201 AcpiNsBuildNormalizedPath( ACPI_NAMESPACE_NODE *Node, char *FullPath, UINT32 PathSize, BOOLEAN NoTrailing) argument
[all...]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/
H A DExprCXX.cpp597 unsigned PathSize = (BasePath ? BasePath->size() : 0); local
599 + PathSize * sizeof(CXXBaseSpecifier*));
601 new (Buffer) CXXStaticCastExpr(T, VK, K, Op, PathSize, WrittenTy, L,
603 if (PathSize) E->setCastPath(*BasePath);
608 unsigned PathSize) {
610 C.Allocate(sizeof(CXXStaticCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
611 return new (Buffer) CXXStaticCastExpr(EmptyShell(), PathSize);
622 unsigned PathSize = (BasePath ? BasePath->size() : 0); local
624 + PathSize * sizeof(CXXBaseSpecifier*));
626 new (Buffer) CXXDynamicCastExpr(T, VK, K, Op, PathSize, WrittenT
607 CreateEmpty(const ASTContext &C, unsigned PathSize) argument
632 CreateEmpty(const ASTContext &C, unsigned PathSize) argument
679 unsigned PathSize = (BasePath ? BasePath->size() : 0); local
690 CreateEmpty(const ASTContext &C, unsigned PathSize) argument
714 unsigned PathSize = (BasePath ? BasePath->size() : 0); local
724 CreateEmpty(const ASTContext &C, unsigned PathSize) argument
[all...]
H A DExpr.cpp1695 unsigned PathSize = (BasePath ? BasePath->size() : 0); local
1697 C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1699 new (Buffer) ImplicitCastExpr(T, Kind, Operand, PathSize, VK);
1700 if (PathSize) E->setCastPath(*BasePath);
1705 unsigned PathSize) {
1707 C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1708 return new (Buffer) ImplicitCastExpr(EmptyShell(), PathSize);
1717 unsigned PathSize = (BasePath ? BasePath->size() : 0); local
1719 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1721 new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, WrittenT
1704 CreateEmpty(const ASTContext &C, unsigned PathSize) argument
1726 CreateEmpty(const ASTContext &C, unsigned PathSize) argument
[all...]
/freebsd-10-stable/sys/contrib/dev/acpica/include/
H A Dacnamesp.h370 UINT32 PathSize,
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/
H A DExpr.h2743 explicit ImplicitCastExpr(EmptyShell Shell, unsigned PathSize) argument
2744 : CastExpr(ImplicitCastExprClass, Shell, PathSize) { }
2759 unsigned PathSize);
2803 CastKind kind, Expr *op, unsigned PathSize,
2805 : CastExpr(SC, exprTy, VK, kind, op, PathSize), TInfo(writtenTy) {}
2808 ExplicitCastExpr(StmtClass SC, EmptyShell Shell, unsigned PathSize) argument
2809 : CastExpr(SC, Shell, PathSize) { }
2835 unsigned PathSize, TypeSourceInfo *writtenTy,
2837 : ExplicitCastExpr(CStyleCastExprClass, exprTy, vk, kind, op, PathSize,
2841 explicit CStyleCastExpr(EmptyShell Shell, unsigned PathSize) argument
2802 ExplicitCastExpr(StmtClass SC, QualType exprTy, ExprValueKind VK, CastKind kind, Expr *op, unsigned PathSize, TypeSourceInfo *writtenTy) argument
2834 CStyleCastExpr(QualType exprTy, ExprValueKind vk, CastKind kind, Expr *op, unsigned PathSize, TypeSourceInfo *writtenTy, SourceLocation l, SourceLocation r) argument
[all...]
H A DExprCXX.h188 CastKind kind, Expr *op, unsigned PathSize,
192 : ExplicitCastExpr(SC, ty, VK, kind, op, PathSize, writtenTy), Loc(l),
195 explicit CXXNamedCastExpr(StmtClass SC, EmptyShell Shell, unsigned PathSize) argument
196 : ExplicitCastExpr(SC, Shell, PathSize) { }
239 explicit CXXStaticCastExpr(EmptyShell Empty, unsigned PathSize) argument
240 : CXXNamedCastExpr(CXXStaticCastExprClass, Empty, PathSize) { }
250 unsigned PathSize);
1220 explicit CXXFunctionalCastExpr(EmptyShell Shell, unsigned PathSize)
1221 : ExplicitCastExpr(CXXFunctionalCastExprClass, Shell, PathSize) { }
1232 unsigned PathSize);
187 CXXNamedCastExpr(StmtClass SC, QualType ty, ExprValueKind VK, CastKind kind, Expr *op, unsigned PathSize, TypeSourceInfo *writtenTy, SourceLocation l, SourceLocation RParenLoc, SourceRange AngleBrackets) argument
[all...]

Completed in 211 milliseconds