Home
last modified time | relevance | path

Searched refs:NullPos (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp964 uint32_t NullPos = StringRef(string, left).find('\0'); in checkLinkerOptCommand() local
965 if (0xffffffff == NullPos) in checkLinkerOptCommand()
969 uint32_t len = std::min(NullPos, left) + 1; in checkLinkerOptCommand()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp453 unsigned NullPos = Attr->getNullPos(); in DiagnoseSentinelCalls() local
454 assert((NullPos == 0 || NullPos == 1) && "invalid null position on sentinel"); in DiagnoseSentinelCalls()
455 NumFormalParams = (NullPos > NumFormalParams ? 0 : NumFormalParams - NullPos); in DiagnoseSentinelCalls()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp9279 uint32_t NullPos = StringRef(string, left).find('\0'); in PrintLinkerOptionCommand() local
9280 uint32_t len = std::min(NullPos, left) + 1; in PrintLinkerOptionCommand()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td2989 DefaultIntArgument<"NullPos", 0>];