Searched refs:revision (Results 1 - 25 of 149) sorted by last modified time

123456

/haiku-fatelf/src/add-ons/kernel/partitioning_systems/gpt/
H A Defi_gpt.h17 uint32 revision; member in struct:efi_table_header
35 { revision = B_HOST_TO_LENDIAN_INT32(newRevision); }
37 { return B_LENDIAN_TO_HOST_INT32(revision); }
/haiku-fatelf/src/add-ons/kernel/drivers/network/ipro100/dev/fxp/
H A Dif_fxp.c506 * Find out the chip revision; lump all 82557 revs together.
511 sc->revision = FXP_REV_82559_A0;
515 sc->revision = FXP_REV_82557;
517 sc->revision = pci_get_revid(dev);
523 if (sc->revision >= FXP_REV_82558_A4 &&
524 sc->revision != FXP_REV_82559S_A) {
531 if (sc->revision == FXP_REV_82550_C) {
544 if (sc->revision < FXP_REV_82558_A4) {
556 if (sc->revision == FXP_REV_82557 && (data & FXP_PHY_DEVICE_MASK) != 0
562 * Enable workarounds for certain chip revision deficiencie
3051 uint32_t revision; member in struct:ucode
[all...]
H A Dif_fxpvar.h217 int revision; member in struct:fxp_softc
/haiku-fatelf/src/system/boot/arch/arm/
H A Darch_cpu.cpp45 int revision = 0; local
62 revision = result & 0xf;
66 revision = result & 0xf;
83 TRACE(("%s: implementor=0x%x('%c'), arch=%d, variant=0x%x, part=0x%x, revision=0x%x\n",
84 __func__, implementor, implementor, arch, variant, part, revision));
/haiku-fatelf/src/add-ons/kernel/drivers/network/dec21xxx/dev/dc/
H A Dif_dc.c1574 * but different revision IDs. The same is true for 98715/98715A
1576 * cases, the exact chip revision affects driver behavior.
2025 uint32_t reg, revision; local
2066 revision = pci_get_revid(dev);
2131 if (revision < DC_REVISION_98713A) {
2134 if (revision >= DC_REVISION_98713A) {
2150 if (revision >= DC_REVISION_98715AEC_C &&
2151 revision < DC_REVISION_98725)
2178 if (revision < DC_REVISION_82C169)
/haiku-fatelf/src/kits/interface/
H A DFont.cpp155 int32 revision;
156 link.Read<int32>(&revision);
158 return revision;
167 int32 revision = _RevisionOnServer(); local
171 if (revision == fRevision)
215 fRevision = revision;
/haiku-fatelf/src/add-ons/kernel/bus_managers/pci/
H A Dpci.cpp1230 dev->info.revision = ReadConfig(dev->domain, dev->bus, dev->device,
/haiku-fatelf/src/add-ons/kernel/drivers/network/ipro1000/dev/e1000/
H A De1000_hw.h804 u32 revision; member in struct:e1000_phy_info
H A De1000_ich8lan.c1469 ((hw->phy.revision == 1) || (hw->phy.revision == 2))) ||
1470 ((hw->phy.type == e1000_phy_82578) && (hw->phy.revision == 1))) {
1488 if (hw->phy.revision < 2) {
H A De1000_82571.c471 * e1000_get_phy_id_82571 - Retrieve the PHY ID and revision
475 * revision in the hardware structure.
512 phy->revision = (u32)(phy_id & ~PHY_REVISION_MASK);
H A De1000_phy.c204 * e1000_get_phy_id - Retrieve the PHY ID and revision
208 * revision in the hardware structure.
234 phy->revision = (u32)(phy_id & ~PHY_REVISION_MASK);
1186 (phy->revision < E1000_REVISION_4) &&
1199 if ((phy->revision == E1000_REVISION_2) &&
3695 (hw->phy.revision >= 1) &&
/haiku-fatelf/src/add-ons/accelerants/radeon_hd/
H A Ddisplayport.cpp927 if (raw.version.version != 1 || raw.version.revision > 4) {
928 ERROR("%s: EDID version or revision out of range\n", __func__);
/haiku-fatelf/src/add-ons/kernel/drivers/graphics/nvidia/
H A Ddriver.c37 /* Tell the kernel what revision of the driver API we support */
953 si->revision = di->pcii.revision;
/haiku-fatelf/src/add-ons/kernel/drivers/graphics/intel_extreme/
H A Ddriver.cpp231 dprintf(DEVICE_NAME ": (%ld) %s, revision = 0x%x\n", found,
232 kSupportedDevices[type].name, info->revision);
/haiku-fatelf/build/scripts/
H A Ddetermine_haiku_revision8 revision=`cat ${haikuBuildOutputDir}/haiku-revision 2>/dev/null`
9 lastBuiltRevision=`cat ${haikuBuildOutputDir}/last-built-revision \
13 # only determine the haiku-revision if anything has changed from
15 if [ -z "$revision" -o "$lastBuiltRevision" != "$localRev" ]; then
16 # the revision we use is the description of HEAD with respect to the
17 # last reachable hrev-(haiku-revision-)tag
18 revision=`git describe --dirty --tags --match=hrev*`
19 if [ -z "$revision" ]; then
21 revision
[all...]
/haiku-fatelf/headers/private/graphics/common/
H A Dedid_raw.h60 uint8 revision; member in struct:_PACKED
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/udf/r5/
H A DUdfStructures.h171 //! Note that revision 2.50 is denoted by 0x0250.
238 //! Note that revision 2.50 is denoted by 0x0250.
242 void set_udf_revision(uint16 revision) { _udf_revision = B_HOST_TO_LENDIAN_INT16(revision); } argument
1430 void set_minimum_udf_read_revision(uint16 revision) { _accessor().minimum_udf_read_revision = B_HOST_TO_LENDIAN_INT16(revision); } argument
1431 void set_minimum_udf_write_revision(uint16 revision) { _accessor().minimum_udf_write_revision = B_HOST_TO_LENDIAN_INT16(revision); } argument
1432 void set_maximum_udf_write_revision(uint16 revision) { _accessor().maximum_udf_write_revision = B_HOST_TO_LENDIAN_INT16(revision); } argument
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/client/
H A DShareAttrDir.cpp188 fRevision = dirInfo.revision;
202 if (fRevision >= dirInfo.revision)
291 fRevision = dirInfo.revision;
299 ShareAttrDir::SetRevision(int64 revision) argument
301 fRevision = revision;
H A DShareAttrDir.h47 void SetRevision(int64 revision);
75 // a revision is cached
H A DShareNode.cpp55 ShareDirEntry::SetRevision(int64 revision) argument
57 fRevision = revision;
99 // negative revision, to make sure it is updated
100 fInfo.revision = -1;
128 if (fInfo.revision < nodeInfo.revision)
365 RemoteShareDirIterator::SetRevision(int64 revision) argument
367 fRevision = revision;
412 ShareDir::UpdateEntryCreatedEventRevision(int64 revision) argument
414 if (revision > fEntryCreatedEventRevisio
427 UpdateEntryRemovedEventRevision(int64 revision) argument
[all...]
H A DShareNode.h32 void SetRevision(int64 revision);
123 void SetRevision(int64 revision);
148 void UpdateEntryCreatedEventRevision(int64 revision);
151 void UpdateEntryRemovedEventRevision(int64 revision);
171 // The revision of the latest "created" or
179 // The revision of the latest "removed" or
184 // if its revision is less than this
185 // revision, and must be reloaded from the
H A DShareVolume.cpp1746 // store the current attibute dir revision for reference below
1810 // store the current attibute dir revision for reference below
1858 // store the current attibute dir revision for reference below
2117 // init the iterator's revision, if it's new or has been rewinded
2119 iterator->SetRevision(reply->revision);
2186 request->revision);
2244 _EntryRemoved(request->directoryID, name, request->revision);
2276 request->revision);
2536 if (entryInfo.nodeInfo.revision > entry->GetRevision()) {
2541 entryInfo.nodeInfo.revision);
2807 _EntryCreated(NodeID remoteDirID, const char* name, const EntryInfo* entryInfo, int64 revision) argument
2836 _EntryRemoved(NodeID remoteDirID, const char* name, int64 revision) argument
2866 _EntryMoved(NodeID remoteOldDirID, const char* oldName, NodeID remoteNewDirID, const char* name, const EntryInfo* entryInfo, int64 revision) argument
[all...]
H A DShareVolume.h206 const EntryInfo* entryInfo, int64 revision);
208 const char* name, int64 revision);
212 const EntryInfo* entryInfo, int64 revision);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/headers/shared/
H A DAttrDirInfo.h28 int64 revision; member in struct:AttrDirInfo
H A DNodeInfo.h17 int64 revision; member in struct:NodeInfo

Completed in 322 milliseconds

123456