Searched refs:stamp (Results 1 - 14 of 14) sorted by relevance

/haiku/src/tests/kits/app/bmessage/
H A DMessageSpeedTest.cpp48 bigtime_t stamp = real_time_clock_usecs(); \
50 length += (real_time_clock_usecs() - stamp); \
89 bigtime_t stamp = real_time_clock_usecs(); \
91 bigtime_t length = real_time_clock_usecs() - stamp; \
120 bigtime_t stamp = real_time_clock_usecs(); \
122 length += (real_time_clock_usecs() - stamp); \
156 bigtime_t stamp = real_time_clock_usecs(); \
158 bigtime_t length = real_time_clock_usecs() - stamp; \
199 bigtime_t stamp = real_time_clock_usecs(); \
201 bigtime_t length = real_time_clock_usecs() - stamp; \
[all...]
/haiku/src/add-ons/kernel/file_systems/xfs/
H A DInode.cpp52 Inode::GetModificationTime(struct timespec& stamp) const
54 stamp.tv_sec = fNode->di_mtime.t_sec;
55 stamp.tv_nsec = fNode->di_mtime.t_nsec;
60 Inode::GetAccessTime(struct timespec& stamp) const
62 stamp.tv_sec = fNode->di_atime.t_sec;
63 stamp.tv_nsec = fNode->di_atime.t_nsec;
68 Inode::GetChangeTime(struct timespec& stamp) const
70 stamp.tv_sec = fNode->di_ctime.t_sec;
71 stamp.tv_nsec = fNode->di_ctime.t_nsec;
76 Inode::GetCreationTime(struct timespec& stamp) cons
[all...]
/haiku/src/add-ons/media/media-add-ons/usb_webcam/addons/sonix/
H A DSonixCamDevice.h94 virtual status_t GetFrameBitmap(BBitmap **bm, bigtime_t *stamp=NULL);
95 virtual status_t FillFrameBuffer(BBuffer *buffer, bigtime_t *stamp=NULL);
H A DSonixCamDevice.cpp683 SonixCamDevice::GetFrameBitmap(BBitmap **bm, bigtime_t *stamp /* = NULL */)
693 err = fDeframer->GetFrame(&f, stamp);
713 SonixCamDevice::FillFrameBuffer(BBuffer *buffer, bigtime_t *stamp) argument
725 err = fDeframer->GetFrame(&f, stamp);
/haiku/src/kits/game/
H A DGameProducer.cpp546 bigtime_t stamp; local
548 // In B_RECORDING mode, we stamp with the capture time. We're not
551 stamp = event_time;
554 // modes, we stamp the buffer with the time at which the buffer should
560 stamp = fStartTime + bigtime_t(double(fFramesSent)
563 hdr->start_time = stamp;
/haiku/src/add-ons/media/media-add-ons/usb_webcam/
H A DCamDeframer.h49 virtual status_t GetFrame(CamFrame **frame, bigtime_t *stamp); // caller deletes
H A DCamDeframer.cpp124 CamDeframer::GetFrame(CamFrame **frame, bigtime_t *stamp) argument
132 *stamp = f->Stamp();
H A DCamDevice.h84 virtual status_t GetFrameBitmap(BBitmap **bm, bigtime_t *stamp=NULL);
85 virtual status_t FillFrameBuffer(BBuffer *buffer, bigtime_t *stamp=NULL);
H A DProducer.cpp872 / (double)(fStats[0].stamp - fStats[1].stamp);
874 / (double)(fStats[0].stamp - fStats[1].stamp);
989 bigtime_t stamp; local
991 err = fCamDevice->FillFrameBuffer(buffer, &stamp);
999 err = fCamDevice->GetFrameBitmap(&bm, &stamp);
1007 fStats[0].stamp = system_time();
1009 //PRINTF(1, ("FrameGenerator: stamp %lld vs %lld\n", stamp,
[all...]
H A DProducer.h158 bigtime_t stamp; member in struct:VideoProducer::__anon2592
H A DCamDevice.cpp305 CamDevice::GetFrameBitmap(BBitmap **bm, bigtime_t *stamp) argument
312 CamDevice::FillFrameBuffer(BBuffer *buffer, bigtime_t *stamp) argument
/haiku/src/add-ons/media/media-add-ons/usb_webcam/addons/uvc/
H A DUVCCamDevice.h36 bigtime_t *stamp = NULL);
H A DUVCCamDevice.cpp1236 UVCCamDevice::FillFrameBuffer(BBuffer* buffer, bigtime_t* stamp) argument
1246 err = fDeframer->GetFrame(&f, stamp);
/haiku/src/add-ons/media/media-add-ons/tone_producer_demo/
H A DToneProducer.cpp880 bigtime_t stamp; local
883 // In B_RECORDING mode, we stamp with the capture time. We're not
886 stamp = event_time;
891 // stamp the buffer with the time at which the buffer should be rendered to the
896 stamp = mStartTime + bigtime_t(double(mFramesSent) / double(mOutput.format.u.raw_audio.frame_rate) * 1000000.0);
898 hdr->start_time = stamp;

Completed in 58 milliseconds