Searched refs:pos (Results 251 - 275 of 800) sorted by relevance

<<11121314151617181920>>

/haiku-fatelf/src/add-ons/kernel/file_systems/ntfs/
H A Dattributes.h33 off_t pos, void *buffer, size_t *_length);
35 off_t pos, const void *buffer, size_t *_length);
H A Dfake_attributes.h37 off_t pos,void *buffer, size_t *_length);
39 off_t pos, const void *buffer, size_t *_length);
/haiku-fatelf/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Drunlist.h58 const s64 pos, s64 count, void *b);
60 s64 ofs, const s64 pos, s64 count, void *b);
/haiku-fatelf/src/add-ons/media/media-add-ons/usb_webcam/
H A DCamFilterInterface.h29 virtual ssize_t ReadAt(off_t pos, void *buffer, size_t size);
32 virtual ssize_t WriteAt(off_t pos, const void *buffer, size_t size);
/haiku-fatelf/src/add-ons/media/plugins/matroska/libMatroskaParser/
H A DStreamIO.cpp36 stream_read(struct InputStream *cc, ulonglong pos, void *buffer, int count) argument
38 return reinterpret_cast<StreamIO *>(cc)->source->ReadAt(pos, buffer, count);
/haiku-fatelf/src/add-ons/translators/exr/openexr/ilmimf/
H A DImfIO.h118 virtual void seekg (Int64 pos) = 0;
188 virtual void seekp (Int64 pos) = 0;
/haiku-fatelf/src/apps/mediaplayer/media_node_framework/audio/
H A DAudioResampler.cpp110 AudioResampler::Read(void* buffer, int64 pos, int64 frames) argument
112 TRACE("AudioResampler::Read(%p, %Ld, %Ld)\n", buffer, pos, frames);
120 int64 sourcePos = ConvertToSource(pos);
121 int64 sourceFrames = ConvertToSource(pos + frames) - sourcePos;
273 AudioResampler::ConvertFromSource(int64 pos) const
277 return (int64)((double)(pos - fInOffset) * outFrameRate / inFrameRate
283 AudioResampler::ConvertToSource(int64 pos) const
287 return (int64)((double)(pos + fOutOffset) * inFrameRate / outFrameRate
/haiku-fatelf/src/bin/bash/lib/readline/
H A Dmbutil.c270 int pos = 0; local
278 while (pos < point)
280 tmp = mbrlen (string + pos, length - pos, ps);
286 pos++;
293 pos++;
295 pos += tmp;
298 return (pos - point);
H A Dsearch.c113 noninc_search_from_pos (string, pos, dir)
115 int pos, dir;
119 if (pos < 0)
123 if (history_set_pos (pos) == 0)
148 int oldpos, pos; local
157 pos = noninc_search_from_pos (string, noninc_history_pos + dir, dir);
158 if (pos == -1)
168 noninc_history_pos = pos;
/haiku-fatelf/src/bin/gdb/readline/
H A Dmbutil.c265 int pos = 0; local
273 while (pos < point)
275 tmp = mbrlen (string + pos, length - pos, ps);
281 pos++;
288 pos++;
290 pos += tmp;
293 return (pos - point);
H A Dsearch.c99 noninc_search_from_pos (string, pos, dir)
101 int pos, dir;
105 if (pos < 0)
109 if (history_set_pos (pos) == 0)
134 int oldpos, pos; local
143 pos = noninc_search_from_pos (string, noninc_history_pos + dir, dir);
144 if (pos == -1)
154 noninc_history_pos = pos;
/haiku-fatelf/src/kits/storage/
H A Dstorage_support.cpp148 for (int pos = len-1; ; pos--) {
149 if (pos < 0)
156 if (fullPath[pos] != '/') {
157 leafEnd = pos;
164 if (fullPath[pos] == '/') {
165 leafStart = pos+1;
166 pathEnd = pos-1;
/haiku-fatelf/src/libs/edit/
H A Dchared.h81 char *pos; member in struct:c_redo_t
94 char *pos; member in struct:c_vcmd_t
/haiku-fatelf/src/libs/stdc++/legacy/
H A Dbuiltinbuf.cc56 streampos builtinbuf::seekpos(streampos pos, int mode) argument
58 return _IO_SEEKPOS (this, pos, mode);
/haiku-fatelf/src/system/boot/loader/file_systems/bfs/
H A DStream.h28 status_t FindBlockRun(off_t pos, block_run &run, off_t &offset);
29 status_t ReadAt(off_t pos, uint8 *buffer, size_t *length);
/haiku-fatelf/src/system/boot/loader/file_systems/fat/
H A DFile.h30 virtual ssize_t ReadAt(void *cookie, off_t pos, void *buffer, size_t bufferSize);
31 virtual ssize_t WriteAt(void *cookie, off_t pos, const void *buffer, size_t bufferSize);
/haiku-fatelf/src/system/kernel/device_manager/
H A DAbstractModuleDevice.h34 virtual status_t Read(void* cookie, off_t pos, void* buffer,
36 virtual status_t Write(void* cookie, off_t pos, const void* buffer,
H A DBaseDevice.h36 virtual status_t Read(void* cookie, off_t pos, void* buffer,
38 virtual status_t Write(void* cookie, off_t pos, const void* buffer,
H A DFileDevice.h35 virtual status_t Read(void* cookie, off_t pos, void* buffer,
37 virtual status_t Write(void* cookie, off_t pos, const void* buffer,
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/dos/r5/
H A Dfile.h13 int dosfs_read(void *_vol, void *_node, void *cookie, off_t pos,
27 int dosfs_write(void *vol, void *node, void *cookie, off_t pos,
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/server/
H A Dsysdep.c127 off_t pos = (off_t)_pos; local
130 if (lseek(fd, pos, SEEK_SET) < 0) {
148 off_t pos = (off_t)_pos; local
151 if (lseek(fd, pos, SEEK_SET) < 0) {
181 off_t pos = (off_t)_pos; local
187 if (lseek(fd, pos, SEEK_SET) < 0) {
216 off_t pos = (off_t)_pos; local
222 if (lseek(fd, pos, SEEK_SET) < 0) {
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/server/
H A DNodeHandle.cpp137 FileHandle::Read(off_t pos, void* buffer, size_t size, size_t* _bytesRead) argument
142 ssize_t bytesRead = read_pos(fFD, pos, buffer, size);
152 FileHandle::Write(off_t pos, const void* buffer, size_t size, argument
158 ssize_t bytesWritten = write_pos(fFD, pos, buffer, size);
168 FileHandle::ReadAttr(const char* name, uint32 type, off_t pos, void* buffer, argument
174 ssize_t bytesRead = fs_read_attr(fFD, name, type, pos, buffer, size);
184 FileHandle::WriteAttr(const char* name, uint32 type, off_t pos, argument
190 ssize_t bytesWritten = fs_write_attr(fFD, name, type, pos, buffer, size);
/haiku-fatelf/src/tests/kits/midi/synth_file_reader/
H A DSynthFileReader.h55 void Seek(uint32 pos) { fseek(fFile, pos, SEEK_SET); } argument
/haiku-fatelf/headers/cpp/
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);
/haiku-fatelf/src/add-ons/kernel/console/vga_text/
H A Dvga_text.c80 short int pos; local
83 pos = LINES * COLUMNS + 1;
85 pos = y * COLUMNS + x;
88 sISA->write_io_8(TEXT_DATA, (char)pos);
90 sISA->write_io_8(TEXT_DATA, (char)(pos >> 8));

Completed in 160 milliseconds

<<11121314151617181920>>