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

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/jemalloc/dist/test/include/test/
sleep.h 1 void sleep_ns(unsigned ns);
  /src/external/bsd/ipf/dist/lib/
printnatside.c 13 printnatside(side, ns)
15 nat_stat_side_t *ns;
17 PRINTF("%lu\tproxy create fail %s\n", ns->ns_appr_fail, side);
18 PRINTF("%lu\tproxy fail %s\n", ns->ns_ipf_proxy_fail, side);
19 PRINTF("%lu\tbad nat %s\n", ns->ns_badnat, side);
20 PRINTF("%lu\tbad nat new %s\n", ns->ns_badnatnew, side);
21 PRINTF("%lu\tbad next addr %s\n", ns->ns_badnextaddr, side);
22 PRINTF("%lu\tbucket max %s\n", ns->ns_bucket_max, side);
23 PRINTF("%lu\tclone nomem %s\n", ns->ns_clone_nomem, side);
24 PRINTF("%lu\tdecap bad %s\n", ns->ns_decap_bad, side)
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dwarf2/
enum-type-c++.cc 18 namespace ns { namespace
33 int u1 = ns::A::val1;
35 int u2 = (int)ns::ec::val2;
  /src/sys/ufs/lfs/
ulfs_bswap.h 52 ulfs_rw16(uint16_t a, int ns)
54 return ((ns) ? bswap16(a) : (a));
58 ulfs_rw32(uint32_t a, int ns)
60 return ((ns) ? bswap32(a) : (a));
64 ulfs_rw64(uint64_t a, int ns)
66 return ((ns) ? bswap64(a) : (a));
69 #define ulfs_rw16(a, ns) (__USE(ns), (uint16_t)(a))
70 #define ulfs_rw32(a, ns) (__USE(ns), (uint32_t)(a)
    [all...]
  /src/external/bsd/jemalloc/dist/test/src/
sleep.c 4 * Sleep for approximately ns nanoseconds. No lower *nor* upper bound on sleep
8 sleep_ns(unsigned ns) {
9 assert(ns <= 1000*1000*1000);
12 Sleep(ns / 1000 / 1000);
17 if (ns < 1000*1000*1000) {
19 timeout.tv_nsec = ns;
  /src/external/bsd/jemalloc.old/dist/test/src/
mq.c 4 * Sleep for approximately ns nanoseconds. No lower *nor* upper bound on sleep
8 mq_nanosleep(unsigned ns) {
9 assert(ns <= 1000*1000*1000);
12 Sleep(ns / 1000);
17 if (ns < 1000*1000*1000) {
19 timeout.tv_nsec = ns;
  /src/sys/compat/netbsd32/
netbsd32_sysent.c 144 #define ns(type) .sy_narg = n(type), .sy_argsize = s(type) macro
148 ns(struct netbsd32_syscall_args),
153 ns(struct netbsd32_exit_args),
160 ns(struct netbsd32_read_args),
164 ns(struct netbsd32_write_args),
168 ns(struct netbsd32_open_args),
172 ns(struct netbsd32_close_args),
176 ns(struct compat_50_netbsd32_wait4_args),
180 ns(struct compat_43_netbsd32_ocreat_args),
184 ns(struct netbsd32_link_args)
    [all...]
  /src/sys/ufs/ufs/
ufs_bswap.h 51 ufs_rw16(uint16_t a, int ns)
53 return ((ns) ? bswap16(a) : (a));
57 ufs_rw32(uint32_t a, int ns)
59 return ((ns) ? bswap32(a) : (a));
63 ufs_rw64(uint64_t a, int ns)
65 return ((ns) ? bswap64(a) : (a));
69 ufs_rw16(uint16_t a, int ns)
75 ufs_rw32(uint32_t a, int ns)
81 ufs_rw64(uint64_t a, int ns)
87 #define ufs_add16(a, b, ns) \
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cxxdump/
llvm-cxxdump.h 19 #define LLVM_CXXDUMP_ENUM_ENT(ns, enum) \
20 { #enum, ns::enum }
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
flexible-array-member.c 37 struct no_size *ns; variable in typeref:struct:no_size
49 ns = (struct no_size *) malloc (sizeof (*ns) + 3 * sizeof (int));
53 ns->n = 3;
54 ns->items[0] = 101;
55 ns->items[1] = 102;
56 ns->items[2] = 103;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
flexible-array-member.c 37 struct no_size *ns; variable in typeref:struct:no_size
49 ns = (struct no_size *) malloc (sizeof (*ns) + 3 * sizeof (int));
53 ns->n = 3;
54 ns->items[0] = 101;
55 ns->items[1] = 102;
56 ns->items[2] = 103;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
flexible-array-member.c 37 struct no_size *ns; variable in typeref:struct:no_size
49 ns = (struct no_size *) malloc (sizeof (*ns) + 3 * sizeof (int));
53 ns->n = 3;
54 ns->items[0] = 101;
55 ns->items[1] = 102;
56 ns->items[2] = 103;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/
flexible-array-member.c 37 struct no_size *ns; variable in typeref:struct:no_size
49 ns = (struct no_size *) malloc (sizeof (*ns) + 3 * sizeof (int));
53 ns->n = 3;
54 ns->items[0] = 101;
55 ns->items[1] = 102;
56 ns->items[2] = 103;
  /src/external/mpl/bind/dist/bin/tests/system/
org.isc.bind.system 21 for ns in 1 2 3 4 5 6 7 8 9 10 11
23 ifup 0 ff $ns
25 for ns in 1 2
27 ifup 1 99 $ns
28 ifup 2 00 $ns
  /src/sys/kern/
init_sysent.c 144 #define ns(type) .sy_narg = n(type), .sy_argsize = s(type) macro
148 ns(struct sys_syscall_args),
153 ns(struct sys_exit_args),
160 ns(struct sys_read_args),
165 ns(struct sys_write_args),
170 ns(struct sys_open_args),
175 ns(struct sys_close_args),
179 ns(struct compat_50_sys_wait4_args),
184 ns(struct compat_43_sys_creat_args),
189 ns(struct sys_link_args)
    [all...]
  /src/sys/compat/linux32/arch/aarch64/
linux32_sysent.c 34 #define ns(type) .sy_narg = n(type), .sy_argsize = s(type) macro
41 ns(struct linux32_sys_exit_args),
48 ns(struct netbsd32_read_args),
52 ns(struct netbsd32_write_args),
56 ns(struct linux32_sys_open_args),
60 ns(struct netbsd32_close_args),
64 ns(struct linux32_sys_waitpid_args),
68 ns(struct linux32_sys_creat_args),
72 ns(struct netbsd32_link_args),
76 ns(struct linux32_sys_unlink_args)
    [all...]
  /src/sys/compat/linux32/arch/amd64/
linux32_sysent.c 37 #define ns(type) .sy_narg = n(type), .sy_argsize = s(type) macro
44 ns(struct linux32_sys_exit_args),
51 ns(struct netbsd32_read_args),
55 ns(struct netbsd32_write_args),
59 ns(struct linux32_sys_open_args),
63 ns(struct netbsd32_close_args),
67 ns(struct linux32_sys_waitpid_args),
71 ns(struct linux32_sys_creat_args),
75 ns(struct netbsd32_link_args),
79 ns(struct linux32_sys_unlink_args)
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/synthfromdnssec/
tests.sh 104 for ns in 2 4 5 6; do
105 case $ns in
126 dig_with_opts a.example. @10.53.0.${ns} a >dig.out.ns${ns}.test$n || ret=1
127 check_ad_flag $ad dig.out.ns${ns}.test$n || ret=1
128 check_status NXDOMAIN dig.out.ns${ns}.test$n || ret=1
129 check_nosynth_soa example. dig.out.ns${ns}.test$n || ret=
    [all...]
  /src/external/mpl/bind/dist/lib/ns/include/ns/
notify.h 18 #include <ns/client.h>
  /src/sys/compat/linux/arch/i386/
linux_sysent.c 31 #define ns(type) .sy_narg = n(type), .sy_argsize = s(type) macro
38 ns(struct linux_sys_exit_args),
45 ns(struct sys_read_args),
50 ns(struct sys_write_args),
55 ns(struct linux_sys_open_args),
60 ns(struct sys_close_args),
64 ns(struct linux_sys_waitpid_args),
69 ns(struct linux_sys_creat_args),
74 ns(struct sys_link_args),
79 ns(struct linux_sys_unlink_args)
    [all...]
  /src/sys/compat/sunos/
sunos_sysent.c 28 #define ns(type) .sy_narg = n(type), .sy_argsize = s(type) macro
35 ns(struct sys_exit_args),
42 ns(struct sys_read_args),
47 ns(struct sys_write_args),
52 ns(struct sunos_sys_open_args),
57 ns(struct sys_close_args),
61 ns(struct sunos_sys_wait4_args),
66 ns(struct sunos_sys_creat_args),
71 ns(struct sys_link_args),
76 ns(struct sys_unlink_args)
    [all...]
  /src/sys/compat/sunos32/
sunos32_sysent.c 32 #define ns(type) .sy_narg = n(type), .sy_argsize = s(type) macro
39 ns(struct netbsd32_exit_args),
46 ns(struct netbsd32_read_args),
50 ns(struct netbsd32_write_args),
54 ns(struct sunos32_sys_open_args),
58 ns(struct netbsd32_close_args),
62 ns(struct sunos32_sys_wait4_args),
66 ns(struct sunos32_sys_creat_args),
70 ns(struct netbsd32_link_args),
74 ns(struct netbsd32_unlink_args)
    [all...]
  /src/sys/arch/arm/dts/
sun8i-h3-orangepi-plus2e.dts 35 clock-latency-ns = <244144>;
41 clock-latency-ns = <244144>;
  /src/sys/compat/linux/arch/arm/
linux_sysent.c 32 #define ns(type) .sy_narg = n(type), .sy_argsize = s(type) macro
39 ns(struct linux_sys_exit_args),
46 ns(struct sys_read_args),
51 ns(struct sys_write_args),
56 ns(struct linux_sys_open_args),
61 ns(struct sys_close_args),
65 ns(struct linux_sys_waitpid_args),
70 ns(struct linux_sys_creat_args),
75 ns(struct sys_link_args),
80 ns(struct linux_sys_unlink_args)
    [all...]
  /src/sys/compat/linux/arch/mips/
linux_sysent.c 32 #define ns(type) .sy_narg = n(type), .sy_argsize = s(type) macro
39 ns(struct linux_sys_exit_args),
46 ns(struct sys_read_args),
51 ns(struct sys_write_args),
56 ns(struct linux_sys_open_args),
61 ns(struct sys_close_args),
65 ns(struct linux_sys_waitpid_args),
70 ns(struct linux_sys_creat_args),
75 ns(struct sys_link_args),
80 ns(struct linux_sys_unlink_args)
    [all...]

Completed in 52 milliseconds

1 2 3 4 5 6 7 8 91011>>