Home
last modified time | relevance | path

Searched full:off (Results 1 – 25 of 6770) sorted by relevance

12345678910>>...271

/netbsd-src/sys/dev/fdt/
H A Dfdt_openfirm.c41 int off, depth; in OF_peer() local
51 off = fdtbus_phandle2offset(phandle); in OF_peer()
52 if (off < 0) { in OF_peer()
57 for (off = fdt_next_node(fdt_data, off, &depth); in OF_peer()
58 off >= 0 && depth >= 0; in OF_peer()
59 off = fdt_next_node(fdt_data, off, &depth)) { in OF_peer()
61 return fdtbus_offset2phandle(off); in OF_peer()
72 int off, depth; in OF_child() local
78 off = fdtbus_phandle2offset(phandle); in OF_child()
79 if (off < 0) { in OF_child()
[all …]
/netbsd-src/external/lgpl3/gmp/dist/mpn/generic/
H A Dadd_n_sub_n.c54 mp_size_t off; /* offset in operands */ in mpn_add_n_sub_n() local
70 for (off = 0; off < n; off += PART_SIZE) in mpn_add_n_sub_n()
72 this_n = MIN (n - off, PART_SIZE); in mpn_add_n_sub_n()
74 acyo = mpn_add_nc (r1p + off, s1p + off, s2p + off, this_n, acyo); in mpn_add_n_sub_n()
76 acyn = mpn_add_n (r1p + off, s1p + off, s2p + off, this_n); in mpn_add_n_sub_n()
77 acyo = acyn + mpn_add_1 (r1p + off, r1p + off, this_n, acyo); in mpn_add_n_sub_n()
80 scyo = mpn_sub_nc (r2p + off, s1p + off, s2p + off, this_n, scyo); in mpn_add_n_sub_n()
82 scyn = mpn_sub_n (r2p + off, s1p + off, s2p + off, this_n); in mpn_add_n_sub_n()
83 scyo = scyn + mpn_sub_1 (r2p + off, r2p + off, this_n, scyo); in mpn_add_n_sub_n()
93 for (off = 0; off < n; off += PART_SIZE) in mpn_add_n_sub_n()
[all …]
/netbsd-src/etc/etc.amigappc/
H A Dttys10 console "/usr/libexec/getty Pc" wsvt25 off secure
12 ttye0 "/usr/libexec/getty Pc" wsvt25 off secure # custom chips
13 ttye1 "/usr/libexec/getty Pc" wsvt25 off secure # retina
14 ttye2 "/usr/libexec/getty Pc" wsvt25 off secure # retina
15 ttye3 "/usr/libexec/getty Pc" wsvt25 off secure # cirrus logic
16 ttye4 "/usr/libexec/getty Pc" wsvt25 off secure # a2410
17 ttye5 "/usr/libexec/getty Pc" wsvt25 off secure # CyberVision64
18 ttye6 "/usr/libexec/getty Pc" wsvt25 off secure # Domino, Merlin, oMniBus
19 ttye7 "/usr/libexec/getty Pc" wsvt25 off secure # CyberVision64/3D
23 ttyE0 "/usr/libexec/getty Pc" wsvt25 off secure
[all …]
/netbsd-src/etc/etc.amiga/
H A Dttys10 console "/usr/libexec/getty Pc" wsvt25 off secure
12 ttye0 "/usr/libexec/getty Pc" wsvt25 off secure # custom chips
13 ttye1 "/usr/libexec/getty Pc" wsvt25 off secure # retina
14 ttye2 "/usr/libexec/getty Pc" wsvt25 off secure # retina
15 ttye3 "/usr/libexec/getty Pc" wsvt25 off secure # cirrus logic
16 ttye4 "/usr/libexec/getty Pc" wsvt25 off secure # a2410
17 ttye5 "/usr/libexec/getty Pc" wsvt25 off secure # CyberVision64
18 ttye6 "/usr/libexec/getty Pc" wsvt25 off secure # Domino, Merlin, oMniBus
19 ttye7 "/usr/libexec/getty Pc" wsvt25 off secure # CyberVision64/3D
23 ttyE0 "/usr/libexec/getty Pc" wsvt25 off secure
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/binutils/
H A Dresbin.c427 rc_uint_type off; in bin_to_res_dialog() local
442 off = 8; in bin_to_res_dialog()
456 off = 16; in bin_to_res_dialog()
459 if (length < off + 10) in bin_to_res_dialog()
462 c = windres_get_16 (wrbfd, data + off, 2); in bin_to_res_dialog()
463 d->x = windres_get_16 (wrbfd, data + off + 2, 2); in bin_to_res_dialog()
464 d->y = windres_get_16 (wrbfd, data + off + 4, 2); in bin_to_res_dialog()
465 d->width = windres_get_16 (wrbfd, data + off + 6, 2); in bin_to_res_dialog()
466 d->height = windres_get_16 (wrbfd, data + off + 8, 2); in bin_to_res_dialog()
468 off += 10; in bin_to_res_dialog()
[all …]
H A Dresres.c80 rc_uint_type off, flen; in read_res_file() local
96 off = 0; in read_res_file()
101 skip_null_resource (&wrbfd, &off, flen); in read_res_file()
103 while (read_resource_entry (&wrbfd, &off, flen)) in read_res_file()
165 read_resource_entry (windres_bfd *wrbfd, rc_uint_type *off, rc_uint_type omax) in read_resource_entry() argument
176 off[0] = (off[0] + 3) & ~3; in read_resource_entry()
179 if ((off[0] + 8) > omax) in read_resource_entry()
181 read_res_data_hdr (wrbfd, off, omax, &reshdr); in read_resource_entry()
184 read_res_id (wrbfd, off, omax, &type); in read_resource_entry()
186 read_res_id (wrbfd, off, omax, &name); in read_resource_entry()
[all …]
/netbsd-src/external/gpl3/binutils/dist/binutils/
H A Dresbin.c427 rc_uint_type off; in bin_to_res_dialog() local
442 off = 8; in bin_to_res_dialog()
456 off = 16; in bin_to_res_dialog()
459 if (length < off + 10) in bin_to_res_dialog()
462 c = windres_get_16 (wrbfd, data + off, 2); in bin_to_res_dialog()
463 d->x = windres_get_16 (wrbfd, data + off + 2, 2); in bin_to_res_dialog()
464 d->y = windres_get_16 (wrbfd, data + off + 4, 2); in bin_to_res_dialog()
465 d->width = windres_get_16 (wrbfd, data + off + 6, 2); in bin_to_res_dialog()
466 d->height = windres_get_16 (wrbfd, data + off + 8, 2); in bin_to_res_dialog()
468 off += 10; in bin_to_res_dialog()
[all …]
H A Dresres.c80 rc_uint_type off, flen; in read_res_file() local
96 off = 0; in read_res_file()
101 skip_null_resource (&wrbfd, &off, flen); in read_res_file()
103 while (read_resource_entry (&wrbfd, &off, flen)) in read_res_file()
165 read_resource_entry (windres_bfd *wrbfd, rc_uint_type *off, rc_uint_type omax) in read_resource_entry() argument
176 off[0] = (off[0] + 3) & ~3; in read_resource_entry()
179 if ((off[0] + 8) > omax) in read_resource_entry()
181 read_res_data_hdr (wrbfd, off, omax, &reshdr); in read_resource_entry()
184 read_res_id (wrbfd, off, omax, &type); in read_resource_entry()
186 read_res_id (wrbfd, off, omax, &name); in read_resource_entry()
[all …]
/netbsd-src/tests/usr.bin/indent/
H A Dindent_off_on.c4 * Tests for the comments 'INDENT OFF' and 'INDENT ON', which temporarily
12 /*INDENT OFF*/
22 /*INDENT OFF*/
34 /*INDENT OFF*/
43 /*INDENT OFF*/
50 /* INDENT OFF */
58 /* INDENT OFF */
67 /* INDENT OFF */
75 /* INDENT OFF */
104 * Any whitespace around the 'INDENT ON/OFF' is ignored, as is any whitespace
[all …]
/netbsd-src/etc/etc.hp300/
H A Dttys8 console "/usr/libexec/getty Pc" vt220 off secure
12 ttyE0 "/usr/libexec/getty Pc" wsvt25 off secure
14 # Hardwired lines are marked off, by default, so getty(8)
16 ttyC0 "/usr/libexec/getty std.9600" unknown off secure
17 ttyC1 "/usr/libexec/getty std.9600" unknown off secure
18 ttyC2 "/usr/libexec/getty std.9600" unknown off secure
19 ttyC3 "/usr/libexec/getty std.9600" unknown off secure
21 ttyM0 "/usr/libexec/getty std.9600" unknown off secure
22 ttyM1 "/usr/libexec/getty std.9600" unknown off secure
23 ttyM2 "/usr/libexec/getty std.9600" unknown off secure
[all …]
/netbsd-src/sys/kern/
H A Duipc_mbufdebug.c103 m_peek_data(const struct mbuf *m, int off, int len, void *vp) in m_peek_data()
108 if (off < 0 || len < 0) in m_peek_data()
111 while (off > 0) { in m_peek_data()
114 if (off < m->m_len) in m_peek_data()
116 off -= m->m_len; in m_peek_data()
122 count = uimin(m->m_len - off, len); in m_peek_data()
123 memcpy(cp, mtod(m, char *) + off, count); in m_peek_data()
126 off = 0; in m_peek_data()
224 m_examine_ether(const struct mbuf *m, int off, const char *modif, in m_examine_ether()
230 pktlen = m_peek_len(m, modif) - off; in m_examine_ether()
101 m_peek_data(const struct mbuf * m,int off,int len,void * vp) m_peek_data() argument
222 m_examine_ether(const struct mbuf * m,int off,const char * modif,void (* pr)(const char *,...)) m_examine_ether() argument
271 m_examine_pppoe(const struct mbuf * m,int off,const char * modif,void (* pr)(const char *,...)) m_examine_pppoe() argument
353 m_examine_ppp(const struct mbuf * m,int off,const char * modif,void (* pr)(const char *,...)) m_examine_ppp() argument
444 m_examine_arp(const struct mbuf * m,int off,const char * modif,void (* pr)(const char *,...)) m_examine_arp() argument
544 m_examine_ip(const struct mbuf * m,int off,const char * modif,void (* pr)(const char *,...)) m_examine_ip() argument
603 m_examine_icmp(const struct mbuf * m,int off,const char * modif,void (* pr)(const char *,...)) m_examine_icmp() argument
649 m_examine_ip6(const struct mbuf * m,int off,const char * modif,void (* pr)(const char *,...)) m_examine_ip6() argument
716 m_examine_icmp6(const struct mbuf * m,int off,const char * modif,void (* pr)(const char *,...)) m_examine_icmp6() argument
792 m_examine_tcp(const struct mbuf * m,int off,const char * modif,void (* pr)(const char *,...)) m_examine_tcp() argument
925 m_examine_udp(const struct mbuf * m,int off,const char * modif,void (* pr)(const char *,...)) m_examine_udp() argument
952 m_examine_hex(const struct mbuf * m,int off,const char * modif,void (* pr)(const char *,...)) m_examine_hex() argument
[all...]
/netbsd-src/external/lgpl3/gmp/dist/
H A Dprimesieve.c100 #define SET_OFF1(m1, m2, M1, M2, off, BITS) \ argument
101 if (off) { \
102 if (off < GMP_LIMB_BITS) { \
103 m1 = (M1 >> off) | (M2 << (GMP_LIMB_BITS - off)); \
104 if (off <= BITS - GMP_LIMB_BITS) { \
105 m2 = M1 << (BITS - GMP_LIMB_BITS - off) \
106 | M2 >> off; \
108 m1 |= M1 << (BITS - off); \
109 m2 = M1 >> (off + GMP_LIMB_BITS - BITS); \
112 m1 = M1 << (BITS - off) \
[all …]
/netbsd-src/sys/dev/ic/
H A Dpcdisplay_subr.c52 int off; in pcdisplay_cursor_init() local
66 off = (scr->cursorrow * scr->type->ncols + scr->cursorcol) * 2 in pcdisplay_cursor_init()
69 scr->cursortmp = bus_space_read_2(memt, memh, off); in pcdisplay_cursor_init()
70 bus_space_write_2(memt, memh, off, scr->cursortmp ^ 0x7700); in pcdisplay_cursor_init()
96 int off; in pcdisplay_cursor() local
100 off = scr->cursorrow * scr->type->ncols + scr->cursorcol; in pcdisplay_cursor()
102 bus_space_write_2(memt, memh, scr->dispoffset + off * 2, in pcdisplay_cursor()
105 scr->mem[off] = scr->cursortmp; in pcdisplay_cursor()
114 off = (scr->cursorrow * scr->type->ncols + scr->cursorcol); in pcdisplay_cursor()
116 off = off * 2 + scr->dispoffset; in pcdisplay_cursor()
[all …]
H A Dam79c930.c144 io_write_1( struct am79c930_softc *sc, u_int32_t off, u_int8_t val) in io_write_1() argument
148 ((off>>8)& 0x7f)); in io_write_1()
150 bus_space_write_1(sc->sc_iot, sc->sc_ioh, AM79C930_LMA_LO, (off&0xff)); in io_write_1()
157 io_write_2(struct am79c930_softc *sc, u_int32_t off, u_int16_t val) in io_write_2() argument
161 ((off>>8)& 0x7f)); in io_write_2()
163 bus_space_write_1(sc->sc_iot,sc->sc_ioh,AM79C930_LMA_LO, (off&0xff)); in io_write_2()
172 io_write_4(struct am79c930_softc *sc, u_int32_t off, u_int32_t val) in io_write_4() argument
176 ((off>>8)& 0x7f)); in io_write_4()
178 bus_space_write_1(sc->sc_iot,sc->sc_ioh,AM79C930_LMA_LO, (off&0xff)); in io_write_4()
191 io_write_bytes(struct am79c930_softc *sc, u_int32_t off, u_int8_t *ptr, in io_write_bytes() argument
[all …]
H A Dtms320av110var.h84 #define tav_read_byte(ioh, iot, off) bus_space_read_1(ioh, iot, off) argument
86 #define tav_read_short(ioh, iot, off) ( \ argument
87 bus_space_read_1((ioh), (iot), (off)) | \
88 bus_space_read_1((ioh), (iot), (off)+1) << 8)
90 #define tav_read_long(ioh, iot, off) ( \ argument
91 bus_space_read_1((ioh), (iot), (off)) | \
92 bus_space_read_1((ioh), (iot), (off)+1) << 8 | \
93 bus_space_read_1((ioh), (iot), (off)+2) << 16 | \
94 bus_space_read_1((ioh), (iot), (off)+3))
96 #define tav_read_time(ioh, iot, off) ( \ argument
[all …]
/netbsd-src/sys/opencrypto/
H A Dcriov.c45 int cuio_getindx(struct uio *uio, int loc, int *off);
49 cuio_copydata(struct uio *uio, int off, int len, void *cp) in cuio_copydata() argument
55 if (off < 0) in cuio_copydata()
56 panic("cuio_copydata: off %d < 0", off); in cuio_copydata()
59 while (off > 0) { in cuio_copydata()
62 if (off < iov->iov_len) in cuio_copydata()
64 off -= iov->iov_len; in cuio_copydata()
71 count = uimin(iov->iov_len - off, len); in cuio_copydata()
72 memcpy(cp, (char *)iov->iov_base + off, count); in cuio_copydata()
75 off = 0; in cuio_copydata()
[all …]
/netbsd-src/share/doc/papers/pulldown/
H A D9.t78 * ensure that [off, off + len) is contiguous on the mbuf chain "m".
79 * packet chain before "off" is kept untouched.
88 m_pulldown(m, off, len, offp)
90 int off, len;
106 while (n != NULL && off > 0) {
107 if (n->m_len > off)
109 off -= n->m_len;
121 * the target data is on <n, off>.
124 if ((off == 0 || offp) && len <= n->m_len - off)
128 * when len < n->m_len - off and off != 0, it is a special case.
[all …]
/netbsd-src/etc/etc.pmax/
H A Dttys7 console "/usr/libexec/getty std.9600" vt220 off secure
13 ttyE0 "/usr/libexec/getty Pc" wsvt25 off secure
14 ttyE1 "/usr/libexec/getty Pc" wsvt25 off secure
15 ttyE2 "/usr/libexec/getty Pc" wsvt25 off secure
16 ttyE3 "/usr/libexec/getty Pc" wsvt25 off secure
20 ttya "/usr/libexec/getty std.9600" unknown off secure # 2nd comm port
21 ##ttyb "/usr/libexec/getty std.9600" unknown off secure # mouse
22 ttyc "/usr/libexec/getty std.9600" unknown off secure # 1st comm port
23 ##ttyd "/usr/libexec/getty std.9600" unknown off secure # keyboard
27 ##ttyD0 "/usr/libexec/getty std.9600" unknown off secure # mouse
[all …]
/netbsd-src/sys/arch/dreamcast/dev/g2/
H A Dg2bus_bus_mem.c189 g2bus_bus_mem_read_1(void *v, bus_space_handle_t sh, bus_size_t off) in g2bus_bus_mem_read_1() argument
196 rv = *(volatile uint8_t *)(sh + off); in g2bus_bus_mem_read_1()
204 g2bus_bus_mem_read_2(void *v, bus_space_handle_t sh, bus_size_t off) in g2bus_bus_mem_read_2() argument
211 rv = *(volatile uint16_t *)(sh + off); in g2bus_bus_mem_read_2()
219 g2bus_bus_mem_read_4(void *v, bus_space_handle_t sh, bus_size_t off) in g2bus_bus_mem_read_4() argument
226 rv = *(volatile uint32_t *)(sh + off); in g2bus_bus_mem_read_4()
234 g2bus_bus_mem_write_1(void *v, bus_space_handle_t sh, bus_size_t off, in g2bus_bus_mem_write_1() argument
241 *(volatile uint8_t *)(sh + off) = val; in g2bus_bus_mem_write_1()
247 g2bus_bus_mem_write_2(void *v, bus_space_handle_t sh, bus_size_t off, in g2bus_bus_mem_write_2() argument
254 *(volatile uint16_t *)(sh + off) = val; in g2bus_bus_mem_write_2()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/cmake/caches/
H A DFuchsia-stage2.cmake10 set(LLVM_ENABLE_BACKTRACES OFF CACHE BOOL "")
16 set(LLVM_ENABLE_TERMINFO OFF CACHE BOOL "")
17 set(LLVM_ENABLE_UNWIND_TABLES OFF CACHE BOOL "")
19 set(LLVM_INCLUDE_DOCS OFF CACHE BOOL "")
20 set(LLVM_INCLUDE_EXAMPLES OFF CACHE BOOL "")
21 set(LLVM_INCLUDE_GO_TESTS OFF CACHE BOOL "")
23 set(LLVM_ENABLE_Z3_SOLVER OFF CACHE BOOL "")
35 set(CLANG_ENABLE_ARCMT OFF CACHE BOOL "")
37 set(CLANG_PLUGIN_SUPPORT OFF CACHE BOOL "")
54 set(COMPILER_RT_ENABLE_TVOS OFF CACHE BOOL "")
[all …]
H A DFuchsia.cmake9 set(LLVM_ENABLE_BACKTRACES OFF CACHE BOOL "")
11 set(LLVM_ENABLE_TERMINFO OFF CACHE BOOL "")
12 set(LLVM_ENABLE_UNWIND_TABLES OFF CACHE BOOL "")
13 set(LLVM_ENABLE_ZLIB OFF CACHE BOOL "")
14 set(LLVM_INCLUDE_DOCS OFF CACHE BOOL "")
15 set(LLVM_INCLUDE_EXAMPLES OFF CACHE BOOL "")
16 set(LLVM_INCLUDE_GO_TESTS OFF CACHE BOOL "")
28 set(CLANG_ENABLE_ARCMT OFF CACHE BOOL "")
30 set(CLANG_PLUGIN_SUPPORT OFF CACHE BOOL "")
45 set(COMPILER_RT_ENABLE_IOS OFF CACHE BOOL "")
[all …]
/netbsd-src/sys/arch/dreamcast/dev/g1/
H A Dg1bus_bus_mem.c167 g1bus_bus_mem_read_1(void *v, bus_space_handle_t sh, bus_size_t off) in g1bus_bus_mem_read_1() argument
171 rv = *(volatile uint8_t *)(sh + off); in g1bus_bus_mem_read_1()
177 g1bus_bus_mem_read_2(void *v, bus_space_handle_t sh, bus_size_t off) in g1bus_bus_mem_read_2() argument
181 rv = *(volatile uint16_t *)(sh + off); in g1bus_bus_mem_read_2()
187 g1bus_bus_mem_read_4(void *v, bus_space_handle_t sh, bus_size_t off) in g1bus_bus_mem_read_4() argument
191 rv = *(volatile uint32_t *)(sh + off); in g1bus_bus_mem_read_4()
197 g1bus_bus_mem_write_1(void *v, bus_space_handle_t sh, bus_size_t off, in g1bus_bus_mem_write_1() argument
201 *(volatile uint8_t *)(sh + off) = val; in g1bus_bus_mem_write_1()
205 g1bus_bus_mem_write_2(void *v, bus_space_handle_t sh, bus_size_t off, in g1bus_bus_mem_write_2() argument
209 *(volatile uint16_t *)(sh + off) = val; in g1bus_bus_mem_write_2()
[all …]
/netbsd-src/sys/arch/hpcmips/stand/lcboot/
H A Dextern.h83 #define REGWRITE_1(base, off, val) \ argument
84 (__REG_1(MIPS_PHYS_TO_KSEG1((u_int32_t) (base) + (off))) \
86 #define REGWRITE_2(base, off, val) \ argument
87 (__REG_2(MIPS_PHYS_TO_KSEG1((u_int32_t) (base) + (off))) \
89 #define REGWRITE_4(base, off, val) \ argument
90 (__REG_4(MIPS_PHYS_TO_KSEG1((u_int32_t) (base) + (off))) \
93 #define REGREAD_1(base, off) \ argument
94 (__REG_1(MIPS_PHYS_TO_KSEG1((u_int32_t) (base) + (off))))
95 #define REGREAD_2(base, off) \ argument
96 (__REG_2(MIPS_PHYS_TO_KSEG1((u_int32_t) (base) + (off))))
[all …]
/netbsd-src/etc/etc.vax/
H A Dttys9 console "/usr/libexec/getty std.9600" unknown off secure
23 #tty00 "/usr/libexec/getty std.9600" unknown off secure
24 #tty01 "/usr/libexec/getty std.9600" unknown off secure
25 #tty02 "/usr/libexec/getty std.9600" unknown off secure
26 #tty03 "/usr/libexec/getty std.9600" unknown off secure
27 #tty04 "/usr/libexec/getty std.9600" unknown off secure
28 #tty05 "/usr/libexec/getty std.9600" unknown off secure
29 #tty06 "/usr/libexec/getty std.9600" unknown off secure
30 #tty07 "/usr/libexec/getty std.9600" unknown off secure
33 #ttyS0 "/usr/libexec/getty std.9600" unknown off secure
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/ec/
H A Deck_prn.c18 int ECPKParameters_print_fp(FILE *fp, const EC_GROUP *x, int off) in ECPKParameters_print_fp() argument
28 ret = ECPKParameters_print(b, x, off); in ECPKParameters_print_fp()
33 int EC_KEY_print_fp(FILE *fp, const EC_KEY *x, int off) in EC_KEY_print_fp() argument
43 ret = EC_KEY_print(b, x, off); in EC_KEY_print_fp()
65 size_t len, int off);
67 int ECPKParameters_print(BIO *bp, const EC_GROUP *x, int off) in ECPKParameters_print() argument
97 if (!BIO_indent(bp, off, 128)) in ECPKParameters_print()
109 if (!BIO_indent(bp, off, 128)) in ECPKParameters_print()
155 if (!BIO_indent(bp, off, 128)) in ECPKParameters_print()
169 if (!BIO_indent(bp, off, 128)) in ECPKParameters_print()
[all …]

12345678910>>...271