Searched refs:uint8 (Results 351 - 375 of 2120) sorted by relevance

<<11121314151617181920>>

/haiku/src/servers/app/drawing/Painter/drawing_modes/
H A DDrawingModeAlphaCC.h31 blend_pixel_alpha_cc(int x, int y, const color_type& c, uint8 cover,
34 uint8* p = buffer->row_ptr(y) + (x << 2);
47 const color_type& c, uint8 cover,
56 uint8* p8 = (uint8*)&vh;
64 p8 = (uint8*)&vl;
80 uint8* p = buffer->row_ptr(y) + (x << 2);
93 const color_type& c, const uint8* covers,
96 uint8* p = buffer->row_ptr(y) + (x << 2);
97 uint8 hAlph
[all...]
H A DDrawingModeAlphaCO.h31 blend_pixel_alpha_co(int x, int y, const color_type& c, uint8 cover,
34 uint8* p = buffer->row_ptr(y) + (x << 2);
47 const color_type& c, uint8 cover,
56 uint8* p8 = (uint8*)&vh;
64 p8 = (uint8*)&vl;
80 uint8* p = buffer->row_ptr(y) + (x << 2);
93 const color_type& c, const uint8* covers,
96 uint8* p = buffer->row_ptr(y) + (x << 2);
97 uint8 hAlph
[all...]
/haiku/src/add-ons/kernel/drivers/audio/ac97/
H A Dac97.h189 typedef uint16 (* codec_reg_read)(void * cookie, uint8 reg);
190 typedef void (* codec_reg_write)(void * cookie, uint8 reg, uint16 value);
191 typedef bool (* codec_set_rate)(ac97_dev *dev, uint8 reg, uint32 rate);
192 typedef bool (* codec_get_rate)(ac97_dev *dev, uint8 reg, uint32 *rate);
228 void ac97_reg_cached_write(ac97_dev *dev, uint8 reg, uint16 value);
229 uint16 ac97_reg_cached_read(ac97_dev *dev, uint8 reg);
230 void ac97_reg_uncached_write(ac97_dev *dev, uint8 reg, uint16 value);
231 uint16 ac97_reg_uncached_read(ac97_dev *dev, uint8 reg);
233 bool ac97_reg_update(ac97_dev *dev, uint8 reg, uint16 value);
234 bool ac97_reg_update_bits(ac97_dev *dev, uint8 re
[all...]
/haiku/src/apps/packageinstaller/
H A DPackageItem.h51 extern status_t inflate_data(uint8* in, uint32 inSize, uint8* out,
56 ItemState(uint8 _policy)
69 uint8 policy;
77 uint8 type, uint32 ctime, uint32 mtime,
84 uint8 type, uint32 ctime, uint32 mtime,
93 status_t ParseAttribute(uint8* buffer, BNode* node,
95 uint32* attrType, uint8** attrData,
96 uint64* dataSize, uint8** temp,
100 status_t SkipAttribute(uint8* buffe
[all...]
/haiku/src/add-ons/accelerants/matrox/engine/
H A Dmga_dac.c13 display_mode target,float * calc_pclk,uint8 * m_result,uint8 * n_result,uint8 * p_result);
15 display_mode target,float * calc_pclk,uint8 * m_result,uint8 * n_result,uint8 * p_result, uint8 test);
17 display_mode target,float * calc_pclk,uint8 * m_result,uint8 * n_result,uint8 * p_resul
[all...]
/haiku/src/add-ons/media/media-add-ons/usb_webcam/addons/
H A DNW80xCamDevice.cpp101 uint8 r;
122 uint8 r;
139 NW80xCamDevice::WriteReg(uint16 address, uint8 *data, size_t count)
147 NW80xCamDevice::ReadReg(uint16 address, uint8 *data, size_t count, bool cached)
160 uint8 status = 0;
178 NW80xCamDevice::WriteIIC(uint8 address, uint8 *data, size_t count)
181 uint8 buffer[0x23];
197 NW80xCamDevice::ReadIIC(uint8 address, uint8 *dat
[all...]
/haiku/src/add-ons/kernel/partitioning_systems/common/
H A DPartitionMap.h30 uint8 type;
38 is_empty_type(uint8 type)
46 is_extended_type(uint8 type)
52 void get_partition_type_string(uint8 type, char* buffer);
61 uint8 cylinder;
69 uint8 active;
71 uint8 type; // empty, filesystem or extended
93 void fill_code_area(const uint8* code, size_t size)
119 bool SetType(uint8 type);
127 uint8 Typ
[all...]
/haiku/src/add-ons/translators/psd/
H A DPSDLoader.cpp195 fStreamBuffer = new uint8[fStreamSize];
203 uint8 *imageData[PSD_MAX_CHANNELS];
205 imageData[i] = new uint8[channelBytes];
211 uint8 *ptr = imageData[channelIdx];
213 *ptr = (uint8)fStreamBuffer[fStreamPos++];
225 uint8 *ptr = imageData[channelIdx];
229 uint8 len = (uint8)fStreamBuffer[fStreamPos++];
288 uint8 *lineData = new uint8[fWidt
[all...]
/haiku/src/add-ons/media/plugins/ffmpeg/
H A Dgfx_conv_c.cpp196 YUV444TORGBA8888(uint8 y, uint8 u, uint8 v)
217 uint8 *yBase = (uint8 *)in->data[0];
218 uint8 *uBase = (uint8 *)in->data[1];
219 uint8 *vBase = (uint8 *)in->data[2];
263 uint8 *yBas
[all...]
/haiku/src/apps/icon-o-matic/import_export/flat_icon/
H A DFlatIconExporter.cpp246 uint8 styleCount = min_c(255, styles->CountItems());
254 uint8 styleType;
313 FlatIconExporter::_AnalysePath(VectorPath* path, uint8 pointCount,
350 write_path_no_curves(LittleEndianBuffer& buffer, VectorPath* path, uint8 pointCount)
365 write_path_curves(LittleEndianBuffer& buffer, VectorPath* path, uint8 pointCount)
389 write_path_with_commands(LittleEndianBuffer& buffer, VectorPath* path, uint8 pointCount)
402 uint8 pathCount = min_c(255, paths->CountItems());
408 uint8 pathFlags = 0;
414 uint8 pointCount = min_c(255, path->CountPoints());
464 if (!buffer.Write((uint8)TRANSFORMER_TYPE_AFFIN
[all...]
/haiku/src/apps/cortex/addons/audioOps/
H A DAudioAdapterOp.cpp519 split ? (IAudioOp*)new _AudioAdapterOp_split < uint8, uint8>(host) :
520 mix ? (IAudioOp*)new _AudioAdapterOp_mix < uint8, uint8>(host) :
521 (IAudioOp*)new _AudioAdapterOp_direct < uint8, uint8>(host);
525 split ? (IAudioOp*)new _AudioAdapterOp_swap_split< uint8, short>(host) :
526 mix ? (IAudioOp*)new _AudioAdapterOp_swap_mix < uint8, short>(host) :
527 (IAudioOp*)new _AudioAdapterOp_swap_direct < uint8, short>(host);
529 split ? (IAudioOp*)new _AudioAdapterOp_split < uint8, shor
[all...]
/haiku/src/build/libbe/interface/
H A DBitmap.cpp28 uint8 blue;
29 uint8 green;
30 uint8 red;
31 uint8 alpha;
35 uint8 red;
36 uint8 green;
37 uint8 blue;
38 uint8 alpha;
42 uint8 blue;
43 uint8 gree
[all...]
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A Dbtrfs.h41 uint8 unused_1[32];
42 uint8 root_level;
43 uint8 chunk_root_level;
44 uint8 extent_root_level;
45 uint8 fs_root_level;
46 uint8 device_root_level;
47 uint8 csum_root_level;
48 uint8 unused_2[10];
68 uint8 RootLevel() const { return root_level; }
69 uint8 ChunkRootLeve
[all...]
/haiku/headers/os/bluetooth/
H A DRemoteDevice.h54 RemoteDevice(const bdaddr_t address, uint8 record[3]);
67 uint8 fPageRepetitionMode;
68 uint8 fScanPeriodMode;
69 uint8 fScanMode;
/haiku/headers/os/drivers/
H A DSelect.h34 extern status_t notify_select_event(struct selectsync *sync, uint8 event);
/haiku/headers/private/interface/
H A DBitmapPrivate.h17 uint8* buffer;
/haiku/headers/private/kernel/
H A Dboot_splash.h31 void boot_splash_init(uint8 * boot_splash);
/haiku/headers/private/net/
H A Dether_driver.h33 uint8 ebyte[6];
/haiku/src/add-ons/accelerants/3dfx/
H A D3dfx_cursor.cpp42 TDFX_LoadCursorImage(int width, int height, uint8* andMask, uint8* xorMask)
67 uint8* fbCursor = (uint8*)((addr_t)si.videoMemAddr + si.cursorOffset);
/haiku/src/add-ons/kernel/file_systems/udf/
H A DRecognition.h20 uint8 &partitionDescriptorCount);
/haiku/src/servers/app/
H A DServerCursor.h29 ServerCursor(const uint8* cursorDataFromR5);
30 ServerCursor(const uint8* alreadyPaddedData,
52 const uint8* CursorData() const
63 uint8* fCursorData;
/haiku/src/system/kernel/arch/x86/
H A Darch_real_time_clock.cpp21 uint8 second;
22 uint8 minute;
23 uint8 hour;
24 uint8 day;
25 uint8 month;
26 uint8 year;
27 uint8 century;
32 bcd_to_int(uint8 bcd)
44 static uint8
47 uint8 lo
[all...]
/haiku/src/tests/system/kernel/device_manager/
H A Dconfig_driver.h20 uint8 ui8;
/haiku/src/apps/deskcalc/
H A DCalcOptions.h30 uint8 keypad_mode; // keypad mode options
/haiku/src/kits/package/hpkg/v1/
H A DPackageContentHandlerV1.cpp76 BLowLevelPackageContentHandler::AttributeNameForID(uint8 id)

Completed in 150 milliseconds

<<11121314151617181920>>