Searched refs:FOUND (Results 1 - 25 of 32) sorted by relevance

12

/netbsd-current/external/bsd/libfido2/dist/tools/
H A Dfido2-unprot.sh48 FOUND=0
56 FOUND=1
61 if [ $FOUND -eq 0 ] ; then
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
H A DOpenMPOpt.h28 Value = OpenMPInModule::OpenMP::FOUND;
48 enum class OpenMP { FOUND, NOT_FOUND, UNKNOWN } Value = OpenMP::UNKNOWN; member in class:llvm::omp::OpenMPInModule::OpenMP
/netbsd-current/external/gpl3/gdb/dist/gdb/tui/
H A Dtui-layout.h37 FOUND, enumerator in enum:tui_adjust_result
163 return m_contents == name ? FOUND : NOT_FOUND;
168 return m_contents == name ? FOUND : NOT_FOUND;
/netbsd-current/sbin/fsck_ffs/
H A Dpass3.c122 if ((ckinode(dp, &idesc) & FOUND) == 0)
126 if (ckinode(ginode(inp->i_parent), &idesc) & FOUND)
H A Dfsck.h364 #define FOUND 0x10 macro
H A Dinode.c622 return (STOP|FOUND);
635 return (STOP|FOUND);
650 return (STOP|FOUND|ALTERED);
/netbsd-current/external/gpl3/gdb.old/dist/gdb/tui/
H A Dtui-layout.h37 FOUND, enumerator in enum:tui_adjust_result
129 return m_contents == name ? FOUND : NOT_FOUND;
/netbsd-current/sbin/fsck_lfs/
H A Dfsck.h172 #define FOUND 0x10 macro
H A Dutilities.c216 if ((ckinode(ginode(ino), &idesc) & FOUND) == 0)
225 if ((ckinode(ginode(idesc.id_number), &idesc) & FOUND) == 0)
H A Dinode.c518 return (STOP | FOUND);
533 return (STOP | FOUND);
/netbsd-current/sys/ufs/ext2fs/
H A Dext2fs_dir.h121 FOUND enumerator in enum:ext2fs_slotstatus
H A Dext2fs_lookup.c355 slotstatus = FOUND;
476 if (slotstatus != FOUND) {
483 slotstatus = FOUND;
729 ssp->slotstatus = FOUND;
786 if (ssp->slotstatus != FOUND)
/netbsd-current/external/ibm-public/postfix/dist/src/global/
H A Dbounce_log.c166 #define FOUND 1 /* in logfile entry */ macro
192 if (state == FOUND)
205 state = FOUND;
/netbsd-current/external/ibm-public/postfix/dist/src/trivial-rewrite/
H A Dtransport.c179 #define FOUND 1 macro
281 return (FOUND);
297 return (FOUND);
/netbsd-current/lib/libcurses/
H A Dsetterm.c273 #define FOUND 4 macro
304 seq=FOUND;
318 case FOUND:
/netbsd-current/sbin/fsck_ext2fs/
H A Dfsck.h231 #define FOUND 0x10 macro
H A Dutilities.c439 if ((ckinode(ginode(ino), &idesc) & FOUND) == 0)
446 if ((ckinode(ginode(idesc.id_number), &idesc)&FOUND) == 0)
H A Dinode.c611 return (STOP|FOUND);
626 return (STOP|FOUND);
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
H A Dbreak-interp.exp145 set displacement "FOUND-$displacement"
181 if ![regexp {^(NONE|FOUND-.*)$} $displacement] {
240 set displacement "FOUND-$displacement"
251 if ![regexp {^(NONE|FOUND-.*)$} $displacement] {
292 set displacement "FOUND-$displacement"
302 if ![regexp {^(NONE|FOUND-.*)$} $displacement] {
523 set displacement "FOUND-$displacement"
534 if ![regexp {^(NONE|FOUND-.*)$} $displacement] {
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Dbreak-interp.exp154 set displacement "FOUND-$displacement"
190 if ![regexp {^(NONE|FOUND-.*)$} $displacement] {
249 set displacement "FOUND-$displacement"
260 if ![regexp {^(NONE|FOUND-.*)$} $displacement] {
301 set displacement "FOUND-$displacement"
311 if ![regexp {^(NONE|FOUND-.*)$} $displacement] {
554 set displacement "FOUND-$displacement"
565 if ![regexp {^(NONE|FOUND-.*)$} $displacement] {
/netbsd-current/sbin/fsdb/
H A Dfsdb.c1023 if (ckinode(curinode, &idesc) & FOUND) {
1109 return STOP | ALTERED | FOUND;
1136 if (ckinode(curinode, &idesc) & FOUND)
1157 return STOP | ALTERED | FOUND;
1159 return STOP | FOUND; /* won't fit, so give up */
1186 if ((rval & (FOUND | ALTERED)) == (FOUND | ALTERED))
1189 if (rval & FOUND) {
1206 return STOP | ALTERED | FOUND;
1238 if (ckinode(curinode, &idesc) & FOUND)
[all...]
/netbsd-current/external/gpl2/send-pr/dist/send-pr/
H A Dsend-pr.sh465 FOUND=
468 if [ "$C" = "$CATEGORY" ]; then FOUND=true ; break ; fi
470 if [ -n "$FOUND" ]; then
/netbsd-current/sys/ufs/lfs/
H A Dulfs_lookup.c130 FOUND, /* found a slot (or no need to search) */ enumerator in enum:__anon19
221 slotstatus = FOUND;
251 if (slotstatus != FOUND) {
349 if (slotstatus != FOUND) {
356 slotstatus = FOUND;
391 slotstatus = FOUND;
/netbsd-current/tests/bin/sh/
H A Dt_builtins.sh436 atf_check -s exit:0 -e empty -o match:VAR= -o match:FOUND=foobar \
440 printf %s\\n FOUND=${VAR-unset}'
441 atf_check -s exit:0 -e empty -o match:VAR -o match:FOUND=unset \
445 printf %s\\n FOUND=${VAR-unset}'
601 atf_check -s exit:0 -e empty -o match:MYVAR= -o match:FOUND=foobar \
605 printf %s\\n FOUND=${MYVAR-unset}'
606 atf_check -s exit:0 -e empty -o match:MYVAR\$ -o match:FOUND=unset \
610 printf %s\\n "FOUND=${MYVAR-unset}"'
611 atf_check -s exit:0 -e empty -o match:MYVAR= -o match:FOUND=empty \
615 printf %s\\n "FOUND
[all...]
/netbsd-current/sys/ufs/ufs/
H A Dufs_lookup.c100 FOUND, /* found a slot (or no need to search) */ enumerator in enum:slotinfo::__anon155
122 slot->status = FOUND;
131 if (slot->status == FOUND)
150 slot->status = FOUND;
160 slot->status = FOUND;
542 if (slot.status != FOUND) {

Completed in 495 milliseconds

12