Searched refs:mask (Results 226 - 250 of 446) sorted by relevance

1234567891011>>

/haiku/src/servers/app/
H A DCanvas.h62 void SetAlphaMask(AlphaMask* mask);
H A DDesktopSettingsPrivate.h32 status_t Save(uint32 mask = kAllSettings);
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/
H A Dif_ath_misc.h70 extern int ath_hal_gethangstate(struct ath_hal *ah, uint32_t mask,
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A DFUSELowLevel.h53 int fuse_ll_access(const fuse_lowlevel_ops* ops, fuse_ino_t ino, int mask);
/haiku/src/add-ons/kernel/drivers/network/ether/etherpci/
H A Detherpci.c44 # define ETHER_DEBUG(mask, enabled, format, args...) \
45 do { if (mask & enabled) \
48 # define ETHER_DEBUG(mask, enabled, format, args...) ;
809 /* initialize interrupt mask register */
1473 int32 mask; local
1487 mask = 1 << devID;
1488 if (atomic_or(&gOpenMask, mask) &mask)
1545 atomic_and(&gOpenMask, ~mask);
1623 int32 mask; local
[all...]
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DVolume.h69 virtual status_t WriteFSStat(struct fs_info* info, int32 mask);
81 uint32 mask);
H A Dnetfs.cpp26 //static int netfs_write_fs_stat(void *ns, struct fs_info *info, long mask);
38 long mask);
291 netfs_write_fs_stat(void *ns, struct fs_info *info, long mask)
297 PRINT("netfs_write_fs_stat(%p, %p, %ld)\n", ns, info, mask);
301 error = volume->WriteFSStat(info, mask);
398 netfs_write_stat(void *ns, void *_node, struct stat *st, long mask) argument
401 PRINT("netfs_write_stat(%p, %p, %p, %ld)\n", ns, node, st, mask);
402 status_t error = node->GetVolume()->WriteStat(node, st, mask);
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/beos/
H A DBeOSKernelVolume.h31 uint32 mask);
72 uint32 mask);
H A DBeOSKernelVolume.cpp124 BeOSKernelVolume::WriteFSInfo(const struct fs_info* info, uint32 mask) argument
130 return fFSOps->wfsstat(fVolumeCookie, (beos_fs_info*)info, (long)mask);
352 BeOSKernelVolume::WriteStat(void* node, const struct stat *st, uint32 mask) argument
360 (long)mask);
/haiku/src/apps/switcher/
H A DWindowsView.cpp119 int32 _NthSetBit(int32 index, uint32 mask) argument
122 if ((mask & (1UL << i)) != 0) {
/haiku/headers/private/kernel/
H A Dksignal.h175 void RemoveSignals(sigset_t mask);
238 status_t _user_sigsuspend(const sigset_t *mask);
/haiku/src/libs/compat/freebsd_network/compat/sys/
H A Dktr.h131 void ktr_tracepoint(u_int mask, const char *file, int line,
136 #define ktr_tracepoint(mask, file, line, format, arg1, arg2, arg3, arg4, arg5, arg6) \
/haiku/src/system/boot/platform/efi/arch/arm64/
H A Darch_mmu.h194 uint64 mask; member in struct:ARMv8TranslationRegime::TranslationLevel
207 return (virt_addr >> fRegime[level].shift) & fRegime[level].mask;
/haiku/src/add-ons/disk_systems/bfs/
H A DBFSAddOn.cpp226 BFSPartitionHandle::SupportedOperations(uint32 mask) argument
228 return kDiskSystemFlags & mask;
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5211/
H A Dar5211_reset.c750 * Writes the given reset bit mask into the reset register
755 uint32_t mask = resetMask ? resetMask : ~0; local
765 mask &= AR_RC_MAC | AR_RC_BB;
766 rt = ath_hal_wait(ah, AR_RC, mask, resetMask);
772 mask = INIT_CONFIG_STATUS | AR_CFG_SWTD | AR_CFG_SWRD;
773 OS_REG_WRITE(ah, AR_CFG, mask);
1515 uint16_t mask = 0x3f; local
1675 ((paPreDEnable & 1)<< 30) | ((pRatesPower[3] & mask) << 24) |
1676 ((paPreDEnable & 1)<< 22) | ((pRatesPower[2] & mask) << 16) |
1677 ((paPreDEnable & 1)<< 14) | ((pRatesPower[1] & mask) <<
[all...]
/haiku/src/add-ons/kernel/file_systems/ext2/
H A Dkernel_interface.cpp168 ext2_write_fs_info(fs_volume* _volume, const struct fs_info* info, uint32 mask) argument
179 if (mask & FS_WRITE_FSINFO_NAME) {
616 uint32 mask)
637 if ((mask & B_STAT_SIZE) != 0 && inode->Size() != stat->st_size) {
654 if ((mask & B_STAT_SIZE_INSECURE) == 0) {
663 if ((mask & B_STAT_MODE) != 0) {
671 if ((mask & B_STAT_UID) != 0) {
679 if ((mask & B_STAT_GID) != 0) {
687 if ((mask & B_STAT_MODIFICATION_TIME) != 0 || updateTime
688 || (mask
615 ext2_write_stat(fs_volume* _volume, fs_vnode* _node, const struct stat* stat, uint32 mask) argument
[all...]
H A Dext2.h601 void UpdateMode(uint16 newMode, uint16 mask) argument
603 SetMode((Mode() & ~mask) | (newMode & mask));
606 void ClearFlag(uint32 mask) argument
608 flags &= ~B_HOST_TO_LENDIAN_INT32(mask);
611 void SetFlag(uint32 mask) argument
613 flags |= B_HOST_TO_LENDIAN_INT32(mask);
/haiku/src/add-ons/translators/ico/
H A DICO.cpp136 int32 mask = 1 << (7 - (x & 7)); local
138 line[x / 8] |= mask;
140 line[x / 8] &= ~mask;
148 int32 mask = ~0L & (0xf0 >> shift); local
150 line[x / 2] &= mask;
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5312/
H A Dar5312_reset.c271 /* Set the mute mask to the correct default */
357 /* Set Venice BSSID mask according to current state */
733 * Write the given reset bit mask into the reset register
738 uint32_t mask = resetMask ? resetMask : ~0; local
741 if ((rt = ar5312MacReset(ah, mask)) == AH_FALSE) {
750 mask = INIT_CONFIG_STATUS | AR_CFG_SWRD;
752 mask = INIT_CONFIG_STATUS |
755 OS_REG_WRITE(ah, AR_CFG, mask);
/haiku/src/libs/compat/freebsd_iflib/
H A Dsubr_gtaskqueue.c469 void* mask, const char *name, va_list ap)
510 if (mask) {
511 error = cpuset_setthread(td->td_tid, mask);
887 cpuset_t mask; local
890 CPU_ZERO(&mask);
891 CPU_SET(gtask->bt_cpuid, &mask);
892 error = cpuset_setthread(curthread->td_tid, &mask);
468 _gtaskqueue_start_threads(struct gtaskqueue **tqp, int count, int pri, void* mask, const char *name, va_list ap) argument
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DBlockAllocator.cpp288 uint32 mask = 0;
290 mask |= 1UL << i;
293 Block(block) | HOST_ENDIAN_TO_BFS_INT32(mask)));
297 if (HOST_ENDIAN_TO_BFS_INT32(mask) & ((uint32*)fBlock)[block]) {
304 Block(block++) |= HOST_ENDIAN_TO_BFS_INT32(mask);
324 uint32 mask = 0;
326 mask |= 1UL << (i % 32);
329 Block(block) & HOST_ENDIAN_TO_BFS_INT32(~mask)));
331 Block(block++) &= HOST_ENDIAN_TO_BFS_INT32(~mask);
/haiku/src/add-ons/disk_systems/intel/
H A DPartitionMapAddOn.cpp210 PartitionMapHandle::SupportedOperations(uint32 mask) argument
220 if ((mask & B_DISK_SYSTEM_SUPPORTS_CREATING_CHILD) != 0) {
235 uint32 mask)
234 SupportedChildOperations(const BMutablePartition* child, uint32 mask) argument
H A DExtendedPartitionAddOn.cpp224 ExtendedPartitionHandle::SupportedOperations(uint32 mask) argument
229 if ((mask & B_DISK_SYSTEM_SUPPORTS_CREATING_CHILD) != 0) {
243 const BMutablePartition* child, uint32 mask)
242 SupportedChildOperations( const BMutablePartition* child, uint32 mask) argument
/haiku/headers/private/kernel/disk_device_manager/
H A DKDiskDeviceManager.h134 void _NotifyDeviceEvent(KDiskDevice* device, int32 event, uint32 mask);
/haiku/src/tools/fs_shell/
H A Dsyscalls.h26 const struct fssh_fs_info *info, int mask);

Completed in 146 milliseconds

1234567891011>>