Searched refs:uint32 (Results 376 - 400 of 4907) sorted by relevance

<<11121314151617181920>>

/haiku/headers/private/kernel/
H A Dacpi.h23 uint32 rsdt_address; /* physical memory address of RSDT */
31 uint32 rsdt_address; /* physical memory address of RSDT */
32 uint32 xsdt_length; /* length in bytes including header */
42 uint32 length; /* length in bytes of the entire table */
47 uint32 oem_revision; /* oem supplied revision number */
49 uint32 creator_revision; /* compiler revision */
54 uint32 local_apic_address; /* physical address for local CPUs APICs */
55 uint32 flags;
87 uint32 flags; /* 1 = enabled */
95 uint32 io_apic_addres
[all...]
/haiku/src/add-ons/kernel/drivers/timer/
H A Darch_acpi.h21 uint32 rsdt_address; /* physical memory address of RSDT */
29 uint32 rsdt_address; /* physical memory address of RSDT */
30 uint32 xsdt_length; /* length in bytes including header */
40 uint32 length; /* length in bytes of the entire table */
45 uint32 oem_revision; /* oem supplied revision number */
47 uint32 creator_revision; /* compiler revision */
52 uint32 local_apic_address; /* physical address for local CPUs APICs */
53 uint32 flags;
80 uint32 flags; /* 1 = enabled */
88 uint32 io_apic_addres
[all...]
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DBitmapBlock.cpp25 BitmapBlock::BitmapBlock(Volume* volume, uint32 numBits)
47 fReadOnlyData = (uint32*)CachedBlock::SetTo(block);
57 fData = (uint32*)CachedBlock::SetToWritable(transaction, block, empty);
64 BitmapBlock::_Check(uint32 start, uint32 length, bool marked)
66 const uint32* data = fData == NULL ? fReadOnlyData : fData;
75 uint32 startIndex = start >> 5;
76 uint32 startBit = start & 0x1F;
77 uint32 remainingBits = (length + startBit) & 0x1F;
79 uint32 iteration
[all...]
H A DHTree.cpp130 uint32 hash = Hash(name, nameLength);
148 status = fRootEntry->Lookup(hash, (uint32)root->indirection_levels,
159 uint32
162 uint32 hash;
189 uint32
193 uint32 hash = 0x12a3fe2d;
194 uint32 previous = 0x37abe8f9;
197 uint32 next = previous + (hash ^ (*name * 7152373));
210 /*inline*/ uint32
211 HTree::_MD4F(uint32
[all...]
/haiku/src/kits/shared/
H A DColorQuantizer.cpp45 uint32 pixelCount; // Number of pixels represented by this leaf
46 uint32 sumR; // Sum of red components
47 uint32 sumG; // Sum of green components
48 uint32 sumB; // Sum of blue components
49 uint32 sumA; // Sum of alpha components
55 BColorQuantizer::BColorQuantizer(uint32 maxColors, uint32 bitsPerColor)
102 uint32
112 uint32 index = 0;
114 uint32 sum
[all...]
/haiku/src/add-ons/kernel/drivers/audio/usb/
H A DAudioStreamingInterface.h57 static uint32 GetSamFreq(const usb_audio_sampling_freq& freq);
58 static usb_audio_sampling_freq GetSamFreq(uint32 rate);
75 Vector<uint32> fSampleFrequencies;
89 Vector<uint32> fSampleFrequencies;
115 status_t SetSamplingRate(uint32 newRate);
116 status_t SetSamplingRateById(uint32 newId);
117 uint32 GetSamplingRate() { return fSamplingRate; }
118 uint32 GetSamplingRateId(uint32 rate);
119 uint32 GetSamplingRateId
[all...]
/haiku/headers/private/device/
H A Djoystick_driver.h17 uint32 horizontal;
18 uint32 vertical;
34 uint32 buttons; /* lsb to msb, 1 == on */
46 status_t initialize(uint32 axisCount, uint32 hatCount, uint32 buttonCount)
53 + button_blocks * sizeof(uint32) // bitmaps
63 buttons = (uint32 *)&timestamp[1];
75 uint32 axis_count;
76 uint32 hat_coun
[all...]
/haiku/headers/os/storage/
H A DFile.h21 BFile(const entry_ref *ref, uint32 openMode);
22 BFile(const BEntry *entry, uint32 openMode);
23 BFile(const char *path, uint32 openMode);
24 BFile(const BDirectory *dir, const char *path, uint32 openMode);
27 status_t SetTo(const entry_ref *ref, uint32 openMode);
28 status_t SetTo(const BEntry *entry, uint32 openMode);
29 status_t SetTo(const char *path, uint32 openMode);
30 status_t SetTo(const BDirectory *dir, const char *path, uint32 openMode);
40 virtual off_t Seek(off_t offset, uint32 seekMode);
56 uint32 _reservedDat
[all...]
/haiku/src/system/kernel/scheduler/
H A Dscheduler_profiler.h34 void DumpCalled(uint32 count);
35 void DumpTimeInclusive(uint32 count);
36 void DumpTimeExclusive(uint32 count);
37 void DumpTimeInclusivePerCall(uint32 count);
38 void DumpTimeExclusivePerCall(uint32 count);
49 uint32 fCalled;
63 uint32 _FunctionCount() const;
64 void _Dump(uint32 count);
75 const uint32 kMaxFunctionEntries;
76 const uint32 kMaxFunctionStackEntrie
[all...]
/haiku/headers/private/graphics/3dfx/
H A DDriverInterface.h80 uint32 magic; // magic number
81 uint32 offset; // offset of register in PIO register area
96 uint32 size; // size of overlay buffer
116 uint32 videoMemSize; // video memory size in bytes.
118 uint32 cursorOffset; // offset of cursor in video memory
119 uint32 frameBufferOffset; // offset of frame buffer in video memory
120 uint32 maxFrameBufferSize; // max available video memory for frame buffer
124 uint32 colorSpaceCount; // number of color spaces in array colorSpaces
126 uint32 maxPixelClock; // max pixel clock of current chip in KHz
130 uint32 modeCoun
[all...]
/haiku/headers/os/app/
H A DPropertyInfo.h29 uint32 commands[10];
30 uint32 specifiers[10];
32 uint32 extra_data;
33 uint32 types[10];
35 uint32 _reserved[10];
47 uint32 value;
50 uint32 extra_data;
51 uint32 _reserved[10];
82 static bool FindCommand(uint32 what, int32 index,
84 static bool FindSpecifier(uint32 for
[all...]
/haiku/src/apps/cortex/addons/common/
H A DAudioBuffer.cpp72 uint32 frames,
89 uint32 frames,
149 uint32 frames,
188 uint32 AudioBuffer::copyTo(
190 uint32* pioFromFrame,
191 uint32* pioTargetFrame,
192 uint32 frames) const {
204 uint32 fromOffset = *pioFromFrame * m_frameSize;
205 uint32 targetOffset = *pioTargetFrame * m_frameSize;
207 uint32 siz
[all...]
/haiku/headers/build/os/storage/
H A DFile.h35 BFile(const entry_ref *ref, uint32 openMode);
36 BFile(const BEntry *entry, uint32 openMode);
37 BFile(const char *path, uint32 openMode);
38 BFile(const BDirectory *dir, const char *path, uint32 openMode);
41 status_t SetTo(const entry_ref *ref, uint32 openMode);
42 status_t SetTo(const BEntry *entry, uint32 openMode);
43 status_t SetTo(const char *path, uint32 openMode);
44 status_t SetTo(const BDirectory *dir, const char *path, uint32 openMode);
54 virtual off_t Seek(off_t offset, uint32 seekMode);
70 uint32 _reservedDat
[all...]
/haiku/src/add-ons/kernel/busses/i2c/pch/
H A Dpch_i2c.h37 (*((volatile uint32*)(address)) = (data))
39 (*((volatile uint32*)(address)))
50 acpi_status pch_i2c_scan_bus_callback(acpi_handle object, uint32 nestingLevel,
56 uint32 irq;
61 uint32 addr_bas;
62 uint32 addr_len;
76 uint32 irq;
84 uint32 capabilities;
92 uint32 sda_hold_time;
97 uint32 masterConfi
[all...]
/haiku/src/add-ons/kernel/busses/usb/
H A Dehci_hardware.h133 uint32 next_phy;
134 uint32 token[8];
135 uint32 buffer_phy[7];
136 uint32 ext_buffer_phy[7];
139 uint32 this_phy;
142 uint32 last_token;
175 uint32 next_phy;
186 uint32 buffer_phy[2];
187 uint32 back_phy;
188 uint32 ext_buffer_ph
[all...]
/haiku/headers/os/device/
H A DUSBKit.h55 uint32 fReserved[10];
106 size_t GetStringDescriptor(uint32 index,
114 char * DecodeStringDescriptor(uint32 index) const;
127 uint32 CountConfigurations() const;
128 const BUSBConfiguration * ConfigurationAt(uint32 index) const;
152 uint32 fActiveConfiguration;
158 uint32 fReserved[10];
174 uint32 Index() const;
189 uint32 CountInterfaces() const;
190 const BUSBInterface * InterfaceAt(uint32 inde
[all...]
/haiku/src/add-ons/accelerants/intel_extreme/
H A Daccelerant_protos.h32 uint32 intel_accelerant_mode_count(void);
39 status_t intel_get_edid_info(void* info, size_t size, uint32* _version);
43 status_t intel_get_pixel_clock_limits(display_mode* mode, uint32* low,
44 uint32* high);
48 uint32 flags);
51 uint32 intel_dpms_capabilities(void);
52 uint32 intel_dpms_mode(void);
53 status_t intel_set_dpms_mode(uint32 flags);
62 uint32 intel_accelerant_engine_count(void);
63 status_t intel_acquire_engine(uint32 capabilitie
[all...]
/haiku/headers/os/kernel/
H A Dfs_volume.h26 const char *filesystem, uint32 flags,
28 extern status_t fs_unmount_volume(const char *path, uint32 flags);
/haiku/headers/private/kernel/arch/
H A Dreal_time_clock.h23 void arch_rtc_set_hw_time(uint32 seconds);
25 uint32 arch_rtc_get_hw_time(void);
/haiku/headers/private/net/
H A Dether_driver.h38 uint32 media; /* as specified in net/if_media.h */
39 uint32 quality; /* in one tenth of a percent */
H A Dnet_notifications.h31 uint32 flags;
33 uint32 token;
/haiku/headers/private/userlandfs/private/
H A DSingleReplyRequestHandler.h13 SingleReplyRequestHandler(uint32 expectedReply);
19 uint32 fExpectedReply;
/haiku/src/add-ons/kernel/bus_managers/firewire/
H A Dutil.h30 area_id alloc_mem(void **virt, void **phy, size_t size, uint32 protection, const char *name);
31 area_id map_mem(void **virt, void *phy, size_t size, uint32 protection, const char *name);
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DNetFSDefs.h13 uint32 magic;
15 uint32 message;
/haiku/src/add-ons/kernel/file_systems/udf/
H A DRecognition.h16 uint32 blockSize, uint32 &blockShift,

Completed in 210 milliseconds

<<11121314151617181920>>