OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isOrdinal
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/Object/
COFF.h
148
bool
isOrdinal
() const { return data & 0x80000000; }
151
assert(
isOrdinal
() && "ILT entry is not an ordinal!");
156
assert(!
isOrdinal
() && "ILT entry is not a Hint/Name RVA!");
/external/llvm/include/llvm/Support/
COFF.h
422
bool
isOrdinal
() const { return data & 0x80000000; }
424
/// @brief Get the ordinal value of this entry.
isOrdinal
must be true.
426
assert(
isOrdinal
() && "ILT entry is not an ordinal!");
430
/// @brief Set the ordinal value and set
isOrdinal
to true.
436
/// @brief Get the Hint/Name entry RVA.
isOrdinal
must be false.
438
assert(!
isOrdinal
() && "ILT entry is not a Hint/Name RVA!");
442
/// @brief Set the Hint/Name entry RVA and set
isOrdinal
to false.
Completed in 1627 milliseconds