Searched refs:mask (Results 1 - 25 of 447) sorted by path

1234567891011>>

/haiku/headers/cpp/
H A Dstreambuf.h196 fmtflags setf(fmtflags val, fmtflags mask) { argument
198 _flags = (_flags & ~mask) | (val & mask); return oldbits; }
199 fmtflags unsetf(fmtflags mask) { argument
201 _flags &= ~mask; return oldbits; }
314 void xsetflags(int f, int mask) argument
315 { _IO_file_flags = (_IO_file_flags & ~mask) | (f & mask); }
/haiku/headers/libs/agg/
H A Dagg_alpha_mask_u8.h137 const int8u* mask = m_rbuf->row_ptr(y) + x * Step + Offset; local
140 *covers++ = (cover_type)m_mask_function.calculate(mask);
141 mask += Step;
187 const int8u* mask = m_rbuf->row_ptr(y) + x * Step + Offset; local
191 m_mask_function.calculate(mask)) >>
194 mask += Step;
239 const int8u* mask = m_rbuf->row_ptr(y) + x * Step + Offset; local
242 *covers++ = (cover_type)m_mask_function.calculate(mask);
243 mask += m_rbuf->stride();
288 const int8u* mask local
393 const int8u* mask = m_rbuf->row_ptr(y) + x * Step + Offset; local
407 const int8u* mask = m_rbuf->row_ptr(y) + x * Step + Offset; local
423 const int8u* mask = m_rbuf->row_ptr(y) + x * Step + Offset; local
436 const int8u* mask = m_rbuf->row_ptr(y) + x * Step + Offset; local
[all...]
H A Dagg_pixfmt_amask_adaptor.h62 pixfmt_amask_adaptor(pixfmt_type& pixf, const amask_type& mask) : argument
63 m_pixf(&pixf), m_mask(&mask), m_span()
67 void attach_alpha_mask(const amask_type& mask) { m_mask = &mask; } argument
H A Dagg_rasterizer_compound_aa.h462 unsigned mask = 1 << (style_id & 7); local
465 if((m_asm[nbyte] & mask) == 0)
468 m_asm[nbyte] |= mask;
/haiku/headers/os/drivers/bus/
H A DATA.h38 union ata_task_file *file, ata_reg_mask mask);
40 union ata_task_file *file, ata_reg_mask mask);
/haiku/headers/os/interface/
H A DChannelControl.h38 uint32 mask = B_FONT_ALL);
H A DChannelSlider.h55 uint32 mask = B_FONT_ALL);
H A DStringView.h65 uint32 mask = B_FONT_ALL);
/haiku/headers/os/net/
H A DNetworkInterface.h29 void SetMask(const BNetworkAddress& mask);
H A DNetworkRoute.h30 status_t SetMask(const sockaddr& mask);
/haiku/headers/posix/net/
H A Droute.h28 struct sockaddr *mask; member in struct:route_entry
/haiku/headers/private/drivers/
H A Data_adapter.h129 ata_task_file *tf, ata_reg_mask mask);
131 ata_task_file *tf, ata_reg_mask mask);
/haiku/headers/private/graphics/radeon/
H A Dmmio.h21 // write partial 32-bit register, keeping bits "mask"
22 #define OUTREGP( regs, addr, val, mask ) \
25 tmp &= (mask); \
26 tmp |= (val) & ~(mask); \
H A Dpll_access.h41 // write "val" to PLL-register "addr" keeping bits "mask"
42 void Radeon_OUTPLLP( vuint8 *regs, radeon_type asic, uint8 addr, uint32 val, uint32 mask );
/haiku/headers/private/graphics/
H A Dvideo_overlay.h58 uint8 value; /* if DAC color component of graphic pixel & mask == value, */
59 uint8 mask; /* then show overlay pixel, else show graphic pixel */ member in struct:__anon6
/haiku/headers/private/interface/
H A DColumnListView.h344 uint32 mask = B_FONT_ALL);
359 uint32 mask = B_FONT_ALL);
H A Dutf8_functions.h60 uint8 mask = 0x20; local
62 while ((bytes[0] & mask) != 0) {
63 if (mask == 0x02) {
69 mask >>= 1;
192 uint8 mask = 0x80; local
196 while (result & mask) {
197 if (mask == 0x02) {
202 result &= ~mask;
203 mask >>= 1;
211 mask <<
[all...]
/haiku/headers/private/kernel/disk_device_manager/
H A DKDiskDeviceManager.h134 void _NotifyDeviceEvent(KDiskDevice* device, int32 event, uint32 mask);
H A Dddm_modules.h35 uint32 (*get_supported_operations)(partition_data* partition, uint32 mask);
37 partition_data* child, uint32 mask);
/haiku/headers/private/kernel/
H A Dksignal.h175 void RemoveSignals(sigset_t mask);
238 status_t _user_sigsuspend(const sigset_t *mask);
/haiku/headers/private/libroot/
H A Dsignal_private.h97 int __sigsuspend(const sigset_t* mask);
/haiku/headers/private/net/
H A DAddressUtilities.h74 bool MatchMasked(const sockaddr* address, const sockaddr* mask) const
76 return fModule->equal_masked_addresses(fAddress, address, mask);
202 bool MatchMasked(const sockaddr* address, const sockaddr* mask) const
204 return fModule->equal_masked_addresses(fAddress, address, mask);
/haiku/headers/private/shared/
H A Dbinary-utils.h62 #define MASKOFFSET(mask) (MaskOffset<mask, (mask & 1UL)>::count)
64 template<const unsigned long mask, unsigned int firstBit>
67 enum { count = MaskOffset<(mask >> 1), ((mask >> 1) & 1UL)>::count + 1 }; enumerator in enum:MaskOffset::__anon1176
71 template<const unsigned long mask>
72 struct MaskOffset<mask, 1>
/haiku/headers/private/storage/
H A DDiskSystemAddOn.h62 virtual uint32 SupportedOperations(uint32 mask);
65 uint32 mask);
/haiku/headers/private/userlandfs/legacy/
H A Dcache.h29 int mask; /* == max - 1 */ member in struct:hash_table

Completed in 102 milliseconds

1234567891011>>