HomeSort by: relevance | last modified time | path
    Searched defs:empty (Results 1 - 25 of 69) sorted by relevancy

1 2 3

  /src/tests/usr.bin/xlint/lint1/
msg_073.c 4 // Test for message: empty character constant [73]
8 /* expect+1: error: empty character constant [73] */
9 char empty = ''; variable in typeref:typename:char
msg_047.c 8 struct empty { struct
msg_065.c 10 /* Don't warn about completely empty structs, which are a GCC extension. */
11 struct empty { struct
msg_179.c 17 } empty = { variable in typeref:struct:__anonfa9bb2cc0208
  /src/usr.bin/m4/lib/
ohash_lookup_interval.c 27 unsigned int empty; local in function:ohash_lookup_interval
32 empty = NONE;
40 if (empty == NONE)
41 empty = i;
46 if (empty != NONE) {
47 h->t[empty].hv = hv;
48 h->t[empty].p = h->t[i].p;
50 return empty;
63 /* Found an empty position. */
64 if (empty != NONE)
    [all...]
ohash_lookup_memory.c 26 unsigned int empty; local in function:ohash_lookup_memory
31 empty = NONE;
39 if (empty == NONE)
40 empty = i;
43 if (empty != NONE) {
44 h->t[empty].hv = hv;
45 h->t[empty].p = h->t[i].p;
47 return empty;
59 /* Found an empty position. */
60 if (empty != NONE)
    [all...]
  /src/usr.bin/make/unit-tests/
depsrc-use.mk 33 empty: .USE target
39 action: first second empty
varmod-assign.mk 8 all: mod-assign-empty-{1,2,3,4}
74 mod-assign-empty-1:
75 # Assigning to the empty variable would obviously not work since that
80 mod-assign-empty-2:
82 # expression is empty.
86 mod-assign-empty-3:
88 # expression is empty.
92 mod-assign-empty-4:
96 # expect: mod-assign-empty-4: VAR=overwritten
cond-func-empty.mk 1 # $NetBSD: cond-func-empty.mk,v 1.29 2025/06/11 18:49:58 sjg Exp $
3 # Tests for the empty() function in .if conditions, which tests an
11 EMPTY= # empty
16 # An undefined variable counts as empty.
17 .if !empty(UNDEF)
21 # An undefined variable has the empty string as the value, and the :M
24 .if !empty(UNDEF:M*)
28 # The :S modifier replaces the empty value with an actual word. After
29 # applying the :S modifier to the expression, its value is 'empty', so it i
222 empty= # defined but empty macro
    [all...]
job-output.mk 6 @${MAKE} -f ${MAKEFILE} -j1 empty-lines
12 # size is, the empty lines must not be discarded.
13 empty-lines: .PHONY
opt-jobs-internal.mk 13 @${MAKE} -f ${MAKEFILE} -j1 indirect-expr-empty
59 # expect: indirect-expr-empty: mode=parallel
60 indirect-expr-empty: .PHONY
  /src/tests/usr.bin/indent/
opt_badp.c 12 /* An empty function body does not need a blank line. */
15 empty(void) function in typeref:typename:void
25 /* If an empty function body already has a blank line, it is kept. */
41 * does not need an empty line.
57 * A function body without declarations gets an empty line above the first
lex_char.c 10 int empty = ''; variable in typeref:typename:int
lex_string.c 10 char empty[] = ""; variable in typeref:typename:char[]
  /src/sys/external/bsd/drm2/include/linux/
llist.h 58 bool empty; local in function:llist_empty
60 empty = (atomic_load_acquire(&head->first) == NULL);
62 return empty;
  /src/lib/libc/stdio/
findfp.c 116 static FILE empty; local in function:moreglue
128 *p = empty;
  /src/sys/external/bsd/drm2/linux/
linux_radixtree.c 101 bool empty; local in function:radix_tree_empty
104 empty = radix_tree_empty_tree_p(&root->rtr_tree);
107 return empty;
  /src/usr.bin/hexdump/
odsyntax.c 79 static char empty[] = "", padding[] = PADDING; local in function:odsyntax
100 fshead->nextfu->fmt = empty;
  /src/distrib/utils/more/
main.c 229 int c, empty; local in function:cat_file
232 empty = 0;
236 empty = 0;
238 else if (empty < 2) {
240 ++empty;
  /src/lib/libc/stdlib/
radixsort.c 142 #define empty(s) (s >= sp) macro
164 while (!empty(s)) {
205 while (*cp == 0) /* Find next non-empty pile. */
255 while (!empty(s)) {
  /src/regress/sys/kern/execve/
Makefile 21 TESTSCRIPTS= empty nonexistshell devnullscript badinterplen goodscript \
34 regress: test-empty test-nonexist \
39 test-empty: ${PROG} empty
40 ${RP} empty | diff ${OD}/empty -
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerDictionary.h 101 bool empty() const { return Size == 0; } function in class:fuzzer::Dictionary
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_bvgraph.h 36 bool empty() const { function in class:__sanitizer::BVGraph
38 if (!v[i].empty())
54 while (!t1.empty()) {
90 while (!t1.empty()) {
92 if (!v[idx].empty()) {
117 while (!to_visit.empty()) {
sanitizer_list.h 25 // and an object with all zero fields should represent a valid empty list.
37 bool empty() const { return size_ == 0; } function in struct:__sanitizer::IntrusiveList
41 if (empty()) {
54 if (empty()) {
66 CHECK(!empty());
74 CHECK(!empty());
91 if (l->empty())
93 if (empty()) {
95 } else if (!l->empty()) {
105 if (l->empty())
    [all...]
  /src/usr.bin/dc/
stack.c 48 bool empty = stack->sp == -1; local in function:stack_empty
49 if (empty)
50 warnx("stack empty");
51 return empty;
110 warnx("stack empty");
122 warnx("stack empty");

Completed in 23 milliseconds

1 2 3