Searched refs:off (Results 1 - 25 of 124) sorted by last modified time

12345

/haiku/src/add-ons/kernel/drivers/network/ether/rtl8125/dev/pci/
H A Dif_rge.c2454 uint16_t off, phyaddr; local
2459 off = addr ? reg : 0x10 + (reg % 8);
2461 phyaddr += (off - 16) << 1;
2469 uint16_t off, phyaddr; local
2474 off = addr ? reg : 0x10 + (reg % 8);
2476 phyaddr += (off - 16) << 1;
/haiku/src/add-ons/kernel/drivers/audio/echo/generic/
H A DCEchoGals.h44 #pragma optimize("",off)
407 // Phantom power on/off for Gina3G
431 // your external box is turned off).
/haiku/src/apps/deskbar/
H A DSwitcher.cpp1910 float off = 0; local
1921 off = roundf((centerRect.Width() - rect.Width()) / 2);
1922 startRect.OffsetTo(off, off);
1923 rect.OffsetTo(off, off);
1926 off = roundf((centerRect.Width() - endRect.Width()) / 2);
1927 endRect.OffsetTo(off, off);
1937 off
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/idualwifi7260/dev/pci/
H A Dif_iwm.c1594 * But apparently when it's off, it's on ...
2198 * W/A : NIC is stuck in a reset state after Early PCIe power off
5987 /* Protect against a firmware bug where the queue/TID are off. */
6294 int err = 0, i, paylen, off, s; local
6389 for (i = 0, off = 0; i < nitems(hcmd->data); i++) {
6392 memcpy(data + off, hcmd->data[i], hcmd->len[i]);
6393 off += hcmd->len[i];
6395 KASSERT(off == paylen);
8827 * Prevent the FW from wandering off channel during association
11014 /* Take mbuf m0 off th
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/iaxwifi200/dev/pci/
H A Dif_iwx.c2223 * But apparently when it's off, it's on ...
5751 int err = 0, i, paylen, off, s; local
5848 for (i = 0, off = 0; i < nitems(hcmd->data); i++) {
5851 memcpy(data + off, hcmd->data[i], hcmd->len[i]);
5852 off += hcmd->len[i];
5854 KASSERT(off == paylen);
8172 * Prevent the FW from wandering off channel during association
9778 /* Take mbuf m0 off the RX ring. */
/haiku/src/bin/network/traceroute/
H A Dtraceroute.c490 const char *ip_hdr_key = "vhtslen id off tlprsum srcip dstip opts";
508 register u_short off = 0; local
626 off = IP_DF;
789 outip->ip_off = htons(off);
/haiku/src/bin/network/ping/
H A Dping6.c1577 size_t off; local
1604 off = 0;
1675 cp = buf + off + ICMP6ECHOLEN + ICMP6ECHOTMLEN;
1730 if (buf[off + ICMP6_NIRLEN] ==
1731 cc - off - ICMP6_NIRLEN - 1)
1788 memcpy(&t, &buf[off+ICMP6ECHOLEN+8], sizeof(t));
1819 if (buf[off + ICMP6_NIRLEN] !=
1820 cc - off - ICMP6_NIRLEN - 1 && oldfqdn) {
1824 buf[off + ICMP6_NIRLEN],
1825 (u_long)cc - off
2026 int off; local
2082 size_t off; local
[all...]
/haiku/src/tools/fs_shell/
H A Dfuse.cpp345 fuse_truncate(const char *path, off_t off) argument
350 st.fssh_st_size = off;
/haiku/headers/os/interface/
H A DPictureButton.h22 BPicture* off, BPicture* on,
/haiku/src/system/kernel/arch/arm/paging/
H A Darm_physical_page_mapper_large_memory.cpp386 phys_addr_t off = physicalAddress & (B_PAGE_SIZE -1); local
402 return (uint8*)slot.slot->address + off;
415 return (uint8*)slot.slot->address + off;
488 phys_addr_t off = physicalAddress & (B_PAGE_SIZE -1); local
493 return (void*)slot->address + off;
/haiku/src/add-ons/translators/tiff/
H A DTIFFTranslator.cpp155 tiff_seek_proc(thandle_t stream, toff_t off, int whence) argument
157 return tiff_get_pio(stream)->Seek(off, whence);
/haiku/src/add-ons/kernel/file_systems/ntfs/utils/
H A Dutils.c98 "off properly, so mounting could be done safely.\n";
914 * Optionally the ascii part can be turned off.
922 int off, i, s, e, col; local
928 for (off = s; off < e; off += 16) {
942 if (off == s)
945 ntfs_log_debug("%6.6x ", off);
950 if (((off+i) >= start) && ((off
[all...]
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A Dfuse_fs.cpp100 off_t off, struct fuse_file_info* fi)
104 return fs->ops.read(path, buf, size, off, fi);
110 size_t size, off_t off, struct fuse_file_info* fi)
114 return fs->ops.write(path, buf, size, off, fi);
157 fuse_fill_dir_t filler, off_t off, struct fuse_file_info* fi)
161 return fs->ops.readdir(path, buf, filler, off, fi);
99 fuse_fs_read(struct fuse_fs* fs, const char* path, char *buf, size_t size, off_t off, struct fuse_file_info* fi) argument
109 fuse_fs_write(struct fuse_fs* fs, const char* path, const char* buf, size_t size, off_t off, struct fuse_file_info* fi) argument
156 fuse_fs_readdir(struct fuse_fs* fs, const char* path, void* buf, fuse_fill_dir_t filler, off_t off, struct fuse_file_info* fi) argument
H A DFUSELowLevel.cpp255 size_t size, off_t off, struct fuse_file_info *fi)
261 ops->write(&request, ino, buf, size, off, fi);
524 const struct stat *stbuf, off_t off)
531 req->fRequestFiller(req->fRequestCookie, buf, bufsize, name, stbuf, off);
254 fuse_ll_write(const fuse_lowlevel_ops* ops, fuse_ino_t ino, const char *buf, size_t size, off_t off, struct fuse_file_info *fi) argument
523 fuse_add_direntry(fuse_req_t req, char *buf, size_t bufsize, const char *name, const struct stat *stbuf, off_t off) argument
H A DFUSELowLevel.h40 size_t size, off_t off, struct fuse_file_info *fi);
/haiku/headers/private/userlandfs/fuse/
H A Dfuse_common.h406 size_t off; member in struct:fuse_bufvec
419 /* .off = */ 0, \
H A Dfuse.h56 * @param off offset of the next entry or zero
60 const struct stat *stbuf, off_t off);
540 int (*write_buf) (const char *, struct fuse_bufvec *buf, off_t off,
560 size_t size, off_t off, struct fuse_file_info *);
833 off_t off, struct fuse_file_info *fi);
835 struct fuse_bufvec **bufp, size_t size, off_t off,
838 size_t size, off_t off, struct fuse_file_info *fi);
840 struct fuse_bufvec *buf, off_t off,
850 fuse_fill_dir_t filler, off_t off,
H A Dfuse_lowlevel_compat.h36 void (*read) (fuse_req_t req, fuse_ino_t ino, size_t size, off_t off,
39 size_t size, off_t off, struct fuse_file_info *fi);
48 void (*readdir) (fuse_req_t req, fuse_ino_t ino, size_t size, off_t off,
73 off_t off);
103 void (*read) (fuse_req_t req, fuse_ino_t ino, size_t size, off_t off,
106 size_t size, off_t off, struct fuse_file_info_compat *fi);
115 void (*readdir) (fuse_req_t req, fuse_ino_t ino, size_t size, off_t off,
H A Dfuse_lowlevel.h469 * @param off offset to read from
472 void (*read) (fuse_req_t req, fuse_ino_t ino, size_t size, off_t off,
495 * @param off offset to write to
499 size_t size, off_t off, struct fuse_file_info *fi);
619 * @param off offset to continue reading the directory stream
622 void (*readdir) (fuse_req_t req, fuse_ino_t ino, size_t size, off_t off,
940 * bufv->off is correctly updated (reflecting the number of
952 * @param off offset to write to
956 struct fuse_bufvec *bufv, off_t off,
1259 * @param off th
[all...]
/haiku/src/add-ons/kernel/network/dns_resolver/kernel_add_on/
H A Ddns_resolver.cpp137 off_t off = 0; local
139 strcpy(buffer + off, node);
141 buffer[off] = '\0';
142 off += nodeSize;
145 strcpy(buffer + off, service);
147 buffer[off] = '\0';
148 off += serviceSize;
151 memcpy(buffer + off, hints, sizeof(*hints));
154 = reinterpret_cast<struct addrinfo*>(buffer + off);
/haiku/src/libs/compat/openbsd_wlan/net80211/
H A Dieee80211_crypto_tkip.c113 * Compute TKIP MIC over an mbuf chain starting "off" bytes from the
119 ieee80211_tkip_mic(struct mbuf *m0, int off, const u_int8_t *key, argument
164 /* assumes the first "off" bytes are contiguous */
165 pos = mtod(m, caddr_t) + off;
166 len = m->m_len - off;
/haiku/src/libs/compat/freebsd_network/compat/sys/
H A Dmbuf.h292 void m_copyback(struct mbuf *m0, int off, int len, c_caddr_t cp);
/haiku/src/add-ons/kernel/drivers/network/wlan/realtekwifi/dev/rtwn/rtl8812a/
H A Dr12a_fw.c120 int off)
125 if (off && vap->iv_state == IEEE80211_S_RUN &&
119 r12a_set_pwrmode(struct rtwn_softc *sc, struct ieee80211vap *vap, int off) argument
/haiku/src/add-ons/kernel/drivers/network/wlan/realtekwifi/dev/rtwn/rtl8192c/
H A Dr92c_fw.c309 int off)
316 if (off && vap->iv_state == IEEE80211_S_RUN &&
452 const uint16_t off = R92C_C2H_EVT_MSG + sizeof(struct r92c_c2h_evt); local
474 buf[i / 2] = rtwn_read_2(sc, off + i);
308 r92c_set_pwrmode(struct rtwn_softc *sc, struct ieee80211vap *vap, int off) argument
H A Dr92c_init.c239 int i, chain, idx, off; local
244 off = (chain % 2) * 16;
246 type = (reg >> off) & 0x10;
269 0x10 << off, type << off);

Completed in 297 milliseconds

12345