Searched refs:offset (Results 201 - 225 of 3221) sorted by relevance

1234567891011>>

/freebsd-current/sys/dev/clk/allwinner/
H A Daw_clk_prediv_mux.h33 uint32_t offset; member in struct:aw_clk_prediv_mux_def
/freebsd-current/sys/dev/clk/
H A Dclk_gate.h34 uint32_t offset; member in struct:clk_gate_def
H A Dclk_mux.h34 uint32_t offset; member in struct:clk_mux_def
/freebsd-current/sys/dev/clk/rockchip/
H A Drk_clk_fract.h35 uint32_t offset; member in struct:rk_clk_fract_def
H A Drk_clk_gate.h35 uint32_t offset; member in struct:rk_clk_gate_def
H A Drk_clk_mux.h35 uint32_t offset; member in struct:rk_clk_mux_def
/freebsd-current/sys/arm64/freescale/imx/clk/
H A Dimx_clk_gate.h35 uint32_t offset; member in struct:imx_clk_gate_def
H A Dimx_clk_mux.h35 uint32_t offset; member in struct:imx_clk_mux_def
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Dlzjb.c57 int mlen, offset, hash; local
81 offset = (intptr_t)(src - *hp) & OFFSET_MASK;
83 cpy = src - offset;
91 (offset >> NBBY);
92 *dst++ = (uchar_t)offset;
121 int offset = ((src[0] << NBBY) | src[1]) & OFFSET_MASK; local
123 if ((cpy = dst - offset) < (uchar_t *)d_start)
/freebsd-current/sys/dev/siis/
H A Dsiis.h344 u_int prb_offset; /* PRB offset */
429 #define ATA_INB(res, offset) \
430 bus_read_1((res), (offset))
431 #define ATA_INW(res, offset) \
432 bus_read_2((res), (offset))
433 #define ATA_INL(res, offset) \
434 bus_read_4((res), (offset))
435 #define ATA_INSW(res, offset, addr, count) \
436 bus_read_multi_2((res), (offset), (addr), (count))
437 #define ATA_INSW_STRM(res, offset, add
[all...]
/freebsd-current/sys/dev/fdt/
H A Dfdt_pinctrl.c64 int i, offset, nameslen; local
70 for (i = 0, offset = 0; offset < nameslen; i++) {
71 if (strcmp(name, &names[offset]) == 0)
73 offset += strlen(&names[offset]) + 1;
76 if (offset < nameslen)
/freebsd-current/contrib/ntp/libparse/
H A Dclk_varitext.c148 if (Stoi(&buffer[format->field_offsets[O_DAY].offset], &clock_time->day,
150 Stoi(&buffer[format->field_offsets[O_MONTH].offset], &clock_time->month,
152 Stoi(&buffer[format->field_offsets[O_YEAR].offset], &clock_time->year,
154 Stoi(&buffer[format->field_offsets[O_HOUR].offset], &clock_time->hour,
156 Stoi(&buffer[format->field_offsets[O_MIN].offset], &clock_time->minute,
158 Stoi(&buffer[format->field_offsets[O_SEC].offset], &clock_time->second,
162 u_char *f = (u_char*) &buffer[format->field_offsets[O_FLAGS].offset];
167 if (((*f) & VT_BST)) /* BST flag is set so set to indicate daylight saving time is active and utc offset */
H A Dclk_dcf7000.c102 if (Stoi(&buffer[format->field_offsets[O_DAY].offset], &clock_time->day,
104 Stoi(&buffer[format->field_offsets[O_MONTH].offset], &clock_time->month,
106 Stoi(&buffer[format->field_offsets[O_YEAR].offset], &clock_time->year,
108 Stoi(&buffer[format->field_offsets[O_HOUR].offset], &clock_time->hour,
110 Stoi(&buffer[format->field_offsets[O_MIN].offset], &clock_time->minute,
112 Stoi(&buffer[format->field_offsets[O_SEC].offset], &clock_time->second,
119 unsigned char *f = &buffer[format->field_offsets[O_FLAGS].offset];
/freebsd-current/tools/test/stress2/misc/
H A Dposix_fadvise3.sh94 off_t len, offset;
99 offset = 0;
102 if (posix_fadvise(fd, offset, len, advise) == -1)
111 offset = makearg();
114 if (posix_fadvise(fd, offset, len, advise) == -1)
/freebsd-current/sbin/dump/
H A Dcache.c79 cread(int fd, void *buf, size_t nbytes, off_t offset) argument
94 return(pread(fd, buf, nbytes, offset));
106 ((offset ^ (offset + nbytes - 1)) & mask) != 0) {
107 return(pread(fd, buf, nbytes, offset));
115 hi = (offset / BlockSize) % HSize;
119 if (((blk->b_Offset ^ offset) & mask) == 0)
127 blk->b_Offset = offset & mask;
135 bcopy(blk->b_Data + (offset - blk->b_Offset), buf, nbytes);
141 return(pread(fd, buf, nbytes, offset));
[all...]
/freebsd-current/sys/kern/
H A Dimgact_shell.c103 int error, offset; local
186 * `offset' as the number of bytes to be added to the `begin_argv'
189 offset = interpe - interpb + 1; /* interpreter */
191 offset += opte - optb + 1;
192 offset += strlen(fname) + 1; /* fname of script */
196 error = exec_args_adjust_args(imgp->args, length, offset);
220 offset = length + 1;
223 bcopy(optb, imgp->args->begin_argv + offset, length);
224 *(imgp->args->begin_argv + offset + length) = '\0';
225 offset
[all...]
/freebsd-current/contrib/libarchive/libarchive/test/
H A Dtest_read_format_iso_xorriso.c72 int64_t offset; local
100 archive_read_data_block(a, &p, &size, &offset));
122 archive_read_data_block(a, &p, &size, &offset));
123 assertEqualInt(0, offset);
166 archive_read_data_block(a, &p, &size, &offset));
167 assertEqualInt(0, offset);
178 archive_read_data_block(a, &p, &size, &offset));
179 assertEqualInt(0, offset);
190 archive_read_data_block(a, &p, &size, &offset));
191 assertEqualInt(0, offset);
[all...]
/freebsd-current/contrib/ntp/scripts/ntptrace/
H A Dntptrace.in37 printf "%s: stratum %d, offset %f, synch distance %f",
38 $dhost, $info{stratum}, $info{offset}, $info{syncdistance};
64 if (not (exists $info->{offset} && looks_like_number($info->{offset}))) {
65 $info->{offset} = "NaN";
67 $info->{offset} /= 1000;
/freebsd-current/contrib/elftoolchain/libdwarf/
H A Dlibdwarf_info.c147 uint64_t offset; local
154 offset = dbg->dbg_info_off;
161 offset = dbg->dbg_types_off;
167 while (offset < ds->ds_size) {
175 cu->cu_offset = offset;
177 length = dbg->read(ds->ds_data, &offset, 4);
179 length = dbg->read(ds->ds_data, &offset, 8);
190 if (length > ds->ds_size - offset) {
196 /* Compute the offset to the next compilation unit: */
197 next_offset = offset
292 Dwarf_Unsigned offset; local
[all...]
H A Dlibdwarf_nametbl.c65 uint64_t offset, dwarf_size, length, cuoff; local
79 offset = 0;
80 while (offset < ds->ds_size) {
92 length = dbg->read(ds->ds_data, &offset, 4);
95 length = dbg->read(ds->ds_data, &offset, 8);
101 nt->nt_version = dbg->read(ds->ds_data, &offset, 2);
102 nt->nt_cu_offset = dbg->read(ds->ds_data, &offset, dwarf_size);
103 nt->nt_cu_length = dbg->read(ds->ds_data, &offset, dwarf_size);
119 while (offset < ds->ds_size) {
120 cuoff = dbg->read(ds->ds_data, &offset, dwarf_siz
175 uint64_t offset; local
[all...]
/freebsd-current/contrib/netbsd-tests/fs/hfs/
H A Dt_pathconvert.c40 int offset, nbytes; local
62 for (offset = 0; offset < nbytes; offset += dirent->d_reclen) {
63 dirent = (struct dirent *)(buf + offset);
/freebsd-current/lib/libc/net/
H A Dip6opt.c402 inet6_opt_append(void *extbuf, socklen_t extlen, int offset, u_int8_t type, argument
405 int currentlen = offset, padlen = 0;
442 u_int8_t *optp = (u_int8_t *)extbuf + offset;
467 inet6_opt_finish(void *extbuf, socklen_t extlen, int offset) argument
469 int updatelen = offset > 0 ? (1 + ((offset - 1) | 7)) : 0;
473 int padlen = updatelen - offset;
478 padp = (u_int8_t *)extbuf + offset;
492 inet6_opt_set_val(void *databuf, int offset, void *val, socklen_t vallen) argument
495 memcpy((u_int8_t *)databuf + offset, va
500 inet6_opt_next(void *extbuf, socklen_t extlen, int offset, u_int8_t *typep, socklen_t *lenp, void **databufp) argument
549 inet6_opt_find(void *extbuf, socklen_t extlen, int offset, u_int8_t type, socklen_t *lenp, void **databufp) argument
591 inet6_opt_get_val(void *databuf, int offset, void *val, socklen_t vallen) argument
595 memcpy(val, (u_int8_t *)databuf + offset, vallen); local
[all...]
/freebsd-current/lib/libc/posix1e/
H A Dacl_entry.c76 acl_create_entry_np(acl_t *acl_p, acl_entry_t *entry_p, int offset) argument
93 if (offset < 0 || offset > acl_int->acl_cnt) {
99 for (i = acl_int->acl_cnt; i > offset; i--)
104 *entry_p = &acl_int->acl_entry[offset];
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcessStructReader.h32 size_t offset; member in struct:lldb_private::ProcessStructReader::FieldImpl
90 lldb::offset_t offset = iter->second.offset;
91 if (offset + size > m_data.GetByteSize())
93 return (RetType)(m_data.GetMaxU64(&offset, size));
/freebsd-current/sys/dev/sfxge/common/
H A Defx_vpd.c479 unsigned int offset; local
483 offset = 0;
486 if ((rc = efx_vpd_next_tag(data, size, &offset,
489 offset += taglen;
494 *lengthp = offset;
512 unsigned int offset; local
525 offset = 0;
528 if ((rc = efx_vpd_next_tag(data, size, &offset,
543 if ((rc = efx_vpd_next_keyword(data + offset,
549 for (i = 0; i < offset
611 unsigned int offset = 0; local
665 unsigned int offset; local
743 unsigned int offset; local
803 unsigned int offset; local
[all...]

Completed in 410 milliseconds

1234567891011>>