/freebsd/contrib/ncurses/misc/ |
H A D | makellib | 34 # System-dependent wrapper for 'lint' that creates a lint-library via the 37 # b. Process llib-lXXX with the system's lint utility, making 41 # Using the intermediate file llib-lXXX bypasses a weakness of lint (passing 46 # to get a usable lint-library (not all C-preprocessors work well). 47 # b. The system's lint utility won't recognize -lXXX as a lint-library 62 DST="$HOME/lib/$ARCH/lint" 141 echo "Sorry. I do not know how to build a lint-library for $ARCH" 148 if ( lint "$CREATE" "$OPT" "$TARGET" ) 152 for p in $HOME/lib $HOME/lib/$ARCH $HOME/lib/$ARCH/lint
|
H A D | tdlint | 35 # Lint-script that allows user's own lint libraries, in addition to the ones 63 # LIBDIR=$HOME/lib/$ARCH/lint ;export LIBDIR 64 for p in $HOME/lib/$ARCH/lint /usr/lib/lint /usr/lib 114 exec lint $OPT $FILES $LIBS
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | Lint.h | 1 //===-- llvm/Analysis/Lint.h - LLVM IR Lint ---------------------*- C++ -*-===// 9 // This file defines lint interfaces that can be used for some validation of 11 // something bad. In contrast to the Verifier, the Lint checker checks for 14 // To see what specifically is checked, look at Lint.cpp 28 /// Lint a module. 34 // Lint a function.
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | Lint.cpp | 1 //===-- Lint.cpp - Check for common errors in LLVM IR ---------------------===// 36 #include "llvm/Analysis/Lint.h" 80 static const char LintAbortOnErrorArgName[] = "lint-abort-on-error"; 83 cl::desc("In the Lint pass, abort on errors.")); 93 class Lint : public InstVisitor<Lint> { class 94 friend class InstVisitor<Lint>; 136 Lint(Module *Mod, const DataLayout *DL, AliasAnalysis *AA, in Lint() function in __anon88a7481a0111::Lint 181 void Lint::visitFunction(Function &F) { in visitFunction() 190 void Lint::visitCallBase(CallBase &I) { in visitCallBase() 369 void Lint::visitReturnInst(ReturnInst &I) { in visitReturnInst() [all …]
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | opt-debug-lint.exp | 1 make: "opt-debug-lint.mk" line 20: Variable "X" is undefined 2 make: "opt-debug-lint.mk" line 43: Variable "UNDEF" is undefined 3 make: "opt-debug-lint.mk" line 65: Missing delimiter ':' after modifier "L" 5 make: "opt-debug-lint.mk" line 65: Missing delimiter ':' after modifier "P" 7 make: "opt-debug-lint.mk" line 74: Unknown modifier "${"
|
H A D | opt-debug-lint.mk | 1 # $NetBSD: opt-debug-lint.mk,v 1.22 2025/01/11 20:54:45 rillig Exp $ 18 # cond-undef-lint.mk 38 # but only in lint mode. Before, it had only silently returned var_Error, 61 # Since 2020-10-03, in lint mode the variable modifier must be separated 69 # Between 2020-10-03 and var.c 1.752 from 2020-12-20, in lint mode the 85 # In lint mode, the whole variable text is evaluated to check for unclosed 95 # This only happened in lint mode since in default mode the early check for
|
H A D | cond-undef-lint.exp | 1 make: "cond-undef-lint.mk" line 24: Variable "UNDEF" is undefined 2 make: "cond-undef-lint.mk" line 35: Variable "VAR." is undefined 3 make: "cond-undef-lint.mk" line 45: Variable "VAR.defined" is undefined
|
H A D | cond-undef-lint.mk | 1 # $NetBSD: cond-undef-lint.mk,v 1.8 2025/01/11 21:21:33 rillig Exp $ 3 # Tests for defined and undefined variables in .if conditions, in lint mode. 5 # As of 2020-09-14, lint mode contains experimental code for printing 10 # opt-debug-lint.mk
|
H A D | cond-op-and-lint.mk | 1 # $NetBSD: cond-op-and-lint.mk,v 1.2 2023/06/01 20:56:35 rillig Exp $ 3 # Tests for the && operator in .if conditions, in lint mode. 7 # The '&' operator is not allowed in lint mode.
|
H A D | cond-op-or-lint.mk | 1 # $NetBSD: cond-op-or-lint.mk,v 1.2 2023/06/01 20:56:35 rillig Exp $ 3 # Tests for the || operator in .if conditions, in lint mode. 7 # The '|' operator is not allowed in lint mode.
|
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/ |
H A D | fastmath2_ldlib_asm.S | 12 lint manta = a & MANTMASK; 14 lint mantb = b & MANTMASK; 17 lint mant; 44 c = (mant & MANTMASK) | (((lint) exp) & EXP_MASK); 119 lint manta = a & MANTMASK; 121 lint mantb = b & MANTMASK; 124 lint mant; 143 c = (mant & MANTMASK) | (((lint) exp) & EXP_MASK); 219 lint manta = a & MANTMASK; 221 lint mantb = b & MANTMASK; [all …]
|
H A D | fastmath2_dlib_asm.S | 15 lint manta = a & MANTMASK; 17 lint mantb = b & MANTMASK; 20 lint mant; 47 c = (mant & MANTMASK) | (((lint) exp) & EXP_MASK); 123 lint manta = a & MANTMASK; 125 lint mantb = b & MANTMASK; 128 lint mant; 147 c = (mant & MANTMASK) | (((lint) exp) & EXP_MASK); 224 lint manta = a & MANTMASK; 226 lint mantb = b & MANTMASK; [all …]
|
H A D | fastmath_dlib_asm.S | 16 lint manta = a & MANTMASK; 18 lint mantb = b & MANTMASK; 21 lint mant; 48 c = (mant & MANTMASK) | (((lint) exp) & EXP_MASK); 151 lint manta = a & MANTMASK; 153 lint mantb = b & MANTMASK; 156 lint mant; 183 c = (mant & MANTMASK) | (((lint) exp) & EXP_MASK); 286 lint manta = a & MANTMASK; 288 lint mantb = b & MANTMASK; [all …]
|
/freebsd/lib/libc/tests/secure/ |
H A D | Makefile | 21 lint-generator: .PHONY 23 1>&2 echo "devel/lua-luacheck is required to regenerate and lint these tests"; \ 28 generate-tests: .PHONY lint-generator 32 .ORDER: lint-generator generate-tests-${tcat}
|
/freebsd/sys/dev/pms/RefTisa/sallsdk/spc/ |
H A D | sallist.h | 96 /*lint -emacro(613,saLlistInitialize) */ 133 /*lint -emacro(613,saLlinkInitialize) */ 170 /*lint -emacro(506,saLlistAdd) */ 171 /*lint -emacro(613,saLlistAdd) */ 172 /*lint -emacro(666,saLlistAdd) */ 173 /*lint -emacro(720,saLlistAdd) */ 220 /*lint -emacro(506,saLlistInsert) */ 221 /*lint -emacro(613,saLlistInsert) */ 222 /*lint -emacro(666,saLlistInsert) */ 223 /*lint -emacro(720,saLlistInsert) */ [all …]
|
/freebsd/contrib/ncurses/progs/ |
H A D | Makefile.in | 132 LINT = @LINT@ 178 @MAKE_PHONY@.PHONY : lint 362 lint: 363 @MAKE_TERMINFO@ $(LINT) $(LINT_OPTS) $(CPPFLAGS) $(srcdir)/tic.c $(srcdir)/dump_entry.c $(LINT_… 364 @MAKE_TERMINFO@ $(LINT) $(LINT_OPTS) $(CPPFLAGS) $(srcdir)/toe.c $(LINT_LIBS) 365 $(LINT) $(LINT_OPTS) $(CPPFLAGS) $(srcdir)/clear.c $(LINT_LIBS) 366 $(LINT) $(LINT_OPTS) $(CPPFLAGS) $(srcdir)/infocmp.c $(srcdir)/dump_entry.c $(LINT_LIBS) 367 $(LINT) $(LINT_OPTS) $(CPPFLAGS) $(srcdir)/tabs.c $(LINT_LIBS) 368 $(LINT) $(LINT_OPTS) $(CPPFLAGS) $(srcdir)/tput.c $(LINT_LIBS) 369 $(LINT) $(LINT_OPTS) $(CPPFLAGS) $(srcdir)/tset.c $(LINT_LIBS)
|
/freebsd/lib/libc/regex/grot/ |
H A D | Makefile | 34 # Stuff that matters only if you're trying to lint the package. 89 lint $(LINTFLAGS) -h $(LINTC) 2>&1 | egrep -v '$(JUNKLINT)' | tee lint 95 rm -f junk* core regex.tmp lint
|
/freebsd/contrib/tcsh/ |
H A D | tc.alloc.c | 154 #ifndef lint 179 #ifndef lint in malloc() 222 /* fool lint */ in malloc() 244 #endif /* !lint */ in malloc() 247 #ifndef lint 308 #ifndef lint in free() 350 #ifndef lint in calloc() 380 #ifndef lint 383 #endif /* lint */ 388 #ifndef lint in realloc() [all …]
|
/freebsd/contrib/netbsd-tests/lib/libc/stdio/ |
H A D | t_popen.c | 33 #ifndef lint 36 #endif /* not lint */ 38 #ifndef lint 40 #endif /* not lint */
|
/freebsd/contrib/unvis/ |
H A D | unvis.c | 33 #ifndef lint 36 #endif /* not lint */ 38 #ifndef lint 43 #endif /* not lint */
|
/freebsd/contrib/sendmail/include/sm/ |
H A D | gen.h | 29 # ifdef lint 32 # else /* lint */ 35 # endif /* lint */
|
/freebsd/sys/amd64/conf/ |
H A D | LINT-NOINET | 2 include LINT 3 ident LINT-NOINET
|
H A D | LINT-NOINET6 | 2 include LINT 3 ident LINT-NOINET6
|
/freebsd/contrib/bmake/mk/ |
H A D | README | 146 LINTLIBDIR Base path for lint(1) library installation. [/usr/libdata/lint] 210 NOLINT Do not build lint libraries. [set, set unconditionally] 242 lint: 243 run lint on the source files 351 clean, cleandir, depend, includes, install, lint, and tags. For all of 369 includes, install, lint, and tags. It has a limited number of suffixes, 378 LINTLIBDIR Target directory for lint libraries.
|
/freebsd/gnu/ |
H A D | Makefile.inc | 1 # Do not lint the GNU stuff. It is all externally maintained and 2 # lint output is wasteful noise here.
|