OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CS32
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/Object/
COFF.h
283
COFFSymbolRef(const coff_symbol16 *CS) : CS16(CS),
CS32
(nullptr) {}
284
COFFSymbolRef(const coff_symbol32 *CS) : CS16(nullptr),
CS32
(CS) {}
285
COFFSymbolRef() : CS16(nullptr),
CS32
(nullptr) {}
288
return CS16 ? static_cast<const void *>(CS16) :
CS32
;
294
return reinterpret_cast<const coff_symbol_generic *>(
CS32
);
304
if (
CS32
)
310
return CS16 ? CS16->Name.ShortName :
CS32
->Name.ShortName;
315
return CS16 ? CS16->Name.Offset :
CS32
->Name.Offset;
318
uint32_t getValue() const { return CS16 ? CS16->Value :
CS32
->Value; }
328
return static_cast<int32_t>(
CS32
->SectionNumber)
[
all
...]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
COFF.h
285
COFFSymbolRef(const coff_symbol32 *CS) :
CS32
(CS) {}
288
return CS16 ? static_cast<const void *>(CS16) :
CS32
;
294
return reinterpret_cast<const coff_symbol_generic *>(
CS32
);
304
if (
CS32
)
310
return CS16 ? CS16->Name.ShortName :
CS32
->Name.ShortName;
315
return CS16 ? CS16->Name.Offset :
CS32
->Name.Offset;
318
uint32_t getValue() const { return CS16 ? CS16->Value :
CS32
->Value; }
328
return static_cast<int32_t>(
CS32
->SectionNumber);
333
return CS16 ? CS16->Type :
CS32
->Type;
338
return CS16 ? CS16->StorageClass :
CS32
->StorageClass
[
all
...]
Completed in 53 milliseconds