Searched refs:HashValue (Results 1 - 25 of 30) sorted by relevance

12

/haiku/headers/private/debugger/util/
H A DStringUtils.h13 static uint32 HashValue(const char* string);
14 static uint32 HashValue(const BString& string);
19 StringUtils::HashValue(const BString& string) function in class:StringUtils
21 return HashValue(string.String());
H A DWorker.h47 virtual size_t HashValue() const = 0;
61 virtual size_t HashValue() const;
176 return key.HashValue();
/haiku/headers/private/debugger/ids/
H A DObjectID.h17 inline uint32 HashValue() const;
31 ObjectID::HashValue() const function in class:ObjectID
/haiku/src/kits/debugger/util/
H A DStringUtils.cpp11 StringUtils::HashValue(const char* string) function in class:StringUtils
H A DWorker.cpp41 SimpleJobKey::HashValue() const function in class:SimpleJobKey
/haiku/src/kits/debugger/model/
H A DStackFrameValues.cpp26 uint32 HashValue() const function in struct:StackFrameValues::Key
28 return variable->HashValue() ^ path->HashValue();
64 return key.HashValue();
69 return value->HashValue();
H A DExpressionValues.cpp30 uint32 HashValue() const function in struct:ExpressionValues::Key
32 return function->HashValue() ^ thread->ID()
33 ^ StringUtils::HashValue(expression);
72 return key.HashValue();
77 return value->HashValue();
H A DStackFrameValueInfos.cpp28 uint32 HashValue() const function in struct:StackFrameValueInfos::Key
30 return variable->HashValue() ^ path->HashValue();
87 return key.HashValue();
92 return value->HashValue();
H A DTypeComponentPath.cpp32 TypeComponent::HashValue() const function in class:TypeComponent
35 return StringUtils::HashValue(name) * 13 + hash;
186 TypeComponentPath::HashValue() const function in class:TypeComponentPath
192 uint32 hash = fComponents.ItemAt(0)->HashValue();
195 hash = hash * 17 + fComponents.ItemAt(i)->HashValue();
/haiku/src/apps/debugger/user_interface/gui/model/
H A DVariablesViewState.cpp119 uint32 HashValue() const function in struct:VariablesViewState::Key
121 return variable->HashValue() ^ path->HashValue();
164 return key.HashValue();
169 return value->HashValue();
H A DVariablesViewStateHistory.cpp29 uint32 HashValue() const function in struct:VariablesViewStateHistory::Key
31 return functionID->HashValue() ^ threadID;
85 return key.HashValue();
/haiku/src/kits/debugger/debug_managers/
H A DTeamMemoryBlockManager.cpp26 uint32 HashValue() const function in struct:TeamMemoryBlockManager::Key
61 return key.HashValue();
66 return value->HashValue();
/haiku/src/kits/debugger/debug_info/
H A DDwarfStackFrameDebugInfo.cpp65 uint32 hash = fFunctionID->HashValue();
66 return hash * 19 + StringUtils::HashValue(fName);
108 uint32 hash = fFunctionID->HashValue();
109 hash = hash * 19 + StringUtils::HashValue(fName);
154 uint32 hash = fFunctionID->HashValue();
155 return hash * 25 + StringUtils::HashValue(fName);
H A DGlobalTypeLookup.cpp45 return StringUtils::HashValue(key);
71 return StringUtils::HashValue(key);
H A DDwarfImageDebugInfo.cpp248 uint32 HashValue() const function in struct:DwarfImageDebugInfo::TypeNameKey
250 return StringUtils::HashValue(typeName);
290 return key.HashValue();
295 return value->HashValue();
/haiku/headers/private/debugger/model/
H A DTypeComponentPath.h90 uint32 HashValue() const;
130 uint32 HashValue() const;
/haiku/src/kits/debugger/ids/
H A DFunctionID.cpp58 return StringUtils::HashValue(fPath) * 17
59 + StringUtils::HashValue(fFunctionName);
/haiku/src/servers/package/
H A DPackage.h69 return BString::HashValue(key);
H A DPackageFile.h97 size_t hash = BString::HashValue(key.name);
/haiku/headers/os/app/
H A DMessenger.h74 uint32 HashValue() const;
/haiku/src/kits/package/
H A DPackageInfoSet.cpp62 return BString::HashValue(key);
67 return value->Name().HashValue();
/haiku/src/kits/debugger/files/
H A DFileManager.cpp59 size_t HashValue() const function in struct:FileManager::EntryPath
61 return StringUtils::HashValue(directory)
62 ^ StringUtils::HashValue(name);
87 return key.HashValue();
522 return StringUtils::HashValue(key);
/haiku/headers/os/support/
H A DString.h38 uint32 HashValue() const;
39 static uint32 HashValue(const char* string);
474 BString::HashValue() const function in class:BString
476 return HashValue(String());
/haiku/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DFileSystem.cpp70 uint32 HashValue() const function in struct:FileSystem::NodeListenerKey
137 return key.HashValue();
142 return value->HashValue();
/haiku/src/kits/app/
H A DMessenger.cpp278 BMessenger::HashValue() const function in class:BMessenger

Completed in 113 milliseconds

12