Searched refs:pos (Results 1 - 25 of 520) sorted by path

1234567891011>>

/haiku/headers/build/os/kernel/
H A Dfs_attr.h25 off_t pos, void *buffer, size_t readBytes);
27 off_t pos, const void *buffer, size_t readBytes);
H A Dfs_info.h45 extern dev_t next_dev(int32 *pos);
/haiku/headers/cpp/
H A Dbuiltinbuf.h51 virtual streampos seekpos(streampos pos, int mode = ios::in|ios::out);
H A Deditbuf.h41 // Logical pos from start of buffer (does not count gap).
161 void move_gap (buf_offset pos);
162 void move_gap (buf_char *pos) { move_gap(pos - data); } argument
163 void gap_left (int pos);
164 void gap_right (int pos);
H A Dindstream.h71 virtual streampos seekpos(streampos pos, int mode = ios::in|ios::out);
H A Dstl_hashtable.h163 const unsigned long* pos = lower_bound(__first, __last, __n); local
164 return pos == __last ? *(__last - 1) : *pos;
H A Dstreambuf.h359 virtual streampos seekpos(streampos pos, int mode = ios::in|ios::out);
363 streampos pubseekpos(streampos pos, int mode = ios::in|ios::out) argument
364 { return _IO_seekpos (this, pos, mode); }
366 streampos sseekpos(streampos pos, int mode = ios::in|ios::out);
/haiku/headers/cpp/std/
H A Dbastring.cc136 copy (size_t pos, const charT *s, size_t n) argument
139 traits::copy (data () + pos, s, n);
144 move (size_t pos, const charT *s, size_t n) argument
147 traits::move (data () + pos, s, n);
153 replace (size_type pos, size_type n1, const charT* s, size_type n2) argument
156 OUTOFRANGE (pos > len);
157 if (n1 > len - pos)
158 n1 = len - pos;
165 p->copy (0, data (), pos);
166 p->copy (pos
182 set(size_t pos, const charT c, size_t n) argument
189 replace(size_type pos, size_type n1, size_type n2, charT c) argument
245 find(const charT* s, size_type pos, size_type n) const argument
277 rfind(const charT* s, size_type pos, size_type n) const argument
314 find_first_of(const charT* s, size_type pos, size_type n) const argument
326 find_last_of(const charT* s, size_type pos, size_type n) const argument
342 find_first_not_of(const charT* s, size_type pos, size_type n) const argument
366 find_last_not_of(const charT* s, size_type pos, size_type n) const argument
397 compare(const basic_string& _str, size_type pos, size_type n) const argument
416 compare(const charT* s, size_type pos, size_type n) const argument
[all...]
/haiku/headers/libs/agg/
H A Dagg_array.h193 void insert_at(unsigned pos, const T& val);
301 void pod_vector<T>::insert_at(unsigned pos, const T& val) argument
303 if(pos >= m_size)
309 memmove(m_array + pos + 1, m_array + pos, (m_size - pos) * sizeof(T));
310 m_array[pos] = val;
/haiku/headers/os/drivers/
H A Dmidi_driver.h61 status_t (*read_hook)(void* cookie, off_t pos, void* data,
63 status_t (*write_hook)(void* cookie, off_t pos, const void* data,
/haiku/headers/os/kernel/
H A Dfs_attr.h24 off_t pos, void *buffer, size_t readBytes);
26 off_t pos, const void *buffer, size_t readBytes);
H A Dfs_info.h46 extern dev_t next_dev(int32 *pos);
/haiku/headers/os/support/
H A DBufferIO.h20 virtual ssize_t ReadAt(off_t pos, void* buffer, size_t size);
21 virtual ssize_t WriteAt(off_t pos, const void* buffer,
/haiku/headers/private/app/
H A DSimpleMallocIO.h41 void ReadAt(off_t pos, void *buffer, size_t size) argument
43 memcpy(buffer, fBuffer + pos, size);
56 void WriteAt(off_t pos, const void *buffer, size_t size) argument
58 memcpy(fBuffer + pos, buffer, size);
/haiku/headers/private/audio/
H A Dsoundcard.h799 #define SEQ_PANNING(dev, voice, pos) \
800 SEQ_CONTROL(dev, voice, CTL_PAN, (pos+128) / 2)
821 #define SEQ_SONGPOS(pos) _TIMER_EVENT(TMR_SPP, pos)
/haiku/headers/private/device/
H A Djoystick_driver.h170 status_t (*read_hook)(void * cookie, off_t pos, void * data, size_t * len);
171 status_t (*write_hook)(void * cookie, off_t pos, const void * data, size_t * len);
/haiku/headers/private/fs_shell/
H A Dfssh_fs_attr.h24 uint32_t type, fssh_off_t pos, void *buffer,
27 uint32_t type, fssh_off_t pos, const void *buffer,
H A Dfssh_fs_info.h47 extern fssh_dev_t next_dev(int32_t *pos);
H A Dfssh_unistd.h62 extern fssh_ssize_t fssh_read_pos(int fd, fssh_off_t pos, void *buffer,
65 fssh_off_t pos);
67 extern fssh_ssize_t fssh_write_pos(int fd, fssh_off_t pos, const void *buffer,
70 fssh_off_t pos);
/haiku/headers/private/input/
H A Dshared_cursor_area.h16 uint32 pos; member in struct:shared_cursor
/haiku/headers/private/kernel/arch/m68k/
H A Dstage2_priv.h25 int of_seek(int handle, long long pos);
/haiku/headers/private/kernel/arch/ppc/
H A Dstage2_priv.h25 int of_seek(int handle, long long pos);
/haiku/headers/private/kernel/boot/
H A DFileMapDisk.h54 virtual ssize_t ReadAt(void *cookie, off_t pos, void *buffer,
56 virtual ssize_t WriteAt(void *cookie, off_t pos, const void *buffer,
/haiku/headers/private/kernel/boot/net/
H A DRemoteDisk.h23 virtual ssize_t ReadAt(void *cookie, off_t pos, void *buffer,
25 virtual ssize_t WriteAt(void *cookie, off_t pos, const void *buffer,
37 ssize_t _ReadFromPacket(off_t &pos, uint8 *&buffer, size_t &bufferSize);
H A DiSCSITarget.h84 virtual ssize_t ReadAt(void* cookie, off_t pos, void* buffer,
86 virtual ssize_t WriteAt(void* cookie, off_t pos, const void* buffer,

Completed in 192 milliseconds

1234567891011>>