/src/tests/include/sys/ |
t_list.c | 56 } *n1, *n2, *n3; local in function:ATF_TC_BODY 72 n3 = LIST_FIRST(&new_head); 73 ATF_CHECK_MSG(n3->value == 2, "Unexpected value for LIST_FIRST"); 75 LIST_REMOVE(n3, entries);
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
sanitizer_deadlock_detector_test.cc | 97 // Cycle: n1->n2->n3->n1 103 uptr n3 = d.newNode(3); local in function:RunBasicTest 111 EXPECT_FALSE(d.onLock(&dtls, n3)); 112 d.onUnlock(&dtls, n3); 115 EXPECT_FALSE(d.onLock(&dtls, n3)); 121 EXPECT_EQ(path[2], n3); 124 EXPECT_EQ(d.getData(n3), 3U); 126 d.onUnlock(&dtls, n3);
|
/src/sys/arch/sh3/sh3/ |
db_disasm.c | 179 int n0, n3; local in function:get_opcode 184 n3 = (insn & 0x000f); 186 if (f[n0][n3] != NULL) { 187 (*f[n0][n3])(pc, buf, len);
|
/src/bin/sh/ |
parser.c | 186 union node *ntop, *n1, *n2, *n3; local in function:list 204 n3 = stalloc(sizeof(struct nredir)); 205 n3->type = NBACKGND; 206 n3->nredir.n = n2; 207 n3->nredir.redirect = NULL; 208 n2 = n3; 221 n3 = stalloc(sizeof(struct nbinary)); 222 n3->type = NSEMI; 223 n3->nbinary.ch1 = n1->nbinary.ch2; 224 n3->nbinary.ch2 = n2 263 union node *n1, *n2, *n3; local in function:andor [all...] |
/src/lib/libc/stdio/ |
vfwprintf.c | 681 int n3; local in function:WDECL 711 for (n3 = 0; n3 < (len); n3++) \ 712 if (__xfputwc((ptr)[n3], fp, loc) == END_OF_FILE) { \
|