OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NumShared
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm/ADT/
SmallVector.h
583
size_t
NumShared
= this->size();
584
if (
NumShared
> RHS.size())
NumShared
= RHS.size();
585
for (unsigned i = 0; i != static_cast<unsigned>(
NumShared
); ++i)
591
this->uninitialized_copy(this->begin()+
NumShared
, this->end(), RHS.end());
593
this->destroy_range(this->begin()+
NumShared
, this->end());
594
this->setEnd(this->begin()+
NumShared
);
597
this->uninitialized_copy(RHS.begin()+
NumShared
, RHS.end(), this->end());
599
this->destroy_range(RHS.begin()+
NumShared
, RHS.end());
600
RHS.setEnd(RHS.begin()+
NumShared
);
[
all
...]
/external/llvm/lib/CodeGen/AsmPrinter/
DwarfException.cpp
124
unsigned
NumShared
= PrevLPI ? SharedTypeIds(LPI, PrevLPI) : 0;
127
if (
NumShared
< TypeIds.size()) {
131
if (
NumShared
) {
139
for (unsigned j =
NumShared
; j != SizePrevIds; ++j) {
149
for (unsigned J =
NumShared
, M = TypeIds.size(); J != M; ++J) {
/external/llvm/lib/ExecutionEngine/JIT/
JITDwarfEmitter.cpp
248
const unsigned
NumShared
= i ? SharedTypeIds(LP, LandingPads[i-1]) : 0;
251
if (
NumShared
< TypeIds.size()) {
255
if (
NumShared
) {
261
for (unsigned j =
NumShared
; j != SizePrevIds; ++j) {
269
for (unsigned I =
NumShared
, M = TypeIds.size(); I != M; ++I) {
Completed in 56 milliseconds