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

1 2 3 4 5 6 7 8 910

  /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?
cpufunc_asm_arm7tdmi.S 44 * We need to clean and flush the cache as it uses virtual
65 cmp r2, #0 @ do we need to flush
  /src/tests/lib/libc/stdio/
t_intr.sh 43 local need=$(( 3 * $MAX * 8 / 1000000 ))
44 if [ $avail -lt $need ]; then
  /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"
depsrc-made.mk 5 # don't need to be executed.
  /src/lib/libc/arch/m68k/string/
swab.S 9 lsrl #1,%d0 | count is in bytes; we need words
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/scryptsalsa208sha256/
crypto_scrypt-common.c 147 size_t need; local in function:escrypt_r
167 need = prefixlen + saltlen + 1 +
169 if (need > buflen || need < saltlen) {
205 size_t need; local in function:escrypt_gensalt_r
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/sys/arch/x68k/stand/boot/
boot.ldscript 27 *(.need)
  /src/usr.bin/hexdump/
display.c 239 int need, nread; local in function:get
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 in function:rangematch
91 need = 1;
92 for (ok = 0; (c = FOLDCASE(*pattern++, flags)) != ']' || need;) {
93 need = 0;
  /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/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/
pwhash_scryptsalsa208sha256_nosse.c 297 size_t B_size, V_size, XY_size, need; local in function:escrypt_kdf_nosse
338 need = B_size + V_size;
339 if (need < V_size) {
344 need += XY_size;
345 if (need < XY_size) {
349 if (local->size < need) {
353 if (!alloc_region(local, need)) {
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/
pwhash_scryptsalsa208sha256_sse.c 313 size_t B_size, V_size, XY_size, need; local in function:escrypt_kdf_sse
358 need = B_size + V_size;
360 if (need < V_size) {
366 need += XY_size;
368 if (need < XY_size) {
373 if (local->size < need) {
377 if (!alloc_region(local, need)) {
  /src/common/lib/libc/arch/vax/gen/
urem.S 51 jlss Lhard # big dividend: need extended division
73 jlss La_hard # big dividend: need extended division
  /src/sys/arch/pmax/stand/common/
startprog.S 50 lw a2,CALLFRAME_SIZ+16(sp) # load everything from old stack we need
  /src/sys/lib/libkern/arch/m68k/
scanc.S 52 movl %d2,-(%sp) | need a scratch register
  /src/distrib/mac68k/miniroot/
install.md 138 In particular, you will need to know some reasonably detailed
  /src/common/dist/zlib/contrib/blast/
blast.c 62 * Return need bits from the input stream. This always leaves less than
63 * eight bits in the buffer. bits() works properly for need == 0.
72 local int bits(struct state *s, int need)
76 /* load at least need bits into val */
78 while (s->bitcnt < need) {
88 /* drop need bits and update buffer, always zero to seven bits left */
89 s->bitbuf = val >> need;
90 s->bitcnt -= need;
92 /* return need bits, zeroing the bits above that */
93 return val & ((1 << need) - 1)
    [all...]
  /src/usr.bin/at/
parsetime.c 152 static bool need; /* scanner - need to advance to next argument */ variable in typeref:typename:bool
206 need = true;
230 * if we need to read another argument, walk along the
234 if (need) {
240 need = false;
250 need = true;
  /src/common/dist/zlib/contrib/puff/
puff.c 116 * Return need bits from the input stream. This always leaves less than
117 * eight bits in the buffer. bits() works properly for need == 0.
126 local int bits(struct state *s, int need)
130 /* load at least need bits into val */
132 while (s->bitcnt < need) {
139 /* drop need bits and update buffer, always zero to seven bits left */
140 s->bitbuf = (int)(val >> need);
141 s->bitcnt -= need;
143 /* return need bits, zeroing the bits above that */
144 return (int)(val & ((1L << need) - 1))
    [all...]
  /src/sbin/dump/
tape.c 468 * Each of the N workers should have requests that need to
822 * Need our own seek pointer.
829 * Need the pid of the next worker in the loop...
939 ssize_t got, need = count; local in function:atomic_read
941 while ((got = read(fd, buf, need)) > 0 && (need -= got) > 0)
943 return (got < 0 ? got : count - need);
953 ssize_t got, need = count; local in function:atomic_write
955 while ((got = write(fd, buf, need)) > 0 && (need -= got) > 0
    [all...]
  /src/share/mk/
bsd.ioconf.mk 14 # XXX: ioconf.c doesn't need to depend on TOOL_CONFIG, but that helps

Completed in 21 milliseconds

1 2 3 4 5 6 7 8 910