Home
last modified time | relevance | path

Searched full:bin (Results 1 – 25 of 5453) sorted by relevance

12345678910>>...219

/freebsd/targets/pseudo/userland/
H A DMakefile.depend7 bin/cat \
8 bin/chflags \
9 bin/chio \
10 bin/chmod \
11 bin/cp \
12 bin/csh \
13 bin/date \
14 bin/dd \
15 bin/df \
16 bin/domainname \
[all …]
/freebsd/tests/sys/cddl/zfs/include/
H A Dcommands.txt22 #!/usr/local/bin/ksh93 -p
29 # /bin/df becomes export DF="/bin/df"
36 /usr/bin/awk
38 /usr/bin/basename
39 /usr/bin/bzcat
40 /bin/cat
41 /usr/bin/cd
42 /usr/bin/chgrp
43 /bin/chmod
45 /usr/bin/cksum
[all …]
/freebsd/targets/pseudo/tests/
H A DMakefile.depend7 bin/cat/tests \
8 bin/chflags/tests \
9 bin/chmod/tests \
10 bin/date/tests \
11 bin/dd/tests \
12 bin/echo/tests \
13 bin/expr/tests \
14 bin/ln/tests \
15 bin/ls/tests \
16 bin/mkdir/tests \
[all …]
/freebsd/targets/pseudo/clang/
H A DMakefile.depend8 usr.bin/clang/clang \
9 usr.bin/clang/clang-tblgen \
10 usr.bin/clang/llvm-min-tblgen \
11 usr.bin/clang/llvm-objdump \
12 usr.bin/clang/llvm-tblgen \
38 usr.bin/clang/lldb
43 usr.bin/clang/bugpoint \
44 usr.bin/clang/llc \
45 usr.bin/clang/lli \
46 usr.bin/clang/llvm-ar \
[all …]
/freebsd/tools/regression/usr.bin/env/
H A Dregress-env.rgdata28 testpgm=/usr/bin/env
29 gblenv=PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/bin
36 sb_args:/bin/sh
38 script:/bin/echo A-${TESTVAR}-Z
42 sb_args:-S /bin/sh
43 script:/bin/echo A-${TESTVAR}-Z
48 sb_args:-S TESTVAR=bb22bb /bin/sh
49 script:/bin/echo A-${TESTVAR}-Z
53 sb_args:-S\_TESTVAR=ab22ab\_/bin/sh
54 script:/bin/echo A-${TESTVAR}-Z
[all …]
/freebsd/contrib/one-true-awk/testdir/
H A Dtest.data22 7080 bin
140 1root:EMpNB8Zp56:0:0:Super-User,,,,,,,:/:/bin/sh
141 2roottcsh:*:0:0:Super-User running tcsh [cbm]:/:/bin/tcsh
142 3sysadm:*:0:0:System V Administration:/usr/admin:/bin/sh
143 4diag:*:0:996:Hardware Diagnostics:/usr/diags:/bin/csh
144 5daemon:*:1:1:daemons:/:/bin/sh
145 6bin:*:2:2:System Tools Owner:/bin:/dev/null
148 9sys:*:4:0:System Activity Owner:/usr/adm:/bin/sh
149 10adm:*:5:3:Accounting Files Owner:/usr/adm:/bin/sh
150 11lp:*:9:9:Print Spooler Owner:/var/spool/lp:/bin/sh
[all …]
/freebsd/contrib/file/magic/Magdir/
H A Dcommands7 0 string/fwt #!\ /bin/sh POSIX shell script text executable
9 0 string/fwb #!\ /bin/sh POSIX shell script executable (binary data)
14 0 string/fwt #!\ /bin/csh C shell script text executable
18 0 string/fwt #!\ /bin/ksh Korn shell script text executable
20 0 string/fwb #!\ /bin/ksh Korn shell script executable (binary data)
23 0 string/fwt #!\ /bin/tcsh Tenex C shell script text executable
25 0 string/fwt #!\ /usr/bin/tcsh Tenex C shell script text executable
29 0 string/fwt #!\ /usr/local/bin/tcsh Tenex C shell script text executable
34 0 string/fwt #!\ /bin/zsh Paul Falstad's zsh script text executable
36 0 string/fwt #!\ /usr/bin/zsh Paul Falstad's zsh script text executable
[all …]
/freebsd/targets/pseudo/userland/gnu/
H A DMakefile.depend11 gnu/usr.bin/binutils/ar \
12 gnu/usr.bin/binutils/as \
13 gnu/usr.bin/binutils/doc \
14 gnu/usr.bin/binutils/ld \
15 gnu/usr.bin/binutils/libbfd \
16 gnu/usr.bin/binutils/libbinutils \
17 gnu/usr.bin/binutils/libiberty \
18 gnu/usr.bin/binutils/libopcodes \
19 gnu/usr.bin/binutils/objdump \
20 gnu/usr.bin/dialog \
[all …]
/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Dbin.h11 * A bin contains a set of extents that are currently being used for slab
20 * Bin statistics. These get touched every time the lock is acquired,
26 * Current slab being used to service allocations of this bin's size
55 /* Initializes a bin to empty. Returns true on error. */
56 bool bin_init(bin_t *bin);
59 void bin_prefork(tsdn_t *tsdn, bin_t *bin);
60 void bin_postfork_parent(tsdn_t *tsdn, bin_t *bin);
61 void bin_postfork_child(tsdn_t *tsdn, bin_t *bin);
65 bin_stats_merge(tsdn_t *tsdn, bin_stats_data_t *dst_bin_stats, bin_t *bin) {
66 malloc_mutex_lock(tsdn, &bin
107 bin_stats_merge(tsdn_t * tsdn,bin_stats_t * dst_bin_stats,bin_t * bin) bin_stats_merge() argument
[all...]
H A Dcache_bin.h12 * cache_bin_array_descriptor_t objects and reading out per-bin stats it
18 * The size in bytes of each cache bin stack. We also use this to indicate
24 * Leave a noticeable mark pattern on the cache bin stack boundaries, in case a
36 * individual bin. The cache bins track their bounds looking just at the low
46 * alongside it, but is otherwise not modified by any cache bin operations.
53 * bin.
84 * The stack grows down. Whenever the bin is nonempty, the head points in cache_bin_array_descriptor_init()
184 cache_bin_assert_earlier(cache_bin_t *bin, uint16_t earlier, uint16_t later) {
186 assert(bin->low_bits_full > bin
88 cache_bin_alloc_easy(cache_bin_t * bin,bool * success) cache_bin_alloc_easy() argument
120 cache_bin_dalloc_easy(cache_bin_t * bin,cache_bin_info_t * bin_info,void * ptr) cache_bin_dalloc_easy() argument
[all...]
H A Dtcache_inlines.h4 #include "jemalloc/internal/bin.h"
31 tcache_small_bin_disabled(szind_t ind, cache_bin_t *bin) { in tcache_event()
34 if (ret && bin != NULL) { in tcache_event()
35 /* small size class but cache bin disabled. */ in tcache_event()
37 assert((uintptr_t)(*bin->stack_head) == in tcache_event()
51 cache_bin_t *bin = &tcache->bins[binind]; in tcache_alloc_small()
52 ret = cache_bin_alloc(bin, &tcache_success); in tcache_alloc_small()
60 if (unlikely(tcache_small_bin_disabled(binind, bin))) { in tcache_alloc_small()
65 tcache_bin_flush_stashed(tsd, tcache, bin, binind, in tcache_alloc_small()
69 bin, binin in tcache_alloc_small()
45 cache_bin_t *bin; tcache_alloc_small() local
107 cache_bin_t *bin; tcache_alloc_large() local
166 cache_bin_t *bin; tcache_dalloc_small() local
191 cache_bin_t *bin; tcache_dalloc_large() local
[all...]
/freebsd/share/mk/
H A Dlocal.gendirdeps.mk7 Ncddl/usr.bin/ctf* \
13 Nusr.bin/awk.host \
14 Nusr.bin/xinstall.host \
23 .if ${RELDIR:Nusr.bin/clang/*:Ngnu/usr.bin/cc/*:Nlib/clang*} != ""
25 Nusr.bin/clang/* \
26 Ngnu/usr.bin/cc/* \
31 Nusr.bin/addr2line \
32 Nusr.bin/ar \
33 Nusr.bin/clang/clang \
34 Nusr.bin/elfcopy \
[all …]
/freebsd/contrib/arm-optimized-routines/string/
H A DDir.mk29 build/bin/test/memcpy \
30 build/bin/test/memmove \
31 build/bin/test/memset \
32 build/bin/test/memchr \
33 build/bin/test/memrchr \
34 build/bin/test/memcmp \
35 build/bin/test/__mtag_tag_region \
36 build/bin/test/__mtag_tag_zero_region \
37 build/bin/test/strcpy \
38 build/bin/test/stpcpy \
[all …]
/freebsd/contrib/ntp/sntp/loc/
H A Dlegacy3 calc_tickadj,bin,1
4 ntp-keygen,bin,1
5 ntp-wait,bin,1
6 ntpd,bin,1
7 ntpdate,bin,1
8 ntpdc,bin,1
9 ntpdsim,bin,1
10 ntpq,bin,1
11 ntpsnmpd,bin,1
13 ntptime,bin,1
[all …]
/freebsd/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_paprd.c1431 int bin, idx; in create_pa_curve() local
1435 * [15:00] u16, accum_cnt[15:00]: number of samples in the bin in create_pa_curve()
1436 * [42:16] u27, accum_tx[26:00]: sum(tx amplitude) of the bin in create_pa_curve()
1438 * sum(rx amplitude distance to lower bin edge) of the bin in create_pa_curve()
1439 * [90:64] s27, accum_ang[26:00]: sum(angles) of the bin in create_pa_curve()
1443 * Disregard any bin that contains less than in create_pa_curve()
1449 for (bin = 0; bin < NUM_BIN; bin++) { in create_pa_curve()
1450 accum_cnt[bin] = paprd_train_data_l[bin] & 0xffff; in create_pa_curve()
1452 accum_tx[bin] = in create_pa_curve()
1453 ((paprd_train_data_l[bin] >> 16) & 0xffff) | in create_pa_curve()
[all …]
/freebsd/contrib/wpa/src/utils/
H A Duuid.c15 int uuid_str2bin(const char *str, u8 *bin) in uuid_str2bin() argument
21 opos = bin; in uuid_str2bin()
50 int uuid_bin2str(const u8 *bin, char *str, size_t max_len) in uuid_bin2str() argument
55 bin[0], bin[1], bin[2], bin[3], in uuid_bin2str()
56 bin[4], bin[5], bin[6], bin[7], in uuid_bin2str()
57 bin[8], bin[9], bin[10], bin[11], in uuid_bin2str()
58 bin[12], bin[13], bin[14], bin[15]); in uuid_bin2str()
/freebsd/targets/pseudo/toolchain/
H A DMakefile.depend8 gnu/usr.bin/binutils/as \
9 gnu/usr.bin/binutils/ld \
10 usr.bin/addr2line \
11 usr.bin/ar \
12 usr.bin/cxxfilt \
13 usr.bin/elfcopy \
14 usr.bin/elfdump \
15 usr.bin/nm \
16 usr.bin/readelf \
17 usr.bin/size \
[all …]
/freebsd/contrib/unbound/util/storage/
H A Dlruhash.c99 bin_delete(struct lruhash* table, struct lruhash_bin* bin) in bin_delete() argument
103 if(!bin) in bin_delete()
105 lock_quick_destroy(&bin->lock); in bin_delete()
106 p = bin->overflow_list; in bin_delete()
107 bin->overflow_list = NULL; in bin_delete()
125 * bin x & mask, and new mask uses one more bit, so all entries in in bin_split()
126 * one bin will go into the old bin or bin | newbit */ in bin_split()
130 /* so, really, this task could also be threaded, per bin in bin_split()
168 bin_overflow_remove(struct lruhash_bin * bin,struct lruhash_entry * entry) bin_overflow_remove() argument
186 struct lruhash_bin* bin; reclaim_space() local
220 bin_find_entry(struct lruhash * table,struct lruhash_bin * bin,hashvalue_type hash,void * key,size_t * collisions) bin_find_entry() argument
308 struct lruhash_bin* bin; lruhash_insert() local
367 struct lruhash_bin* bin; lruhash_lookup() local
389 struct lruhash_bin* bin; lruhash_remove() local
424 bin_clear(struct lruhash * table,struct lruhash_bin * bin) bin_clear() argument
621 struct lruhash_bin* bin; lruhash_insert_or_retrieve() local
[all...]
/freebsd/targets/pseudo/userland/games/
H A DMakefile.depend4 usr.bin/caesar \
5 usr.bin/factor \
6 usr.bin/fortune/fortune \
7 usr.bin/fortune/strfile \
8 usr.bin/fortune/datfiles \
9 usr.bin/fortune/unstr \
10 usr.bin/grdc \
11 usr.bin/morse \
12 usr.bin/number \
13 usr.bin/pom \
[all …]
/freebsd/tools/build/mk/
H A DOptionalObsoleteFiles.inc68 OLD_FILES+=usr/bin/at
69 OLD_FILES+=usr/bin/atq
70 OLD_FILES+=usr/bin/atrm
71 OLD_FILES+=usr/bin/batch
200 OLD_FILES+=usr/bin/bthost
201 OLD_FILES+=usr/bin/btsockstat
202 OLD_FILES+=usr/bin/rfcomm_sppd
440 OLD_FILES+=usr/bin/bsdcpio
441 OLD_FILES+=usr/bin/cpio
449 OLD_FILES+=usr/bin/bsnmpget
[all …]
/freebsd/usr.sbin/crunch/examples/
H A Dreally-big.conf12 srcdirs /usr/src/bin
38 srcdirs /usr/src/usr.bin
61 special locate srcdir /usr/src/usr.bin/locate/locate
62 special tn3270 srcdir /usr/src/usr.bin/tn3270/tn3270
109 srcdirs /usr/src/gnu/usr.bin
113 srcdirs /usr/src/gnu/usr.bin/ld # ldd and ldconfig
121 # srcdirs /usr/src/gnu/usr.bin/rcs # rcs subsystem
124 # special rcs srcdir /usr/src/gnu/usr.bin/rcs/rcs
125 # libs /usr/src/gnu/usr.bin/rcs/lib/obj/librcs.a
129 # special gdb srcdir /usr/src/gnu/usr.bin/gdb/gdb
[all …]
/freebsd/bin/sh/tests/builtins/
H A Dcommand13.016 check "$(cd /bin && PATH=. command -v ls)" /bin/ls /bin/./ls
17 check "$(cd /bin && PATH=:/var/empty/nosuch command -v ls)" /bin/ls /bin/./ls
18 check "$(cd / && PATH=bin command -v ls)" /bin/ls
19 check "$(cd / && command -v bin/ls)" /bin/ls
20 check "$(cd /bin && command -v ./ls)" /bin/ls /bin/./ls
/freebsd/targets/pseudo/gcc/
H A DMakefile.depend4 gnu/usr.bin/cc/cc_tools \
5 gnu/usr.bin/cc/libiberty \
6 gnu/usr.bin/cc/libcpp \
7 gnu/usr.bin/cc/libdecnumber \
8 gnu/usr.bin/cc/cc_int \
9 gnu/usr.bin/cc/cc \
10 gnu/usr.bin/cc/cc1 \
11 gnu/usr.bin/cc/include \
12 gnu/usr.bin/cc/cpp \
13 gnu/usr.bin/cc/cc1plus \
[all …]
/freebsd/contrib/netbsd-tests/sbin/resize_ffs/
H A Dt_shrink.sh47 test_case_xfail shrink_32M_24M_v0_65536 "PR bin/44204" resize_ffs 65536 8192 65536 49152 0 51
68 test_case_xfail shrink_32M_24M_v1_65536 "PR bin/44204" resize_ffs 65536 8192 65536 49152 1 51
80 test_case_xfail shrink_24M_16M_v2_4096 "PR bin/44205" resize_ffs 4096 512 49152 32768 2 41
81 test_case_xfail shrink_24M_16M_v2_8192 "PR bin/44205" resize_ffs 8192 1024 49152 32768 2 42
82 test_case_xfail shrink_24M_16M_v2_16384 "PR bin/44205" resize_ffs 16384 2048 49152 32768 2 43
83 test_case_xfail shrink_24M_16M_v2_32768 "PR bin/44205" resize_ffs 32768 4096 49152 32768 2 42
84 test_case_xfail shrink_24M_16M_v2_65536 "PR bin/44205" resize_ffs 65536 8192 49152 32768 2 38
85 test_case_xfail shrink_32M_24M_v2_4096 "PR bin/44205" resize_ffs 4096 512 65536 49152 2 55
86 test_case_xfail shrink_32M_24M_v2_8192 "PR bin/44205" resize_ffs 8192 1024 65536 49152 2 56
87 test_case_xfail shrink_32M_24M_v2_16384 "PR bin/44205" resize_ffs 16384 2048 65536 49152 2 58
[all …]
/freebsd/include/
H A Dpaths.h40 #define _PATH_DEFPATH "/sbin:/bin:/usr/sbin:/usr/bin:" \
41 _PATH_LOCALBASE "/sbin:" _PATH_LOCALBASE "/bin"
43 #define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
47 #define _PATH_BSHELL "/bin/sh"
51 #define _PATH_CP "/bin/cp"
52 #define _PATH_CSHELL "/bin/csh"
75 #define _PATH_LOGIN "/usr/bin/login"
85 #define _PATH_RCP "/bin/rcp"
87 #define _PATH_RLOGIN "/usr/bin/rlogin"
88 #define _PATH_RM "/bin/rm"
[all …]

12345678910>>...219