Searched refs:image (Results 101 - 125 of 399) sorted by path

1234567891011>>

/haiku/src/add-ons/translators/raw/
H A DRAW.h96 // image manipulation and conversion
125 void _LoadRAWUnpacked(const image_data_info& image);
130 void _LoadRAWLosslessJPEG(const image_data_info& image);
134 void _WriteJPEG(image_data_info& image, uint8* outputBuffer);
135 void _WriteRGB32(image_data_info& image, uint8* outputBuffer);
155 // output image data
/haiku/src/apps/cortex/addons/AudioAdapter/
H A DAudioAdapterAddOn.h54 explicit AudioAdapterAddOn(image_id image);
/haiku/src/apps/cortex/addons/Flanger/
H A DFlangerAddOn.h51 explicit FlangerAddOn(image_id image);
/haiku/src/apps/cortex/addons/LoggingConsumer/
H A DLoggingConsumerAddOn.h53 explicit LoggingConsumerAddOn(image_id image);
/haiku/src/apps/cortex/addons/NullFilter/
H A DNullFilterAddOn.h53 explicit NullFilterAddOn(image_id image);
/haiku/src/apps/cortex/addons/common/
H A DControlAppLauncher.h46 #include <kernel/image.h>
/haiku/src/apps/debugger/user_interface/gui/team_settings_window/
H A DExceptionStopConfigView.cpp123 Image* image = it.Next(); local
125 ImageDebugInfo* info = image->GetImageDebugInfo();
164 Image* image = it.Next(); local
166 ImageDebugInfo* info = image->GetImageDebugInfo();
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DImageListView.h28 void SetImage(Image* image);
61 virtual void ImageSelectionChanged(Image* image) = 0;
H A DTeamWindow.h101 virtual void ImageSelectionChanged(Image* image);
181 void _SetActiveImage(Image* image);
/haiku/src/apps/networkstatus/
H A DNetworkStatus.cpp52 our_image(image_info& image) argument
55 while (get_next_image_info(B_CURRENT_TEAM, &cookie, &image) == B_OK) {
56 if ((char *)our_image >= (char *)image.text
57 && (char *)our_image <= (char *)image.text + image.text_size)
H A DNetworkStatus.h12 #include <image.h>
18 status_t our_image(image_info& image);
/haiku/src/apps/packageinstaller/
H A DPackageImageViewer.cpp32 // Initialize and translate the image
58 // the image we will be viewing
61 BRect image = fImage->Bounds(); local
63 if (image.Width() > (frame.Width() - 100.0f))
64 image.right = frame.Width() - 100.0f;
65 if (image.Height() > (frame.Height() - 100.0f))
66 image.bottom = frame.Height() - 100.f;
68 ResizeTo(image.Width(), image.Height());
H A DPackageImageViewer.h20 ImageView(BPositionIO* image);
34 PackageImageViewer(BPositionIO* image);
/haiku/src/apps/resedit/
H A DResourceRoster.cpp14 #include <image.h>
/haiku/src/apps/showimage/
H A DFilter.cpp64 // create destination image in first thread
83 Filter::Filter(BBitmap* image, BMessenger listener, uint32 what) argument
91 fSrcImage(image),
126 BBitmap* image = fDestImage; local
128 return image;
272 Scaler::Scaler(BBitmap* image, BRect rect, BMessenger listener, uint32 what, argument
275 Filter(image, listener, what),
965 ImageProcessor::ImageProcessor(enum operation op, BBitmap* image, argument
968 Filter(image, listener, what),
/haiku/src/bin/consoled/
H A Dconsoled.cpp20 #include <image.h>
/haiku/src/bin/debug/ltrace/
H A Dltrace_stub.cpp144 symbol_patcher(void* cookie, image_t* rootImage, image_t* image, argument
148 cookie, rootImage, image, name, *foundInImage, *symbol, *type);
190 ltrace_stub_image_loaded(image_t* image) argument
193 image, image->path, image->id);
195 if (sRuntimeLoaderAddOnInterface->register_undefined_symbol_patcher(image,
203 ltrace_stub_image_relocated(image_t* image) argument
206 image, image
211 ltrace_stub_image_initialized(image_t* image) argument
219 ltrace_stub_image_uninitializing(image_t* image) argument
227 ltrace_stub_image_unloading(image_t* image) argument
[all...]
/haiku/src/bin/debug/profile/
H A DBasicProfileResult.h15 BasicImageProfileResult(SharedImage* image,
43 virtual status_t GetImageProfileResult(SharedImage* image,
H A DCallgrindProfileResult.h19 CallgrindImageProfileResult* image; member in struct:CallgrindCalledFunction
23 CallgrindCalledFunction(CallgrindImageProfileResult* image, int32 function) argument
26 image(image),
45 CallgrindImageProfileResult(SharedImage* image,
77 virtual status_t GetImageProfileResult(SharedImage* image,
83 CallgrindImageProfileResult* image,
H A DImage.cpp9 Image::Image(SharedImage* image, const image_info& info, team_id owner, argument
12 fImage(image),
15 fLoadDelta((addr_t)info.text - (addr_t)image->Info().text),
H A DImage.h13 Image(SharedImage* image,
H A DProfileResult.cpp29 ImageProfileResult::ImageProfileResult(SharedImage* image, image_id id) argument
31 fImage(image),
H A DProfileResult.h22 ImageProfileResult(SharedImage* image,
59 virtual bool VisitImage(ImageProfileResult* image) = 0;
82 virtual status_t GetImageProfileResult(SharedImage* image,
134 virtual bool VisitImage(ImageProfileResult* image) argument
136 if (image->TotalHits() > 0) {
138 = static_cast<ImageProfileResultType*>(image);
H A DSharedImage.h8 #include <image.h>
22 Symbol(SharedImage* image, addr_t base, size_t size, const char* name) argument
24 image(image),
33 SharedImage* image; member in class:Symbol
H A DSummaryProfileResult.cpp101 SummaryProfileResult::GetImageProfileResult(SharedImage* image, image_id id, argument
104 // Check whether we do already know the image.
105 SummaryImage* summaryImage = fImages.Lookup(image);
109 status_t error = fResult->GetImageProfileResult(image, fNextImageID++,
141 SummaryImage* image = it.Next();) {
142 if (visitor.VisitImage(image->Result()))
143 return image->Result();

Completed in 245 milliseconds

1234567891011>>