Home
last modified time | relevance | path

Searched full:want (Results 1 – 25 of 4069) sorted by relevance

12345678910>>...163

/freebsd/lib/libveriexec/
H A Dveriexec_get.c158 * ^want$
159 * ^want,
160 * ,want,
161 * ,want$
163 * and if want ends with / then we match that prefix too.
167 const char *want, size_t wantlen) in check_label_want() argument
171 /* Does label contain [,]<want>[,] ? */ in check_label_want()
173 (cp = strstr(label, want)) != NULL) { in check_label_want()
176 (cp[wantlen-1] == '/' && want[wantlen-1] == '/')) in check_label_want()
184 * @brief check if a process has label that contains what we want
[all …]
/freebsd/contrib/arm-optimized-routines/math/test/
H A Dulp.h43 RT(float) want = p->y; in RT()
47 if (RT(asuint) (got) == RT(asuint) (want)) in RT()
49 if (isnan (got) && isnan (want)) in RT()
54 return RT (issignaling) (got) == RT (issignaling) (want) ? 0 : INFINITY; in RT()
56 if (signbit (got) != signbit (want)) in RT()
59 exactly one of want and got is non-zero. */ in RT()
60 if (ignore_zero_sign && want == got) in RT()
62 if (!ignore_zero_sign || (want != 0 && got != 0)) in RT()
65 if (!isfinite (want) || !isfinite (got)) in RT()
67 if (isnan (got) != isnan (want)) in RT()
[all …]
/freebsd/share/man/man5/
H A Dperiodic.conf.5147 if you want to remove all files matching
166 if you want the removed files to be reported in your daily output.
171 if you want to clear temporary directories daily.
195 if you want the removed files to be reported in your daily output.
210 if you want the removed files to be reported in your daily output.
238 if you want the removed files to be reported in your daily output.
287 if you want the
301 if you want the
359 if you want to run
366 if you want to rotate your daily process accounting files.
[all …]
/freebsd/crypto/openssl/crypto/asn1/
H A Da_d2i_fp.c114 size_t want = HEADER_SIZE; in asn1_d2i_read_bio() local
133 if (want >= diff) { in asn1_d2i_read_bio()
134 want -= diff; in asn1_d2i_read_bio()
136 if (len + want < len || !BUF_MEM_grow_clean(b, len + want)) { in asn1_d2i_read_bio()
140 i = BIO_read(in, &(b->data[len]), want); in asn1_d2i_read_bio()
151 if ((size_t)i < want) in asn1_d2i_read_bio()
182 want = HEADER_SIZE; in asn1_d2i_read_bio()
189 want = HEADER_SIZE; in asn1_d2i_read_bio()
192 want = slen; in asn1_d2i_read_bio()
193 if (want > (len - off)) { in asn1_d2i_read_bio()
[all …]
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/
H A Dpoly1305_donna.c22 unsigned long long want = (poly1305_block_size - st->leftover); in poly1305_update() local
24 if (want > bytes) { in poly1305_update()
25 want = bytes; in poly1305_update()
27 for (i = 0; i < want; i++) { in poly1305_update()
30 bytes -= want; in poly1305_update()
31 m += want; in poly1305_update()
32 st->leftover += want; in poly1305_update()
42 unsigned long long want = (bytes & ~(poly1305_block_size - 1)); in poly1305_update() local
44 poly1305_blocks(st, m, want); in poly1305_update()
45 m += want; in poly1305_update()
[all …]
/freebsd/lib/libc/locale/
H A Dutf8.c60 int want; member
89 return (ps == NULL || ((const _UTF8State *)ps)->want == 0); in _UTF8_mbsinit()
97 int ch, i, mask, want; in _UTF8_mbrtowc() local
102 if (us->want < 0 || us->want > 6) { in _UTF8_mbrtowc()
117 if (us->want == 0) { in _UTF8_mbrtowc()
139 want = 2; in _UTF8_mbrtowc()
143 want = 3; in _UTF8_mbrtowc()
147 want = 4; in _UTF8_mbrtowc()
157 want = us->want; in _UTF8_mbrtowc()
165 if (us->want == 0) in _UTF8_mbrtowc()
[all …]
H A Deuc.c108 int want; member
115 return (ps == NULL || ((const _EucState *)ps)->want == 0); in _EUC_mbsinit()
316 int i, want; in _EUC_mbrtowc_impl() local
322 if (es->want < 0 || es->want > MB_CUR_MAX) { in _EUC_mbrtowc_impl()
337 if (es->want == 0) { in _EUC_mbrtowc_impl()
347 want = 2; in _EUC_mbrtowc_impl()
349 want = cs2width; in _EUC_mbrtowc_impl()
351 want = cs3width; in _EUC_mbrtowc_impl()
358 es->want = want; in _EUC_mbrtowc_impl()
361 want = es->want; in _EUC_mbrtowc_impl()
[all …]
/freebsd/contrib/dialog/samples/
H A Drun_test.sh9 want=dialog
12 prog=$p/$want
23 echo "? did not find $want" >&2
31 want=`basename $DIALOG`
33 DIALOGOPTS="$DIALOGOPTS --trace $want.log"
52 rm -f trace "$want.log" "$name.log"
55 [ -f "$want.log" ] && cp "$want.log" "$name.log"
/freebsd/contrib/arm-optimized-routines/string/test/
H A Dmemmove.c58 unsigned char *want = wbuf; in test() local
61 unsigned char *w = want + dalign; in test()
72 want[i] = dst[i] = '*'; in test()
82 if (dst[i] != want[i]) in test()
87 quoteat ("want", want, len + A, i); in test()
98 unsigned char *want = wbuf; in test_overlap() local
110 src[i] = want[i] = '?'; in test_overlap()
113 s[i] = want[salign + i] = 'a' + i % 23; in test_overlap()
127 if (dst[i] != want[i]) in test_overlap()
132 quoteat ("want", want, len + A, i); in test_overlap()
H A Dmemcpy.c60 unsigned char *want = wbuf; in test() local
63 unsigned char *w = want + dalign; in test()
74 want[i] = dst[i] = '*'; in test()
89 if (dst[i] != want[i]) in test()
94 quoteat ("want", want, len + A, i); in test()
/freebsd/contrib/mandoc/
H A Dtbl_opts.c68 int len, want; in arg() local
86 want = 2; in arg()
89 want = 1; in arg()
90 if (len == want) in arg()
94 want = 0; in arg()
97 want = 1; in arg()
98 if (len == want) in arg()
108 else if (want && len != want) in arg()
110 "%s want %d have %d", keys[key].name, want, len); in arg()
/freebsd/contrib/dialog/
H A Dconfigure.in111 CF_ARG_MSG_ENABLE([if you want --trace option],
127 CF_ARG_MSG_ENABLE([if you want extra dialogs],
133 CF_ARG_MSG_ENABLE([if you want config-file support],
141 CF_ARG_MSG_ENABLE([if you want extra attributes in config-file],
147 CF_ARG_MSG_ENABLE([if you want Xdialog-style dialogs],
153 CF_ARG_MSG_ENABLE([if you want extra Xdialog-style dialogs (1.2)],
159 CF_ARG_MSG_ENABLE([if you want compatibility with whiptail options],
164 CF_ARG_MSG_ENABLE([if you want the form dialog],
170 CF_ARG_MSG_ENABLE([if you want the gauge dialog],
176 CF_ARG_MSG_ENABLE([if you want the tailbox dialog],
[all …]
/freebsd/lib/libcrypt/tests/
H A Dcrypt_tests.c19 const char want[] = "$1$deadbeef$0Huu6KHrKLVWfqa4WljDE0"; in ATF_TC_BODY() local
22 pw = crypt(LEET, want); in ATF_TC_BODY()
23 ATF_CHECK_STREQ(pw, want); in ATF_TC_BODY()
35 const char want[] = "$1$cafebabe$0Huu6KHrKLVWfqa4WljDE0"; in ATF_TC_BODY() local
38 pw = crypt(LEET, want); in ATF_TC_BODY()
39 ATF_CHECK(strcmp(pw, want) != 0); in ATF_TC_BODY()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DHost.h125 /// If you have an executable that is in a bundle and want to get back to
181 /// \arg status_ptr Pass NULL if you don't want the process exit status
182 /// \arg signo_ptr Pass NULL if you don't want the signal that caused the
184 /// \arg command_output Pass NULL if you don't want the command output
194 /// \arg shell Pass an empty string if you want to use the default shell
196 /// current working directory \arg status_ptr Pass NULL if you don't want
197 /// the process exit status \arg signo_ptr Pass NULL if you don't want the
200 /// \arg command_output Pass NULL if you don't want the command output
211 /// \arg status_ptr Pass NULL if you don't want the process exit status
212 /// \arg signo_ptr Pass NULL if you don't want the signal that caused the
[all …]
/freebsd/sys/contrib/device-tree/Bindings/usb/
H A Dgeneric.txt4 - maximum-speed: tells USB controllers we want to work up to a certain
10 - dr_mode: tells Dual-Role USB controllers that we want to work on a
15 - phy_type: tells USB controllers that we want to configure the core to support
27 - hnp-disable: tells OTG controllers we want to disable OTG HNP, normally HNP
28 is the basic function of real OTG except you want it
30 - srp-disable: tells OTG controllers we want to disable OTG SRP, SRP is
32 - adp-disable: tells OTG controllers we want to disable OTG ADP, ADP is
/freebsd/contrib/expat/tests/
H A Dstructdata.c123 const StructDataEntry *want = &expected[i]; in StructData_CheckItems() local
126 assert(want != NULL); in StructData_CheckItems()
128 if (xcstrcmp(got->str, want->str) != 0) { in StructData_CheckItems()
132 if (got->data0 != want->data0 || got->data1 != want->data1 in StructData_CheckItems()
133 || got->data2 != want->data2) { in StructData_CheckItems()
137 got->str, want->data0, want->data1, want->data2, got->data0, in StructData_CheckItems()
/freebsd/contrib/ofed/opensm/include/opensm/
H A Dosm_config.h18 /* Define as 1 if you want Dual Sided RMPP Support */
21 /* Define as 1 if you want to enable a console on a socket connection */
24 /* Define as 1 if you want to enable the event plugin */
27 /* Define as 1 if you want to enable the performance manager */
30 /* Define as 1 if you want to enable the performance manager profiling code */
63 /* Define as 1 if you want Vendor RMPP Support */
/freebsd/libexec/dma/dmagent/
H A Ddma.conf2 # Your smarthost (also called relayhost). Leave blank if you don't want
18 # Uncomment if you want TLS/SSL support
21 # Uncomment if you want STARTTLS support (only used in combination with
33 # If you want to use plain text SMTP login without using encryption, change
38 # Uncomment if you want to defer your mails. This is useful if you are
42 # Uncomment if you want the bounce message to include the complete original
/freebsd/usr.bin/units/
H A Dunits.c91 static void showanswer(struct unittype * have, struct unittype * want);
652 showanswer(struct unittype * have, struct unittype * want)
657 if (compareunits(have, want)) { in showanswer()
669 showunit(want); in showanswer()
672 else if (have->offset != want->offset) { in showanswer()
673 if (want->quantity) in showanswer()
678 (have->factor + have->offset-want->offset)/want->factor); in showanswer()
685 have->factor / want->factor, in showanswer()
686 (have->offset-want in showanswer()
653 showanswer(struct unittype * have,struct unittype * want) showanswer() argument
752 struct unittype have, want; main() local
[all...]
/freebsd/contrib/dma/
H A Ddma.conf3 # Your smarthost (also called relayhost). Leave blank if you don't want
21 # Uncomment if you want TLS/SSL support
24 # Uncomment if you want STARTTLS support (only used in combination with
40 # If you want to use plain text SMTP login without using encryption, change
45 # Uncomment if you want to defer your mails. This is useful if you are
49 # Uncomment if you want the bounce message to include the complete original
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_split/
H A Dzpool_split_dryrun_output.ksh58 want="$STR_DRYRUN
70 want="$STR_DRYRUN
88 want="$STR_DRYRUN
106 want="$STR_DRYRUN
139 want="${tests[$i].want}"
148 if [[ "$out" != "$want" ]]; then
152 log_note "$want"
/freebsd/usr.bin/fortune/datfiles/
H A Dfreebsd-tips48 If you do not want to get beeps in X11 (X Windows), you can turn them off with
83 If you want df(1) and other commands to display disk sizes in
86 Gigabytes. If you want df(1) to automatically select the best size
89 If you want to play CDs with FreeBSD, a utility for this is already included.
91 environment variable in order to make cdcontrol want to start.)
145 Need to leave your terminal for a few minutes and don't want to logout?
301 Want colour in your directory listings? Use "ls -G". "ls -F" is also useful,
304 Want to find a specific port? Just type the following under /usr/ports
311 Want to know how many words, lines, or bytes are contained in a file? Type
315 Want to see how much virtual memory you're using? Just type "swapinfo" to
[all …]
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dompd-specific.cpp119 we might want to use a separate object file? */ in ompd_dll_locations_valid()
125 we might want to use a separate object file? */ in ompd_bp_parallel_begin()
130 we might want to use a separate object file? */ in ompd_bp_parallel_end()
135 we might want to use a separate object file? */ in ompd_bp_task_begin()
140 we might want to use a separate object file? */ in ompd_bp_task_end()
145 we might want to use a separate object file? */ in ompd_bp_thread_begin()
150 we might want to use a separate object file? */ in ompd_bp_thread_end()
/freebsd/contrib/netbsd-tests/kernel/kqueue/
H A Dt_proc1.c103 u_int want; in ATF_TC_BODY() local
120 want = NOTE_EXIT | NOTE_FORK | NOTE_EXEC; in ATF_TC_BODY()
124 /* wait until we get all events we want */ in ATF_TC_BODY()
125 while (want) { in ATF_TC_BODY()
130 want &= ~NOTE_EXIT; in ATF_TC_BODY()
134 want &= ~NOTE_EXEC; in ATF_TC_BODY()
138 want &= ~NOTE_FORK; in ATF_TC_BODY()
/freebsd/contrib/ncurses/
H A Dconfigure.in89 AC_MSG_CHECKING(if you want to ensure bool is consistent with C++)
158 AC_MSG_CHECKING(if you want to build C++ binding and demo)
165 AC_MSG_CHECKING(if you want to build with Ada)
168 AC_MSG_CHECKING(if you want to install terminal database)
175 AC_MSG_CHECKING(if you want to install manpages)
182 AC_MSG_CHECKING(if you want to build programs such as tic)
189 AC_MSG_CHECKING(if you want to build test-programs)
326 AC_MSG_CHECKING(if you want to build shared libraries)
334 AC_MSG_CHECKING(if you want to build static libraries)
342 AC_MSG_CHECKING(if you want to build debug libraries)
[all …]

12345678910>>...163