HomeSort by: relevance | last modified time | path
    Searched refs:need (Results 1 - 25 of 654) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/tools/llvm/
Makefile 12 realdepends realall: config/config.status need-dl need-terminfo support-modules
36 need-dl: Makefile
37 printf '#include <dlfcn.h>\nint main(void){void *p; return dladdr(p, p);}' > need-dl.c
38 if ${HOST_CC} -o need-dl.out -D_GNU_SOURCE need-dl.c > /dev/null 2>&1; then \
40 elif ${HOST_CC} -o need-dl.out -D_GNU_SOURCE need-dl.c -ldl > /dev/null 2>&1; then \
46 need-terminfo: Makefile
47 printf 'int setupterm(char *, int, int *);\nint main(void){return setupterm("", 0, 0);}' > need-terminfo.
    [all...]
  /src/sys/arch/arm/arm/
cpufunc_asm_fa526.S 38 cmp r1, #0 @ need to flush the cache / tlb?
  /src/external/bsd/libbind/dist/irs/
irpmarshall.c 138 size_t need = 1 ; /*%< for null byte */ local
174 need += strlen(pw->pw_name) + 1; /*%< one for fieldsep */
175 need += strlen(pw->pw_passwd) + 1;
176 need += strlen(pwUid) + 1;
177 need += strlen(pwGid) + 1;
178 need += strlen(pwClass) + 1;
179 need += strlen(pwChange) + 1;
180 need += strlen(pwExpire) + 1;
181 need += strlen(pw->pw_gecos) + 1;
182 need += strlen(pw->pw_dir) + 1
413 size_t need = 1; \/*%< for null byte *\/ local
582 size_t need = 1; \/*%< for null byte *\/ local
742 size_t need = 1; \/*%< for null byte *\/ local
888 size_t need = 1; \/*%< for null byte *\/ local
1151 size_t need = 1; \/*%< for nul byte *\/ local
1317 size_t need = 1; \/*%< for null byte *\/ local
1491 size_t need = 1; \/*%< for null byte *\/ local
    [all...]
  /src/tests/lib/libc/stdio/
t_intr.sh 43 local need=$(( 3 * $MAX * 8 / 1000000 ))
44 if [ $avail -lt $need ]; then
  /src/external/gpl3/gcc.old/dist/libphobos/m4/
gcc_support.m4 12 dnl Not sure if 100% portable, but we need the absolute dir as the _LT_COMPILER_C_O
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
system.d 20 This is for cases where you need a value representing the OS at
67 This is intended for cases where you need to deal with endianness at
  /src/crypto/external/bsd/openssh/dist/
kexsntrup761x25519.c 52 size_t need; local
57 need = crypto_kem_sntrup761_PUBLICKEYBYTES + CURVE25519_SIZE;
58 if ((r = sshbuf_reserve(buf, need, &cp)) != 0)
88 size_t need; local
95 need = crypto_kem_sntrup761_PUBLICKEYBYTES + CURVE25519_SIZE;
96 if (sshbuf_len(client_blob) != need) {
122 need = crypto_kem_sntrup761_CIPHERTEXTBYTES + CURVE25519_SIZE;
123 if ((r = sshbuf_reserve(server_blob, need, &ciphertext)) != 0)
172 size_t need; local
177 need = crypto_kem_sntrup761_CIPHERTEXTBYTES + CURVE25519_SIZE
    [all...]
kexmlkem768x25519.c 53 size_t need; local
59 need = crypto_kem_mlkem768_PUBLICKEYBYTES + CURVE25519_SIZE;
60 if ((r = sshbuf_reserve(buf, need, &cp)) != 0)
98 size_t need; local
108 need = crypto_kem_mlkem768_PUBLICKEYBYTES + CURVE25519_SIZE;
109 if (sshbuf_len(client_blob) != need) {
194 size_t need; local
203 need = crypto_kem_mlkem768_CIPHERTEXTBYTES + CURVE25519_SIZE;
204 if (sshbuf_len(server_blob) != need) {
  /src/usr.bin/make/unit-tests/
depsrc-optional.exp 2 ExamineLater: need to examine "important"
4 ExamineLater: need to examine "optional"
5 ExamineLater: need to examine "optional-cohort"
  /src/lib/libc/arch/m68k/string/
swab.S 9 lsrl #1,%d0 | count is in bytes; we need words
  /src/external/apache2/llvm/
link.mk 32 LDADD_NEED_DL= cat ${LLVM_TOOLCONF_OBJDIR}/need-dl 2> /dev/null || true
33 LDADD_NEED_TERMINFO= cat ${LLVM_TOOLCONF_OBJDIR}/need-terminfo 2> /dev/null || true
  /src/external/bsd/wpa/dist/src/tls/
bignum.c 77 size_t need = mp_unsigned_bin_size((mp_int *) n); local
78 if (len && need > *len) {
79 *len = need;
87 *len = need;
  /src/external/gpl2/xcvs/dist/src/
gssapi-client.c 45 recv_bytes (int sock, char *buf, int need)
47 while (need > 0)
51 got = recv (sock, buf, need, 0);
58 need -= got;
72 * I think, basically, it will need to use buf_output and buf_read directly
140 int need; local
150 need = ((cbuf[0] & 0xff) << 8) | (cbuf[1] & 0xff);
152 if (need > sizeof buf)
181 recv_bytes (sock, buf, need);
182 tok_in.length = need;
    [all...]
socket-client.c 37 We may also need to deal with socket routine error codes differently
64 socket_buffer_input (void *closure, char *data, size_t need, size_t size,
77 assert (size >= need);
111 while (*got < need);
176 /* no need to flush children of an endpoint buffer here */
  /src/sys/arch/x68k/stand/boot/
boot.ldscript 27 *(.need)
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/scryptsalsa208sha256/
crypto_scrypt-common.c 147 size_t need; local
167 need = prefixlen + saltlen + 1 +
169 if (need > buflen || need < saltlen) {
205 size_t need; local
207 need = prefixlen + saltlen + 1;
208 if (need > buflen || need < saltlen || saltlen < srclen) {
  /src/usr.sbin/sysinst/arch/ofppc/
msg.md.en 78 {You need to have two PReP partitions to boot an IBM RS/6000. One needs to
82 {In order to boot ofppc, you need either a FAT12 partition of at least 2MB
83 in size, or a pair of PReP partitions. The PReP partitions need to be at
84 least 1KB, and 1MB in size. IBM RS/6000 machines generally need the PReP
msg.md.es 79 {You need to have two PReP partitions to boot an IBM RS/6000. One needs to
83 {In order to boot ofppc, you need either a FAT12 partition of at least 2MB
84 in size, or a pair of PReP partitions. The PReP partitions need to be at
85 least 1KB, and 1MB in size. IBM RS/6000 machines generally need the PReP
  /src/external/bsd/nsd/dist/contrib/
nsd.openrc.in 31 need net
  /src/usr.bin/hexdump/
display.c 239 int need, nread; local
251 for (need = blocksize, nread = 0;;) {
258 if (need == blocksize)
260 if (!need && vflag != ALL &&
266 memset((char *)curp + nread, 0, need);
271 length == -1 ? need : MIN(length, need), stdin);
281 if (!(need -= n)) {
292 need = blocksize;
  /src/lib/libc/gen/
fnmatch.c 76 int negate, ok, need; local
91 need = 1;
92 for (ok = 0; (c = FOLDCASE(*pattern++, flags)) != ']' || need;) {
93 need = 0;
  /src/external/mit/xorg/lib/
driver.old.mk 3 # stuff both dri and gallium drivers need.
49 # also need to pull in libdricommon.la libmegadriver_stub.la
  /src/tests/libexec/ld.elf_so/
helper.mk 4 # tests. All we need to install is lib${LIB}.so and lib${LIB}.so.1.
  /src/external/gpl3/binutils/dist/
setup.com 4 $! Note: you need a DCL-compatible gnu make.
  /src/external/gpl3/binutils.old/dist/
setup.com 4 $! Note: you need a DCL-compatible gnu make.

Completed in 47 milliseconds

1 2 3 4 5 6 7 8 91011>>