Searched refs:nr (Results 1 - 25 of 461) sorted by relevance

1234567891011>>

/netbsd-current/usr.bin/mail/USD.doc/
H A DMakefile8 SRCS= mail0.nr mail1.nr mail2.nr mail3.nr mail4.nr mail5.nr mail6.nr \
9 mail7.nr mail8.nr mail9.nr mail
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/sim/igen/
H A Dlf.c47 int line_nr; /* nr complete lines written, curr line is line_nr+1 */
114 int nr = 0; local
125 nr += file->indent;
129 nr += 1;
130 return nr;
136 int nr = 0; local
139 nr += lf_putchr (file, string[i]);
140 return nr;
154 int nr = 0; local
160 nr
169 int nr = 0; local
182 int nr = 0; local
203 int nr = 0; local
226 int nr = 0; local
251 int nr = 0; local
267 int nr = 0; local
306 int nr = 0; local
322 int nr = 0; local
343 int nr = 0; local
364 int nr = 0; local
389 int nr = 0; local
411 int nr = 0; local
424 int nr = 0; local
[all...]
/netbsd-current/external/gpl3/gdb/dist/sim/igen/
H A Dlf.c37 int line_nr; /* nr complete lines written, curr line is line_nr+1 */
104 int nr = 0; local
115 nr += file->indent;
119 nr += 1;
120 return nr;
126 int nr = 0; local
129 nr += lf_putchr (file, string[i]);
130 return nr;
144 int nr = 0; local
150 nr
159 int nr = 0; local
172 int nr = 0; local
193 int nr = 0; local
216 int nr = 0; local
241 int nr = 0; local
257 int nr = 0; local
296 int nr = 0; local
312 int nr = 0; local
333 int nr = 0; local
354 int nr = 0; local
379 int nr = 0; local
401 int nr = 0; local
414 int nr = 0; local
[all...]
/netbsd-current/sys/compat/linux32/common/
H A Dlinux32_ioctl.h62 #define _LINUX32_IOC(dir,type,nr,size) \
63 (((nr) << _LINUX32_IOC_NRSHIFT) | \
68 #define _LINUX32_IO(type,nr) \
69 _LINUX32_IOC(_LINUX32_IOC_NONE,(type),(nr),0)
70 #define _LINUX32_IOR(type,nr,size) \
71 _LINUX32_IOC(_LINUX32_IOC_READ,(type),(nr),sizeof(size))
72 #define _LINUX32_IOW(type,nr,size) \
73 _LINUX32_IOC(_LINUX32_IOC_WRITE,(type),(nr),sizeof(size))
74 #define _LINUX32_IOWR(type,nr,size) \
75 _LINUX32_IOC(_LINUX32_IOC_READ|_LINUX32_IOC_WRITE,(type),(nr),sizeo
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/sim/ppc/
H A Dlf.c43 int line_nr; /* nr complete lines written, curr line is line_nr+1 */
100 int nr = 0; local
109 nr += file->indent;
113 nr += 1;
114 return nr;
128 int nr = 0; local
132 nr += lf_putchr(file, *chp);
135 return nr;
142 int nr = 0; local
144 nr
155 int nr = 0; local
176 int nr = 0; local
194 int nr = 0; local
236 int nr = 0; local
255 int nr = 0; local
271 int nr = 0; local
309 int nr = 0; local
324 int nr = 0; local
341 int nr = 0; local
360 int nr = 0; local
384 int nr = 0; local
406 int nr = 0; local
[all...]
/netbsd-current/external/gpl3/gdb/dist/sim/ppc/
H A Dlf.c34 int line_nr; /* nr complete lines written, curr line is line_nr+1 */
91 int nr = 0; local
100 nr += file->indent;
104 nr += 1;
105 return nr;
119 int nr = 0; local
123 nr += lf_putchr(file, *chp);
126 return nr;
133 int nr = 0; local
135 nr
146 int nr = 0; local
167 int nr = 0; local
185 int nr = 0; local
227 int nr = 0; local
246 int nr = 0; local
262 int nr = 0; local
300 int nr = 0; local
315 int nr = 0; local
332 int nr = 0; local
351 int nr = 0; local
375 int nr = 0; local
397 int nr = 0; local
[all...]
/netbsd-current/external/bsd/wpa/dist/src/ap/
H A Dneighbor_db.c22 struct hostapd_neighbor_entry *nr; local
24 dl_list_for_each(nr, &hapd->nr_db, struct hostapd_neighbor_entry,
26 if (os_memcmp(bssid, nr->bssid, ETH_ALEN) == 0 &&
28 (ssid->ssid_len == nr->ssid.ssid_len &&
29 os_memcmp(ssid->ssid, nr->ssid.ssid,
31 return nr;
37 static void hostapd_neighbor_clear_entry(struct hostapd_neighbor_entry *nr) argument
39 wpabuf_free(nr->nr);
40 nr
54 struct hostapd_neighbor_entry *nr; local
66 hostapd_neighbor_set(struct hostapd_data *hapd, const u8 *bssid, const struct wpa_ssid_value *ssid, const struct wpabuf *nr, const struct wpabuf *lci, const struct wpabuf *civic, int stationary) argument
113 struct hostapd_neighbor_entry *nr; local
129 struct hostapd_neighbor_entry *nr, *prev; local
175 struct wpabuf *nr; local
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/sim/testsuite/sim/microblaze/
H A Dtestutils.inc2 .macro exit nr
3 addi r3, r0, \nr;
/netbsd-current/usr.bin/cksum/
H A Dsum1.c54 int nr; local
64 while ((nr = read(fd, buf, sizeof(buf))) > 0)
65 for (total += nr, p = buf; nr--; ++p) {
70 if (nr < 0)
H A Dsum2.c55 int nr; local
68 while ((nr = read(fd, buf, sizeof(buf))) > 0)
69 for (total += nr, p = buf; nr--; ++p)
71 if (nr < 0)
/netbsd-current/sys/compat/linux/common/
H A Dlinux_ioctl.h90 #define _LINUX_IOC(dir,type,nr,size) \
91 (((nr) << _LINUX_IOC_NRSHIFT) | \
96 #define _LINUX_IO(type,nr) \
97 _LINUX_IOC(_LINUX_IOC_NONE,(type),(nr),0)
98 #define _LINUX_IOR(type,nr,size) \
99 _LINUX_IOC(_LINUX_IOC_READ,(type),(nr),sizeof(size))
100 #define _LINUX_IOW(type,nr,size) \
101 _LINUX_IOC(_LINUX_IOC_WRITE,(type),(nr),sizeof(size))
102 #define _LINUX_IOWR(type,nr,size) \
103 _LINUX_IOC(_LINUX_IOC_READ|_LINUX_IOC_WRITE,(type),(nr),sizeo
[all...]
/netbsd-current/tools/compat/
H A Dpread.c42 ssize_t nr; local
47 nr = read(d, buf, nbytes);
53 return nr;
/netbsd-current/usr.bin/tset/
H A Dmisc.c47 register int fd, nr, nw; local
53 while ((nr = read(fd, buf, sizeof(buf))) > 0)
54 if ((nw = write(STDERR_FILENO, buf, nr)) == -1)
56 if (nr != 0)
/netbsd-current/sys/external/bsd/drm2/dist/drm/nouveau/
H A Dnouveau_ioc32.c58 unsigned int nr = DRM_IOCTL_NR(cmd); local
62 if (nr < DRM_COMMAND_BASE)
66 if (nr < DRM_COMMAND_BASE + ARRAY_SIZE(mga_compat_ioctls))
67 fn = nouveau_compat_ioctls[nr - DRM_COMMAND_BASE];
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/
H A Dwatchpoint-fork.h33 extern void forkoff (int nr);
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
H A Dwatchpoint-fork.h33 extern void forkoff (int nr);
/netbsd-current/external/bsd/tcpdump/dist/
H A Dprint-cnfp.c160 const struct nfrec_v1 *nr; local
187 nr = (const struct nfrec_v1 *)&nh[1];
191 for (; nrecs != 0; nr++, nrecs--) {
198 ND_TCHECK_SIZE(nr);
200 GET_BE_U_4(nr->start_time)/1000,
201 GET_BE_U_4(nr->start_time)%1000,
202 GET_BE_U_4(nr->last_time)/1000,
203 GET_BE_U_4(nr->last_time)%1000);
207 intoa(GET_IPV4_TO_NETWORK_ORDER(nr->src_ina)),
209 GET_BE_U_2(nr
255 const struct nfrec_v5 *nr; local
357 const struct nfrec_v6 *nr; local
[all...]
/netbsd-current/lib/libc/stdio/
H A Dfgetwc.c48 size_t nr; local
65 nr = mbrtowc(&wc, (const char *)fp->_p,
67 if (nr == (size_t)-1) {
70 } else if (nr == (size_t)-2) {
80 nr = 1;
82 fp->_p += nr;
83 _DIAGASSERT(__type_fit(int, fp->_r - nr));
84 fp->_r -= (int)nr;
/netbsd-current/external/gpl3/gdb/dist/sim/testsuite/microblaze/
H A Dtestutils.inc3 .macro system_call nr:req
4 addi r12, r0, \nr;
9 .macro exit nr:req
10 addi r3, r0, \nr;
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_syscall_linux_x86_64.inc16 static uptr internal_syscall(u64 nr) {
18 asm volatile("syscall" : "=a"(retval) : "a"(nr) : "rcx", "r11",
24 static uptr internal_syscall(u64 nr, T1 arg1) {
26 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1) :
32 static uptr internal_syscall(u64 nr, T1 arg1, T2 arg2) {
34 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1),
40 static uptr internal_syscall(u64 nr, T1 arg1, T2 arg2, T3 arg3) {
42 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1),
48 static uptr internal_syscall(u64 nr, T1 arg1, T2 arg2, T3 arg3, T4 arg4) {
51 "syscall" : "=a"(retval) : "a"(nr), "
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_syscall_linux_x86_64.inc14 static uptr internal_syscall(u64 nr) {
16 asm volatile("syscall" : "=a"(retval) : "a"(nr) : "rcx", "r11",
22 static uptr internal_syscall(u64 nr, T1 arg1) {
24 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1) :
30 static uptr internal_syscall(u64 nr, T1 arg1, T2 arg2) {
32 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1),
38 static uptr internal_syscall(u64 nr, T1 arg1, T2 arg2, T3 arg3) {
40 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1),
46 static uptr internal_syscall(u64 nr, T1 arg1, T2 arg2, T3 arg3, T4 arg4) {
49 "syscall" : "=a"(retval) : "a"(nr), "
[all...]
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_syscall_linux_x86_64.inc15 static uptr internal_syscall(u64 nr) {
17 asm volatile("syscall" : "=a"(retval) : "a"(nr) : "rcx", "r11",
23 static uptr internal_syscall(u64 nr, T1 arg1) {
25 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1) :
31 static uptr internal_syscall(u64 nr, T1 arg1, T2 arg2) {
33 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1),
39 static uptr internal_syscall(u64 nr, T1 arg1, T2 arg2, T3 arg3) {
41 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1),
47 static uptr internal_syscall(u64 nr, T1 arg1, T2 arg2, T3 arg3, T4 arg4) {
50 "syscall" : "=a"(retval) : "a"(nr), "
[all...]
/netbsd-current/sys/crypto/chacha/arch/x86/
H A Dchacha_sse2_impl.c50 unsigned nr)
54 chacha_core_sse2(out, in, k, c, nr);
63 unsigned nr)
67 hchacha_sse2(out, in, k, c, nr);
75 unsigned nr)
79 chacha_stream_sse2(s, nbytes, blkno, nonce, key, nr);
88 unsigned nr)
92 chacha_stream_xor_sse2(c, p, nbytes, blkno, nonce, key, nr);
100 unsigned nr)
104 xchacha_stream_sse2(s, nbytes, blkno, nonce, key, nr);
46 chacha_core_sse2_impl(uint8_t out[restrict static 64], const uint8_t in[static 16], const uint8_t k[static 32], const uint8_t c[static 16], unsigned nr) argument
59 hchacha_sse2_impl(uint8_t out[restrict static 32], const uint8_t in[static 16], const uint8_t k[static 32], const uint8_t c[static 16], unsigned nr) argument
72 chacha_stream_sse2_impl(uint8_t *restrict s, size_t nbytes, uint32_t blkno, const uint8_t nonce[static 12], const uint8_t key[static 32], unsigned nr) argument
84 chacha_stream_xor_sse2_impl(uint8_t *c, const uint8_t *p, size_t nbytes, uint32_t blkno, const uint8_t nonce[static 12], const uint8_t key[static 32], unsigned nr) argument
97 xchacha_stream_sse2_impl(uint8_t *restrict s, size_t nbytes, uint32_t blkno, const uint8_t nonce[static 24], const uint8_t key[static 32], unsigned nr) argument
109 xchacha_stream_xor_sse2_impl(uint8_t *c, const uint8_t *p, size_t nbytes, uint32_t blkno, const uint8_t nonce[static 24], const uint8_t key[static 32], unsigned nr) argument
[all...]
/netbsd-current/sys/crypto/chacha/arch/arm/
H A Dchacha_neon_impl.c56 unsigned nr)
60 chacha_core_neon(out, in, k, c, nr);
69 unsigned nr)
73 hchacha_neon(out, in, k, c, nr);
81 unsigned nr)
85 chacha_stream_neon(s, nbytes, blkno, nonce, key, nr);
94 unsigned nr)
98 chacha_stream_xor_neon(c, p, nbytes, blkno, nonce, key, nr);
106 unsigned nr)
110 xchacha_stream_neon(s, nbytes, blkno, nonce, key, nr);
52 chacha_core_neon_impl(uint8_t out[restrict static 64], const uint8_t in[static 16], const uint8_t k[static 32], const uint8_t c[static 16], unsigned nr) argument
65 hchacha_neon_impl(uint8_t out[restrict static 32], const uint8_t in[static 16], const uint8_t k[static 32], const uint8_t c[static 16], unsigned nr) argument
78 chacha_stream_neon_impl(uint8_t *restrict s, size_t nbytes, uint32_t blkno, const uint8_t nonce[static 12], const uint8_t key[static 32], unsigned nr) argument
90 chacha_stream_xor_neon_impl(uint8_t *c, const uint8_t *p, size_t nbytes, uint32_t blkno, const uint8_t nonce[static 12], const uint8_t key[static 32], unsigned nr) argument
103 xchacha_stream_neon_impl(uint8_t *restrict s, size_t nbytes, uint32_t blkno, const uint8_t nonce[static 24], const uint8_t key[static 32], unsigned nr) argument
115 xchacha_stream_xor_neon_impl(uint8_t *c, const uint8_t *p, size_t nbytes, uint32_t blkno, const uint8_t nonce[static 24], const uint8_t key[static 32], unsigned nr) argument
[all...]
/netbsd-current/sys/arch/cesfic/cesfic/
H A Dsic6351.c70 sic_enable_int(int nr, int type, int icod, int level, int vector) argument
74 *(volatile int *)(sicbase + 0x300 + nr * 4) = vector;
75 *(volatile int *)(sicbase + 0x200 + nr * 4) = icod;
76 *(volatile int *)(sicbase + 0x100 + act2icr(nr))

Completed in 256 milliseconds

1234567891011>>