HomeSort by: relevance | last modified time | path
    Searched defs:Chunk (Results 1 - 22 of 22) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Support/
BinaryStreamWriter.cpp 71 // we iterate over each contiguous chunk, writing each one in succession.
73 ArrayRef<uint8_t> Chunk;
74 if (auto EC = SrcReader.readLongestContiguousChunk(Chunk))
76 if (auto EC = writeBytes(Chunk))
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/MCTargetDesc/
RISCVMatInt.cpp 119 // of each chunk.
122 APInt Chunk = Val.ashr(ShiftVal).sextOrTrunc(PlatRegSize);
123 InstSeq MatSeq = generateInstSeq(Chunk.getSExtValue(), IsRV64);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-reduce/deltas/
Delta.h 26 struct Chunk {
30 /// Helper function to verify if a given Target-index is inside the Chunk
41 friend bool operator!=(const Chunk &C1, const Chunk &C2) {
46 friend bool operator<(const Chunk &C1, const Chunk &C2) {
60 ArrayRef<Chunk> ChunksToKeep;
63 explicit Oracle(ArrayRef<Chunk> ChunksToKeep) : ChunksToKeep(ChunksToKeep) {}
71 // Does the current (front) chunk contain such a feature?
75 // Is this the last feature in the chunk
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
InterpStack.h 56 void *top() { return Chunk ? peek(0) : nullptr; }
82 /// Metadata for each stack chunk.
85 /// is out of bounds, a new chunk is linked. When a chunk becomes empty,
86 /// it is not immediately freed: a chunk is deallocated only when the
96 /// Returns the size of the chunk, minus the header.
102 static_assert(sizeof(StackChunk) < ChunkSize, "Invalid chunk size");
104 /// First chunk on the stack.
105 StackChunk *Chunk = nullptr;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ExpandImm.cpp 20 /// Helper function which extracts the specified 16-bit chunk from a
23 assert(ChunkIdx < 4 && "Out of range chunk index specified!");
28 /// Check whether the given 16-bit chunk replicated to full 64-bit width
30 static bool canUseOrr(uint64_t Chunk, uint64_t &Encoding) {
31 Chunk = (Chunk << 48) | (Chunk << 32) | (Chunk << 16) | Chunk;
33 return AArch64_AM::processLogicalImmediate(Chunk, 64, Encoding)
    [all...]
  /src/external/gpl3/binutils/dist/gprofng/libcollector/
memmgr.c 42 * Chunk:
47 * | Var size object | -> <-| Const size objects| | |Chunk|
51 * - one var size object per chunk
66 typedef struct Chunk
72 struct Chunk *next;
73 } Chunk;
106 * alloc_chunk( unsigned sz ) allocates a chunk of at least sz bytes.
107 * If sz == 0, allocates a chunk of the default size.
109 static Chunk *
114 Chunk *chnk
    [all...]
  /src/external/gpl3/binutils.old/dist/gprofng/libcollector/
memmgr.c 42 * Chunk:
47 * | Var size object | -> <-| Const size objects| | |Chunk|
51 * - one var size object per chunk
66 typedef struct Chunk
72 struct Chunk *next;
73 } Chunk;
106 * alloc_chunk( unsigned sz ) allocates a chunk of at least sz bytes.
107 * If sz == 0, allocates a chunk of the default size.
109 static Chunk *
114 Chunk *chnk
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
CodeCompleteConsumer.cpp 174 CodeCompletionString::Chunk::Chunk(ChunkKind Kind, const char *Text)
247 CodeCompletionString::Chunk
248 CodeCompletionString::Chunk::CreateText(const char *Text) {
249 return Chunk(CK_Text, Text);
252 CodeCompletionString::Chunk
253 CodeCompletionString::Chunk::CreateOptional(CodeCompletionString *Optional) {
254 Chunk Result;
260 CodeCompletionString::Chunk
261 CodeCompletionString::Chunk::CreatePlaceholder(const char *Placeholder)
    [all...]
SemaTemplateVariadic.cpp 917 const DeclaratorChunk &Chunk = D.getTypeObject(I);
918 switch (Chunk.Kind) {
928 if (Chunk.Arr.NumElts &&
929 Chunk.Arr.NumElts->containsUnexpandedParameterPack())
933 for (unsigned i = 0, e = Chunk.Fun.NumParams; i != e; ++i) {
934 ParmVarDecl *Param = cast<ParmVarDecl>(Chunk.Fun.Params[i].Param);
940 if (Chunk.Fun.getExceptionSpecType() == EST_Dynamic) {
941 for (unsigned i = 0; i != Chunk.Fun.getNumExceptions(); ++i) {
942 if (Chunk.Fun.Exceptions[i]
947 } else if (isComputedNoexcept(Chunk.Fun.getExceptionSpecType()) &
    [all...]
SemaType.cpp 162 /// The index of the declarator chunk we're currently processing.
385 /// Given the index of a declarator chunk, check whether that chunk
441 llvm_unreachable("bad declarator chunk kind");
447 llvm_unreachable("bad declarator chunk kind");
468 DeclaratorChunk &chunk = declarator.getTypeObject(i-1); local
469 switch (chunk.Kind) {
479 if (!destChunk) destChunk = &chunk;
527 DeclaratorChunk &chunk = declarator.getTypeObject(i); local
528 switch (chunk.Kind)
586 DeclaratorChunk &chunk = declarator.getTypeObject(i-1); local
617 DeclaratorChunk &chunk = declarator.getTypeObject(i); local
2984 DeclaratorChunk &chunk = declarator.getTypeObject(chunkIndex); local
4014 DeclaratorChunk &chunk = declarator.getTypeObject(i); local
4533 DeclaratorChunk &chunk = D.getTypeObject(i); local
5740 DeclaratorChunk &chunk = D.getTypeObject(chunkIndex); local
5779 DeclaratorChunk &chunk = D.getTypeObject(i); local
7295 DeclaratorChunk &chunk = declarator.getTypeObject(i-1); local
    [all...]
SemaDecl.cpp 5548 DeclaratorChunk &Chunk = D.getTypeObject(I);
5553 if (Chunk.Kind != DeclaratorChunk::MemberPointer)
5557 CXXScopeSpec &SS = Chunk.Mem.Scope();
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/MSF/
MappedBlockStream.cpp 403 const uint8_t *Chunk = Buffer.data() + BytesWritten;
404 ArrayRef<uint8_t> ChunkData(Chunk, BytesToWriteInChunk);
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCCodeView.cpp 646 uint16_t Chunk = std::min((uint32_t)MaxDefRange, RangeSize);
673 LEWriter.write<uint16_t>(Chunk);
676 Bias += Chunk;
677 RangeSize -= Chunk;
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
CodeCompleteConsumer.h 519 struct Chunk {
526 /// CK_Informative, or CK_Comma chunk.
527 /// The string is owned by the chunk and will be deallocated
528 /// (with delete[]) when the chunk is destroyed.
531 /// The code completion string associated with a CK_Optional chunk.
532 /// The optional code completion string is owned by the chunk, and will
533 /// be deallocated (with delete) when the chunk is destroyed.
537 Chunk() : Text(nullptr) {}
539 explicit Chunk(ChunkKind Kind, const char *Text = "");
541 /// Create a new text chunk
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGOpenMPRuntime.h 1066 /// \param Chunked True if chunk is specified in the clause.
1074 /// \param Chunked True if chunk is specified in the clause.
1081 /// \param Chunked True if chunk is specified in the clause.
1088 /// \param Chunked True if chunk is specified in the clause.
1105 /// Chunk size specified using 'schedule' clause (nullptr if chunk
1107 llvm::Value *Chunk = nullptr;
1109 DispatchRTInput(llvm::Value *LB, llvm::Value *UB, llvm::Value *Chunk)
1110 : LB(LB), UB(UB), Chunk(Chunk) {}
    [all...]
CGStmtOpenMP.cpp 1579 // Combining 'distribute' with 'for' requires sharing each 'distribute' chunk
2713 LoopArgs.Chunk != nullptr)) &&
2721 // Each thread executes a chunk of iterations, then requests another chunk,
2722 // until no chunks remain to be distributed. Each chunk contains chunk_size
2723 // iterations, except for the last chunk to be distributed, which may have
2728 // Each thread executes a chunk of iterations, then requests another chunk,
2730 // each chunk is proportional to the number of unassigned iterations divided
2732 // with value k (greater than 1), the size of each chunk is determined in th
    [all...]
CodeGenFunction.h 3624 /// Chunk value generated by sema
3625 llvm::Value *Chunk = nullptr;
3634 /// Update of LB after a whole chunk has been executed
3636 /// Update of UB after a whole chunk has been executed
3640 llvm::Value *Chunk = nullptr, Expr *EUB = nullptr,
3644 : LB(LB), UB(UB), ST(ST), IL(IL), Chunk(Chunk), EUB(EUB),
CGOpenMPRuntime.cpp 557 /// static with chunk adjustment (e.g., simd)
1577 ITy // chunk
1599 ITy // chunk
2555 // Chunk size is 1 in this case.
2630 assert(!Chunked && "chunk was specified but schedule kind not known");
2734 ScheduleKind.Schedule, DispatchValues.Chunk != nullptr, Ordered);
2742 // kmp_int[32|64] stride, kmp_int[32|64] chunk);
2744 // If the Chunk was not specified in the clause - use default value 1.
2745 llvm::Value *Chunk = DispatchValues.Chunk ? DispatchValues.Chun
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
ELFYAML.h 179 struct Chunk {
217 Chunk(ChunkKind K, bool Implicit) : Kind(K), IsImplicit(Implicit) {}
218 virtual ~Chunk();
221 struct Section : public Chunk {
235 Section(ChunkKind Kind, bool IsImplicit = false) : Chunk(Kind, IsImplicit) {}
237 static bool classof(const Chunk *S) {
279 struct Fill : Chunk {
283 Fill() : Chunk(ChunkKind::Fill, /*Implicit=*/false) {}
285 static bool classof(const Chunk *S) { return S->Kind == ChunkKind::Fill; }
288 struct SectionHeaderTable : Chunk {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 227 unsigned Chunk = ExtIndexC % NarrowingRatio;
229 Chunk = NarrowingRatio - 1 - Chunk;
241 unsigned ShAmt = Chunk * DestWidth;
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseDecl.cpp 1556 /// \return \c true if we skipped an attribute-like chunk of tokens, \c false if
6098 // check whether this is a valid declarator chunk. If it can't be, assume
7186 const DeclaratorChunk &Chunk = TempDeclarator.getTypeObject(i);
7187 D.AddTypeInfo(Chunk, SourceLocation());
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 2785 // order, possibly with a smaller chunk at beginning/end (e.g. for x87 80-bit
2794 int Chunk = API.getNumWords() - 1;
2797 AP.OutStreamer->emitIntValueInHexWithPadding(p[Chunk--], TrailingBytes);
2799 for (; Chunk >= 0; --Chunk)
2800 AP.OutStreamer->emitIntValueInHexWithPadding(p[Chunk], sizeof(uint64_t));
2802 unsigned Chunk;
2803 for (Chunk = 0; Chunk < NumBytes / sizeof(uint64_t); ++Chunk)
    [all...]

Completed in 94 milliseconds