OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Piece
(Results
1 - 6
of
6
) sorted by null
/external/llvm/include/llvm/Bitcode/
BitstreamReader.h
335
uint32_t
Piece
= Read(NumBits);
336
if ((
Piece
& (1U << (NumBits-1))) == 0)
337
return
Piece
;
342
Result |= (
Piece
& ((1U << (NumBits-1))-1)) << NextBit;
344
if ((
Piece
& (1U << (NumBits-1))) == 0)
348
Piece
= Read(NumBits);
355
uint32_t
Piece
= Read(NumBits);
356
if ((
Piece
& (1U << (NumBits-1))) == 0)
357
return uint64_t(
Piece
);
362
Result |= uint64_t(
Piece
& ((1U << (NumBits-1))-1)) << NextBit
[
all
...]
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
balanced_quicksort.h
69
typedef std::pair<RandomAccessIterator, RandomAccessIterator>
Piece
;
71
/** @brief Initial
piece
to work on. */
72
Piece
initial;
75
RestrictedBoundedConcurrentQueue<
Piece
> leftover_parts;
84
Piece
global;
245
typedef std::pair<RandomAccessIterator, RandomAccessIterator>
Piece
;
258
Piece
current = tl.initial;
427
typedef std::pair<RandomAccessIterator, RandomAccessIterator>
Piece
;
466
Piece
dummy;
multiway_mergesort.h
47
struct
Piece
87
std::vector<
Piece
<difference_type> >* pieces;
444
sd.pieces = new std::vector<
Piece
<difference_type> >[num_threads];
/external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp
[
all
...]
/external/clang/lib/Sema/
SemaStmt.cpp
[
all
...]
/external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp
125
// Remove the front
piece
from the path. If it is still something we
127
IntrusiveRefCntPtr<PathDiagnosticPiece>
piece
(pieces.front());
130
switch (
piece
->getKind()) {
132
PathDiagnosticCallPiece *call = cast<PathDiagnosticCallPiece>(
piece
);
141
PathDiagnosticMacroPiece *macro = cast<PathDiagnosticMacroPiece>(
piece
);
148
PathDiagnosticEventPiece *event = cast<PathDiagnosticEventPiece>(
piece
);
160
pieces.push_back(
piece
);
388
// If the
piece
contains a special message, add it to all the call
835
// of the first
piece
as a context as well.
1605
PathDiagnosticPiece *
piece
= I->getPtr();
local
2018
PathDiagnosticPiece *
piece
= new PathDiagnosticEventPiece(
local
[
all
...]
Completed in 1700 milliseconds