Searched refs:offset (Results 1 - 25 of 3210) sorted by relevance

1234567891011>>

/freebsd-current/stand/kboot/kboot/arch/powerpc64/
H A Dfdt_arch.c36 int offset, len; local
44 offset = fdt_path_offset(fdtp, "/memory@0");
45 if (offset > 0)
46 fdt_delprop(fdtp, offset, "available");
52 offset = fdt_path_offset(fdtp, "/ibm,opal");
53 if (offset > 0) {
55 base = fdt_getprop(fdtp, offset, "opal-base-address",
57 size = fdt_getprop(fdtp, offset, "opal-runtime-size",
63 offset = fdt_path_offset(fdtp, "/rtas");
64 if (offset >
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_interceptors_memintrinsics.h30 #define ACCESS_MEMORY_RANGE(offset, size) \
32 __memprof_record_access_range(offset, size); \
35 #define MEMPROF_READ_RANGE(offset, size) ACCESS_MEMORY_RANGE(offset, size)
36 #define MEMPROF_WRITE_RANGE(offset, size) ACCESS_MEMORY_RANGE(offset, size)
/freebsd-current/contrib/elftoolchain/libelf/
H A Delf_rand.c35 elf_rand(Elf *ar, off_t offset) argument
41 (offset & 1) || offset < SARMAG ||
42 offset >= ar->e_rawsize) {
47 offset_of_member = offset + (off_t) sizeof(struct ar_hdr);
55 arh = (struct ar_hdr *) (ar->e_rawfile + offset);
63 ar->e_u.e_ar.e_next = offset;
65 return (offset);
/freebsd-current/sys/arm64/rockchip/
H A Drk_otp.h28 int rk_otp_read(device_t dev, uint8_t *buffer, int offset, int size);
/freebsd-current/sys/contrib/libfdt/
H A Dfdt.c77 const void *fdt_offset_ptr(const void *fdt, int offset, unsigned int len) argument
79 unsigned absoffset = offset + fdt_off_dt_struct(fdt);
81 if ((absoffset < offset)
87 if (((offset + len) < offset)
88 || ((offset + len) > fdt_size_dt_struct(fdt)))
91 return fdt_offset_ptr_(fdt, offset);
98 int offset = startoffset; local
102 tagp = fdt_offset_ptr(fdt, offset, FDT_TAGSIZE);
106 offset
147 fdt_check_node_offset_(const void *fdt, int offset) argument
156 fdt_check_prop_offset_(const void *fdt, int offset) argument
165 fdt_next_node(const void *fdt, int offset, int *depth) argument
205 fdt_first_subnode(const void *fdt, int offset) argument
216 fdt_next_subnode(const void *fdt, int offset) argument
[all...]
/freebsd-current/sys/dev/ath/ath_hal/ar5312/
H A Dar5312_eeprom.c31 * Read 16 bits of data from offset into *data
36 int i,offset; local
41 for (i=0,offset=2*off; i<2; i++,offset++) {
42 data[i] = eepromAddr[offset];
/freebsd-current/contrib/ncurses/ncurses/base/
H A DMKunctrl.awk47 offset=0
63 printf "%4d%s", offset, gap;
66 offset = offset + 3;
69 offset = offset + 3;
72 offset = offset + 3;
75 offset = offset
[all...]
H A DMKkeyname.awk42 print "struct kn { short offset; int code; };"
45 printf "\t{ %d, %s },\n", offset, $1
46 offset += length($1) + 1
82 print " for (i = 0; _nc_key_names[i].offset != -1; i++) {"
84 print " result = (NCURSES_CONST char *)key_names + _nc_key_names[i].offset;"
/freebsd-current/stand/kshim/
H A Dbsd_busspace.c41 bus_size_t offset, bus_size_t size, bus_space_handle_t *nbshp)
44 *nbshp = bsh + offset;
50 bus_size_t offset, uint8_t *datap, bus_size_t count)
53 *datap++ = bus_space_read_1(t, h, offset);
59 bus_size_t offset, uint16_t *datap, bus_size_t count)
62 *datap++ = bus_space_read_2(t, h, offset);
68 bus_size_t offset, uint32_t *datap, bus_size_t count)
70 h += offset;
79 bus_size_t offset, uint8_t *datap, bus_size_t count)
84 bus_space_write_1(t, h, offset, tem
40 bus_space_subregion(bus_space_tag_t t, bus_space_handle_t bsh, bus_size_t offset, bus_size_t size, bus_space_handle_t *nbshp) argument
49 bus_space_read_multi_1(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint8_t *datap, bus_size_t count) argument
58 bus_space_read_multi_2(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint16_t *datap, bus_size_t count) argument
67 bus_space_read_multi_4(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint32_t *datap, bus_size_t count) argument
78 bus_space_write_multi_1(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint8_t *datap, bus_size_t count) argument
89 bus_space_write_multi_2(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint16_t *datap, bus_size_t count) argument
100 bus_space_write_multi_4(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint32_t *datap, bus_size_t count) argument
111 bus_space_write_1(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint8_t data) argument
118 bus_space_write_2(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint16_t data) argument
125 bus_space_write_4(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint32_t data) argument
132 bus_space_read_1(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset) argument
138 bus_space_read_2(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset) argument
144 bus_space_read_4(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset) argument
150 bus_space_read_region_1(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint8_t *datap, bus_size_t count) argument
162 bus_space_write_region_1(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint8_t *datap, bus_size_t count) argument
174 bus_space_read_region_4(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint32_t *datap, bus_size_t count) argument
196 bus_space_write_region_4(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint32_t *datap, bus_size_t count) argument
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugMacro.cpp22 lldb::offset_t *offset) {
26 header.m_version = debug_macro_data.GetU16(offset);
28 uint8_t flags = debug_macro_data.GetU8(offset);
33 header.m_debug_line_offset = debug_macro_data.GetU64(offset);
35 header.m_debug_line_offset = debug_macro_data.GetU32(offset);
40 SkipOperandTable(debug_macro_data, offset);
46 const DWARFDataExtractor &debug_macro_data, lldb::offset_t *offset) {
47 uint8_t entry_count = debug_macro_data.GetU8(offset);
50 debug_macro_data.GetU8(offset);
52 uint64_t operand_count = debug_macro_data.GetULEB128(offset);
21 ParseHeader(const DWARFDataExtractor &debug_macro_data, lldb::offset_t *offset) argument
45 SkipOperandTable( const DWARFDataExtractor &debug_macro_data, lldb::offset_t *offset) argument
61 ReadMacroEntries( const DWARFDataExtractor &debug_macro_data, const DWARFDataExtractor &debug_str_data, const bool offset_is_64_bit, lldb::offset_t *offset, SymbolFileDWARF *sym_file_dwarf, DebugMacrosSP &debug_macros_sp) argument
[all...]
/freebsd-current/lib/libthr/arch/aarch64/include/
H A Dpthread_tls.h35 _get_static_tls_base(struct pthread *thr, size_t offset) argument
40 tlsbase += offset;
/freebsd-current/lib/libc/amd64/
H A Dstatic_tls.h35 _libc_get_static_tls_base(size_t offset) argument
40 tlsbase -= offset;
/freebsd-current/lib/libc/powerpc/
H A Dstatic_tls.h35 _libc_get_static_tls_base(size_t offset) argument
40 tlsbase += offset - 0x7008;
/freebsd-current/lib/libthr/arch/amd64/include/
H A Dpthread_tls.h35 _get_static_tls_base(struct pthread *thr, size_t offset) argument
40 tlsbase -= offset;
/freebsd-current/lib/libthr/arch/arm/include/
H A Dpthread_tls.h35 _get_static_tls_base(struct pthread *thr, size_t offset) argument
40 tlsbase += offset;
/freebsd-current/lib/libc/arm/
H A Dstatic_tls.h35 _libc_get_static_tls_base(size_t offset) argument
41 tlsbase += offset;
/freebsd-current/lib/libc/powerpc64/
H A Dstatic_tls.h35 _libc_get_static_tls_base(size_t offset) argument
40 tlsbase += offset - 0x7010;
/freebsd-current/lib/libc/aarch64/
H A Dstatic_tls.h35 _libc_get_static_tls_base(size_t offset) argument
40 tlsbase += offset;
/freebsd-current/lib/libc/i386/
H A Dstatic_tls.h35 _libc_get_static_tls_base(size_t offset) argument
40 tlsbase -= offset;
/freebsd-current/lib/libthr/arch/powerpc/include/
H A Dpthread_tls.h35 _get_static_tls_base(struct pthread *thr, size_t offset) argument
40 tlsbase += offset;
/freebsd-current/lib/libthr/arch/riscv/include/
H A Dpthread_tls.h35 _get_static_tls_base(struct pthread *thr, size_t offset) argument
40 tlsbase += offset;
/freebsd-current/lib/libthr/arch/i386/include/
H A Dpthread_tls.h35 _get_static_tls_base(struct pthread *thr, size_t offset) argument
40 tlsbase -= offset;
/freebsd-current/lib/libc/riscv/
H A Dstatic_tls.h35 _libc_get_static_tls_base(size_t offset) argument
40 tlsbase += offset;
/freebsd-current/sys/contrib/device-tree/include/dt-bindings/gpio/
H A Dtegra241-gpio.h32 #define TEGRA241_MAIN_GPIO(port, offset) \
33 ((TEGRA241_MAIN_GPIO_PORT_##port * 8) + (offset))
39 #define TEGRA241_AON_GPIO(port, offset) \
40 ((TEGRA241_AON_GPIO_PORT_##port * 8) + (offset))
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_entry_sparse.c53 la_int64_t offset, la_int64_t length)
57 if (offset < 0 || length < 0)
60 if (offset > INT64_MAX - length ||
61 offset + length > archive_entry_size(entry))
65 if (sp->offset + sp->length > offset)
68 if (sp->offset + sp->length == offset) {
69 if (sp->offset + sp->length + length < 0)
83 sp->offset
52 archive_entry_sparse_add_entry(struct archive_entry *entry, la_int64_t offset, la_int64_t length) argument
136 archive_entry_sparse_next(struct archive_entry * entry, la_int64_t *offset, la_int64_t *length) argument
[all...]

Completed in 180 milliseconds

1234567891011>>