Searched refs:position (Results 201 - 225 of 369) sorted by relevance

1234567891011>>

/haiku-fatelf/src/bin/less/
H A Dsearch.c17 #include "position.h"
291 pos = position(slinenum);
294 epos = position(slinenum+1);
347 pos = position(slinenum);
350 epos = position(slinenum+1);
750 * But it was assumed that each char position in the line
751 * correponds to one char position in the file.
866 * Assume that each char position in the "line"
867 * buffer corresponds to one char position in the file.
939 prep_hilite(scrpos.pos, position(BOTTOM_PLUS_ON
[all...]
/haiku-fatelf/src/kits/package/hpkg/
H A DReaderImplBase.cpp621 char* position local
623 char* sectionEnd = position + fCurrentSection->stringsLength;
626 if (position >= sectionEnd) {
632 size_t stringLength = strnlen(position, (char*)sectionEnd - position);
635 if (position + 1 != sectionEnd) {
638 sectionEnd - (position + 1), fCurrentSection->name);
662 fCurrentSection->strings[index++] = position;
663 position += stringLength + 1;
/haiku-fatelf/src/preferences/touchpad/
H A DTouchpadPrefView.cpp345 BPoint position = fTouchpadPref.WindowPosition(); local
346 // center window on screen if it had a bad position
347 if (position.x < 0 && position.y < 0)
350 Window()->MoveTo(position);
/haiku-fatelf/src/servers/app/
H A DWindowList.cpp21 position(kInvalidWindowPosition)
/haiku-fatelf/src/tools/
H A Dset_haiku_revision.cpp397 void Read(off_t position, void* buffer, size_t size, argument
400 if (lseek(fFD, position, SEEK_SET) < 0)
418 void Write(off_t position, const void* buffer, size_t size, argument
421 if (lseek(fFD, position, SEEK_SET) < 0)
/haiku-fatelf/src/add-ons/media/plugins/ffmpeg/
H A DAVFormatWriter.cpp81 // we need to protect the file position and I/O by a lock.
601 off_t position = positionIO->Seek(offset, whence); local
602 TRACE_IO(" position: %lld\n", position);
603 if (position < 0)
606 return position;
/haiku-fatelf/src/kits/interface/
H A DMenu.cpp1755 BMenu::_UpdateNavigationArea(BPoint position, BRect& navAreaRectAbove, argument
1782 // [1] Selected item, cursor position ('position')
1806 navAreaRectAbove.Set(position.x + NAV_AREA_THRESHOLD,
1808 position.y);
1809 navAreaRectBelow.Set(position.x + NAV_AREA_THRESHOLD,
1810 position.y, menuBounds.right,
1814 submenuBounds.top, position.x - NAV_AREA_THRESHOLD,
1815 position.y);
1817 position
1828 _UpdateStateOpenSelect(BMenuItem* item, BPoint position, BRect& navAreaRectAbove, BRect& navAreaRectBelow, bigtime_t& selectedTime, bigtime_t& navigationAreaTime) argument
[all...]
/haiku-fatelf/src/add-ons/kernel/drivers/disk/usb/usb_disk/
H A Dusb_disk.cpp896 usb_disk_needs_partial_buffer(device_lun *lun, off_t position, size_t length, argument
899 blockPosition = (uint32)(position / lun->block_size);
900 if ((off_t)blockPosition * lun->block_size != position)
934 usb_disk_prepare_partial_buffer(device_lun *lun, off_t position, size_t length, argument
938 blockPosition = (uint32)(position / lun->block_size);
939 blockCount = (uint16)((uint32)((position + length + lun->block_size - 1)
956 off_t offset = position - (blockPosition * lun->block_size);
1199 usb_disk_read(void *cookie, off_t position, void *buffer, size_t *length) argument
1204 TRACE("read(%lld, %ld)\n", position, *length);
1217 bool needsPartial = usb_disk_needs_partial_buffer(lun, position, *lengt
1246 usb_disk_write(void *cookie, off_t position, const void *buffer, size_t *length) argument
[all...]
/haiku-fatelf/src/add-ons/kernel/drivers/disk/usb/usb_floppy/
H A Dusb_disk.cpp811 usb_disk_needs_partial_buffer(device_lun *lun, off_t position, size_t length, argument
814 blockPosition = (uint32)(position / lun->block_size);
815 if ((off_t)blockPosition * lun->block_size != position)
893 usb_disk_prepare_partial_buffer(device_lun *lun, off_t position, size_t length, argument
897 blockPosition = (uint32)(position / lun->block_size);
898 blockCount = (uint16)((uint32)((position + length + lun->block_size - 1)
915 off_t offset = position - (blockPosition * lun->block_size);
1185 usb_disk_read(void *cookie, off_t position, void *buffer, size_t *length) argument
1190 TRACE("read(%lld, %ld)\n", position, *length);
1203 bool needsPartial = usb_disk_needs_partial_buffer(lun, position, *lengt
1232 usb_disk_write(void *cookie, off_t position, const void *buffer, size_t *length) argument
[all...]
/haiku-fatelf/docs/userguide/
H A DHaiku-doc.css66 position: relative;
83 position: relative;
95 position: relative;
128 position: absolute;
/haiku-fatelf/docs/welcome/
H A DHaiku-doc.css66 position: relative;
83 position: relative;
95 position: relative;
128 position: absolute;
/haiku-fatelf/headers/posix/
H A Dstdio.h107 extern int fgetpos(FILE *stream, fpos_t *position);
108 extern int fsetpos(FILE *stream, const fpos_t *position);
/haiku-fatelf/src/add-ons/kernel/drivers/audio/ac97/ichaudio/lala/
H A Ddriver.c185 driver_read(void* cookie, off_t position, void *buf, size_t* num_bytes) argument
192 driver_write(void* cookie, off_t position, const void* buffer, size_t* num_bytes) argument
/haiku-fatelf/src/add-ons/kernel/drivers/audio/usb_audio/
H A DDriver.cpp203 usb_audio_read(void *cookie, off_t position, void *buffer, size_t *numBytes) argument
211 usb_audio_write(void *cookie, off_t position, const void *buffer, argument
/haiku-fatelf/src/add-ons/kernel/drivers/bus/pcmcia/
H A Dds.c77 ds_read(void *cookie, off_t position, void *data, size_t *numBytes) argument
84 ds_write(void *cookie, off_t position, const void *data, size_t *numBytes) argument
/haiku-fatelf/src/add-ons/kernel/drivers/bus/scsi/
H A Dscsi_raw.c57 raw_read(void *cookie, off_t position, void *data, size_t *numBytes) argument
64 raw_write(void *cookie, off_t position, const void *data, size_t *numBytes) argument
/haiku-fatelf/src/add-ons/kernel/drivers/dvb/cx23882/
H A Ddriver.c255 driver_read(void* cookie, off_t position, void *buf, size_t* num_bytes) argument
264 driver_write(void* cookie, off_t position, const void* buffer, size_t* num_bytes) argument
/haiku-fatelf/src/add-ons/kernel/drivers/misc/
H A Dpoke.c281 poke_read(void* cookie, off_t position, void* buffer, size_t* numBytes) argument
289 poke_write(void* cookie, off_t position, const void* buffer, size_t* numBytes) argument
/haiku-fatelf/src/add-ons/kernel/drivers/network/ipro1000/
H A Ddevice.c165 ipro1000_read(void* cookie, off_t position, void *buf, size_t* num_bytes) argument
218 ipro1000_write(void* cookie, off_t position, const void* buffer, size_t* num_bytes) argument
/haiku-fatelf/src/add-ons/kernel/drivers/network/sis19x/
H A DDriver.cpp212 SiS19X_read(void* cookie, off_t position, void* buffer, size_t* numBytes) argument
220 SiS19X_write(void* cookie, off_t position, argument
/haiku-fatelf/src/add-ons/kernel/drivers/network/usb_davicom/
H A DDriver.cpp252 usb_davicom_read(void *cookie, off_t position, void *buffer, size_t *numBytes) argument
260 usb_davicom_write(void *cookie, off_t position, const void *buffer, argument
/haiku-fatelf/src/add-ons/kernel/drivers/network/wwan/usb_beceemwmx/
H A DDriver.cpp266 usb_beceem_read(void *cookie, off_t position, void *buffer, size_t *numBytes) argument
274 usb_beceem_write(void *cookie, off_t position, const void *buffer, argument
/haiku-fatelf/src/add-ons/kernel/drivers/ports/pc_serial/
H A DDriver.h219 status_t pc_serial_read(void *cookie, off_t position, void *buffer, size_t *numBytes);
220 status_t pc_serial_write(void *cookie, off_t position, const void *buffer, size_t *numBytes);
/haiku-fatelf/src/add-ons/kernel/file_systems/reiserfs/
H A DIterators.h229 status_t ReadAt(off_t position, void *buffer, size_t bufferSize,
237 status_t _SeekTo(off_t position);
/haiku-fatelf/src/add-ons/media/media-add-ons/usb_webcam/
H A DCamDeframer.cpp68 CamDeframer::Seek(off_t position, uint32 seek_mode) argument
74 return f->Seek(position, seek_mode);

Completed in 221 milliseconds

1234567891011>>