Searched refs:Chunk (Results 1 - 25 of 45) sorted by relevance

12

/external/valgrind/perf/
H A Dmany-loss-records.c42 struct Chunk { struct
43 struct Chunk* child;
47 struct Chunk** topblocks;
58 void free_chunks (struct Chunk ** mem)
70 void release (struct Chunk ** mem)
87 int sz = sizeof(struct Chunk*) + malloc_data;
92 struct Chunk *new = NULL; // shut gcc up
93 struct Chunk *prev = NULL;
206 topblocks = malloc(sizeof(struct Chunk*) * stacks * malloc_fan);
/external/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp81 CodeCompletionString::Chunk::Chunk(ChunkKind Kind, const char *Text) function in class:CodeCompletionString::Chunk
155 CodeCompletionString::Chunk
156 CodeCompletionString::Chunk::CreateText(const char *Text) {
157 return Chunk(CK_Text, Text);
160 CodeCompletionString::Chunk
161 CodeCompletionString::Chunk::CreateOptional(CodeCompletionString *Optional) {
162 Chunk Result;
168 CodeCompletionString::Chunk
169 CodeCompletionString::Chunk
[all...]
H A DSemaTemplateVariadic.cpp751 const DeclaratorChunk &Chunk = D.getTypeObject(I); local
752 switch (Chunk.Kind) {
762 if (Chunk.Arr.NumElts &&
763 Chunk.Arr.NumElts->containsUnexpandedParameterPack())
767 for (unsigned i = 0, e = Chunk.Fun.NumParams; i != e; ++i) {
768 ParmVarDecl *Param = cast<ParmVarDecl>(Chunk.Fun.Params[i].Param);
774 if (Chunk.Fun.getExceptionSpecType() == EST_Dynamic) {
775 for (unsigned i = 0; i != Chunk.Fun.NumExceptions; ++i) {
776 if (Chunk.Fun.Exceptions[i]
781 } else if (Chunk
[all...]
H A DSemaType.cpp4442 const DeclaratorChunk &Chunk = D.getTypeObject(I); local
4443 assert(Chunk.Kind == DeclaratorChunk::Function);
4444 if (Chunk.Fun.hasRefQualifier())
4445 RemovalLocs.push_back(Chunk.Fun.getRefQualifierLoc());
4446 if (Chunk.Fun.TypeQuals & Qualifiers::Const)
4447 RemovalLocs.push_back(Chunk.Fun.getConstQualifierLoc());
4448 if (Chunk.Fun.TypeQuals & Qualifiers::Volatile)
4449 RemovalLocs.push_back(Chunk.Fun.getVolatileQualifierLoc());
4450 if (Chunk.Fun.TypeQuals & Qualifiers::Restrict)
4451 RemovalLocs.push_back(Chunk
4990 const DeclaratorChunk &Chunk; member in class:__anon1578::DeclaratorLocFiller
4993 DeclaratorLocFiller(ASTContext &Context, const DeclaratorChunk &Chunk) argument
5113 fillAtomicQualLoc(AtomicTypeLoc ATL, const DeclaratorChunk &Chunk) argument
[all...]
/external/v8/src/
H A Dbignum.cc46 bigits_[i] = static_cast<Chunk>(value & kBigitMask);
121 Chunk current_bigit = 0;
129 Chunk most_significant_bigit = 0; // Could be = 0;
171 Chunk carry = 0;
175 Chunk sum = bigits_[bigit_pos] + other.bigits_[i] + carry;
182 Chunk sum = bigits_[bigit_pos] + carry;
201 Chunk borrow = 0;
205 Chunk difference = bigits_[i + offset] - other.bigits_[i] - borrow;
210 Chunk difference = bigits_[i + offset] - borrow;
242 bigits_[i] = static_cast<Chunk>(produc
[all...]
H A Dbignum.h76 typedef uint32_t Chunk; typedef in class:v8::internal::Bignum
79 static const int kChunkSize = sizeof(Chunk) * 8;
84 static const Chunk kBigitMask = (1 << kBigitSize) - 1;
104 Chunk BigitAt(int index) const;
107 Chunk bigits_buffer_[kBigitCapacity];
110 Vector<Chunk> bigits_;
/external/llvm/lib/DebugInfo/CodeView/
H A DStreamWriter.cpp70 ArrayRef<uint8_t> Chunk; local
71 if (auto EC = SrcReader.readLongestContiguousChunk(Chunk))
73 if (auto EC = writeBytes(Chunk))
/external/v8/src/zone/
H A Dzone-chunk-list.h105 struct Chunk { struct in class:v8::internal::ZoneChunkList::StartMode
108 Chunk* next_ = nullptr;
109 Chunk* previous_ = nullptr;
113 Chunk* NewChunk(const uint32_t capacity) {
114 Chunk* chunk =
115 new (zone_->New(sizeof(Chunk) + capacity * sizeof(T))) Chunk();
121 Chunk* chunk_;
132 Chunk* front_ = nullptr;
133 Chunk* back
[all...]
/external/clang/include/clang/Sema/
H A DCodeCompleteConsumer.h385 struct Chunk { struct in class:clang::CodeCompletionString
403 Chunk() : Kind(CK_Text), Text(nullptr) { } function in struct:clang::CodeCompletionString::Chunk
405 explicit Chunk(ChunkKind Kind, const char *Text = "");
408 static Chunk CreateText(const char *Text);
411 static Chunk CreateOptional(CodeCompletionString *Optional);
414 static Chunk CreatePlaceholder(const char *Placeholder);
417 static Chunk CreateInformative(const char *Informative);
420 static Chunk CreateResultType(const char *ResultType);
423 static Chunk CreateCurrentParameter(const char *CurrentParameter);
449 CodeCompletionString(const Chunk *Chunk
[all...]
/external/compiler-rt/lib/scudo/
H A Dscudo_allocator.cpp97 // CRC32 checksum of the Chunk pointer and its ChunkHeader.
209 // Chunk recycling function, returns a quarantined chunk to the backend.
210 void Recycle(ScudoChunk *Chunk) { argument
212 Chunk->loadHeader(&Header);
215 Chunk);
217 void *Ptr = Chunk->AllocBeg(&Header);
359 ScudoChunk *Chunk = local
367 Chunk->storeHeader(&Header);
375 // Deallocates a Chunk, which means adding it to the delayed free list (or
389 ScudoChunk *Chunk local
437 ScudoChunk *Chunk = local
471 ScudoChunk *Chunk = local
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64ExpandPseudoInsts.cpp100 const uint64_t Chunk = getChunk(Imm, FromIdx) << ShiftAmt; local
104 return Imm | Chunk;
146 static bool canUseOrr(uint64_t Chunk, uint64_t &Encoding) {
147 Chunk = (Chunk << 48) | (Chunk << 32) | (Chunk << 16) | Chunk;
149 return AArch64_AM::processLogicalImmediate(Chunk, 64, Encoding);
172 for (CountMap::const_iterator Chunk
[all...]
/external/v8/src/heap/
H A Dslot-set.h380 chunk_.SetValue(new Chunk(nullptr, kInitialBufferSize));
384 Chunk* chunk = chunk_.Value();
386 Chunk* next = chunk->next.Value();
397 Chunk* top_chunk = chunk_.Value();
399 top_chunk = new Chunk(nullptr, kInitialBufferSize);
403 Chunk* new_top_chunk =
404 new Chunk(top_chunk, NextCapacity(top_chunk->capacity.Value()));
424 Chunk* chunk = chunk_.Value();
425 Chunk* previous = nullptr;
448 Chunk* nex
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DThumb1RegisterInfo.cpp145 unsigned Chunk = ((1 << NumBits) - 1) * Scale; local
148 unsigned ThisVal = (Bytes > Chunk) ? Chunk : Bytes;
153 Chunk = ((1 << NumBits) - 1) * Scale;
156 NumMIs += Bytes / Chunk;
157 if ((Bytes % Chunk) != 0)
237 unsigned Chunk = (1 << 3) - 1;
238 unsigned ThisVal = (Bytes > Chunk) ? Chunk : Bytes;
253 unsigned Chunk
[all...]
/external/webp/src/demux/
H A Ddemux.c56 typedef struct Chunk { struct
58 struct Chunk* next_;
59 } Chunk; typedef in typeref:struct:Chunk
72 Chunk* chunks_; // non-image chunks
73 Chunk** chunks_tail_;
177 static void AddChunk(WebPDemuxer* const dmux, Chunk* const chunk) {
353 Chunk* const chunk = (Chunk*)WebPSafeCalloc(1ULL, sizeof(*chunk));
755 Chunk* c;
765 Chunk* cons
[all...]
/external/v8/src/parsing/
H A Dscanner-character-streams.cc232 struct Chunk { struct in class:v8::internal::Utf8ExternalStreamingStream
248 std::vector<Chunk> chunks_;
260 const Chunk& chunk = chunks_[current_.chunk_no];
292 const Chunk& chunk = chunks_[current_.chunk_no];
459 struct Chunk {
465 typedef std::vector<struct Chunk> Chunks;
545 const Chunk& chunk = chunks_[FindChunk(chunks_, source_, position, stats_)];
604 Chunk& current = chunks_[chunk_no];
613 Chunk& previous_chunk = chunks_[chunk_no - 1];
641 // Chunk) t
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/SystemZ/
H A DSystemZFrameLowering.cpp69 unsigned Opc; uint64_t Chunk; local
75 Chunk = (1LL << 31) - 1;
78 Chunk = (1LL << 15) - 1;
84 uint64_t ThisVal = (Offset > Chunk) ? Chunk : Offset;
/external/llvm/lib/MC/
H A DMCCodeView.cpp397 uint16_t Chunk = std::min((uint32_t)MaxDefRange, RangeSize); local
424 support::endian::Writer<support::little>(OS).write<uint16_t>(Chunk);
427 Bias += Chunk;
428 RangeSize -= Chunk;
/external/python/cpython2/Lib/
H A Dchunk.py21 usage of the Chunk class defined here is to instantiate an instance at
30 chunk = Chunk(file)
51 class Chunk: class in inherits:
H A Dwave.py87 from chunk import Chunk namespace
129 self._file = Chunk(file, bigendian = 0)
139 chunk = Chunk(self._file, bigendian = 0)
/external/tinyxml2/
H A Dtinyxml2.h284 Chunk* chunk = (Chunk*)mem;
285 memset( chunk, 0xfe, sizeof(Chunk) );
296 union Chunk { union in class:tinyxml2::MemPoolT
297 Chunk* next;
301 Chunk chunk[COUNT];
304 Chunk* root;
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtcp_packet.cc166 void CreateSdes(const std::vector<Sdes::Chunk>& chunks,
170 for (std::vector<Sdes::Chunk>::const_iterator it = chunks.begin();
441 Chunk chunk;
451 // Chunk:
454 for (const Chunk& chunk : chunks_)
H A Drtcp_packet.h235 struct Chunk { struct in class:webrtc::rtcp::Sdes
252 std::vector<Chunk> chunks_;
/external/clang/lib/CodeGen/
H A DCGOpenMPRuntime.h642 llvm::Value *Chunk = nullptr);
665 /// \param Chunk Value of the chunk for the static_chunked scheduled loop.
672 llvm::Value *Chunk = nullptr);
689 /// \param Chunk Value of the chunk for the static_chunked scheduled loop.
697 llvm::Value *Chunk = nullptr);
/external/llvm/lib/DebugInfo/PDB/Raw/
H A DMappedBlockStream.cpp245 const uint8_t *Chunk = Buffer.data() + BytesWritten; local
246 ArrayRef<uint8_t> ChunkData(Chunk, BytesToWriteInChunk);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp2072 int Chunk = API.getNumWords() - 1; local
2075 AP.OutStreamer->EmitIntValue(p[Chunk--], TrailingBytes);
2077 for (; Chunk >= 0; --Chunk)
2078 AP.OutStreamer->EmitIntValue(p[Chunk], sizeof(uint64_t));
2080 unsigned Chunk; local
2081 for (Chunk = 0; Chunk < NumBytes / sizeof(uint64_t); ++Chunk)
2082 AP.OutStreamer->EmitIntValue(p[Chunk], sizeo
[all...]

Completed in 8076 milliseconds

12