Static Value-Flow Analysis
Loading...
Searching...
No Matches
Public Member Functions | List of all members
SVF::Hash< NodePair > Struct Reference

#include <SVFType.h>

Public Member Functions

size_t operator() (const NodePair &p) const
 

Detailed Description

Definition at line 466 of file SVFType.h.

Member Function Documentation

◆ operator()()

size_t SVF::Hash< NodePair >::operator() ( const NodePair p) const
inline

Definition at line 468 of file SVFType.h.

469 {
470 // Make sure our assumptions are sound: use u32_t
471 // and u64_t. If NodeID is not actually u32_t or size_t
472 // is not u64_t we should be fine since we get a
473 // consistent result.
474 uint32_t first = (uint32_t)(p.first);
475 uint32_t second = (uint32_t)(p.second);
476 return ((uint64_t)(first) << 32) | (uint64_t)(second);
477 }
cJSON * p
Definition cJSON.cpp:2559
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

The documentation for this struct was generated from the following file: