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

/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.cpp747 const DeclaratorChunk &Chunk = D.getTypeObject(I); local
748 switch (Chunk.Kind) {
757 if (Chunk.Arr.NumElts &&
758 Chunk.Arr.NumElts->containsUnexpandedParameterPack())
762 for (unsigned i = 0, e = Chunk.Fun.NumParams; i != e; ++i) {
763 ParmVarDecl *Param = cast<ParmVarDecl>(Chunk.Fun.Params[i].Param);
769 if (Chunk.Fun.getExceptionSpecType() == EST_Dynamic) {
770 for (unsigned i = 0; i != Chunk.Fun.NumExceptions; ++i) {
771 if (Chunk.Fun.Exceptions[i]
776 } else if (Chunk
[all...]
H A DSemaType.cpp3171 const DeclaratorChunk &Chunk = D.getTypeObject(I); local
3172 assert(Chunk.Kind == DeclaratorChunk::Function);
3173 if (Chunk.Fun.hasRefQualifier())
3174 RemovalLocs.push_back(Chunk.Fun.getRefQualifierLoc());
3175 if (Chunk.Fun.TypeQuals & Qualifiers::Const)
3176 RemovalLocs.push_back(Chunk.Fun.getConstQualifierLoc());
3177 if (Chunk.Fun.TypeQuals & Qualifiers::Volatile)
3178 RemovalLocs.push_back(Chunk.Fun.getVolatileQualifierLoc());
3179 if (Chunk.Fun.TypeQuals & Qualifiers::Restrict)
3180 RemovalLocs.push_back(Chunk
3702 const DeclaratorChunk &Chunk; member in class:__anon1242::DeclaratorLocFiller
3705 DeclaratorLocFiller(ASTContext &Context, const DeclaratorChunk &Chunk) argument
3821 fillAtomicQualLoc(AtomicTypeLoc ATL, const DeclaratorChunk &Chunk) argument
[all...]
H A DSemaExprCXX.cpp1168 DeclaratorChunk &Chunk = D.getTypeObject(0); local
1170 return ExprError(Diag(Chunk.Loc, diag::err_new_array_of_auto)
1172 if (Chunk.Arr.hasStatic)
1173 return ExprError(Diag(Chunk.Loc, diag::err_static_illegal_in_new)
1175 if (!Chunk.Arr.NumElts)
1176 return ExprError(Diag(Chunk.Loc, diag::err_array_new_needs_size)
1179 ArraySize = static_cast<Expr*>(Chunk.Arr.NumElts);
H A DSemaDeclCXX.cpp6945 for (auto &Chunk : D.type_objects()) {
6946 switch (Chunk.Kind) {
6949 if (Chunk.Fun.HasTrailingReturnType) {
6951 GetTypeFromParser(Chunk.Fun.getTrailingReturnType(), &TRT);
6960 extendRight(After, Chunk.getSourceRange());
6967 extendLeft(Before, Chunk.getSourceRange());
6971 extendLeft(Before, Chunk.Loc);
6972 extendRight(After, Chunk.EndLoc);
H A DSemaDecl.cpp4466 DeclaratorChunk &Chunk = D.getTypeObject(I); local
4471 if (Chunk.Kind != DeclaratorChunk::MemberPointer)
4475 CXXScopeSpec &SS = Chunk.Mem.Scope();
/external/v8/src/
H A Dbignum.cc48 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.h74 typedef uint32_t Chunk; typedef in class:v8::internal::Bignum
77 static const int kChunkSize = sizeof(Chunk) * 8;
82 static const Chunk kBigitMask = (1 << kBigitSize) - 1;
102 Chunk BigitAt(int index) const;
105 Chunk bigits_buffer_[kBigitCapacity];
108 Vector<Chunk> bigits_;
/external/ceres-solver/internal/ceres/
H A Dschur_eliminator.h241 // Chunk objects store combinatorial information needed to
267 struct Chunk { struct in class:ceres::internal::SchurEliminator
268 Chunk() : size(0) {} function in struct:ceres::internal::SchurEliminator::Chunk
275 const Chunk& chunk,
284 void UpdateRhs(const Chunk& chunk,
321 // see the documentation of the Chunk object above.
322 vector<Chunk> chunks_;
H A Dschur_eliminator_impl.h32 // Chunk::start ?
117 chunks_.push_back(Chunk());
118 Chunk& chunk = chunks_.back();
149 const Chunk& chunk = chunks_.back();
230 const Chunk& chunk = chunks_[i];
255 // for each Chunk. The computation is broken down into a number of
312 const Chunk& chunk = chunks_[i];
374 UpdateRhs(const Chunk& chunk,
412 // Given a Chunk - set of rows with the same e_block, e.g. in the
413 // following Chunk wit
[all...]
/external/clang/include/clang/Sema/
H A DCodeCompleteConsumer.h383 struct Chunk { struct in class:clang::CodeCompletionString
401 Chunk() : Kind(CK_Text), Text(nullptr) { } function in struct:clang::CodeCompletionString::Chunk
403 explicit Chunk(ChunkKind Kind, const char *Text = "");
406 static Chunk CreateText(const char *Text);
409 static Chunk CreateOptional(CodeCompletionString *Optional);
412 static Chunk CreatePlaceholder(const char *Placeholder);
415 static Chunk CreateInformative(const char *Informative);
418 static Chunk CreateResultType(const char *ResultType);
421 static Chunk CreateCurrentParameter(const char *CurrentParameter);
447 CodeCompletionString(const Chunk *Chunk
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64ExpandPseudoInsts.cpp79 const uint64_t Chunk = getChunk(Imm, FromIdx) << ShiftAmt; local
83 return Imm | Chunk;
125 static bool canUseOrr(uint64_t Chunk, uint64_t &Encoding) {
126 Chunk = (Chunk << 48) | (Chunk << 32) | (Chunk << 16) | Chunk;
128 return AArch64_AM::processLogicalImmediate(Chunk, 64, Encoding);
151 for (CountMap::const_iterator Chunk
[all...]
/external/webp/src/demux/
H A Ddemux.c57 typedef struct Chunk { struct
59 struct Chunk* next_;
60 } Chunk; typedef in typeref:struct:Chunk
73 Chunk* chunks_; // non-image chunks
74 Chunk** chunks_tail_;
178 static void AddChunk(WebPDemuxer* const dmux, Chunk* const chunk) {
382 Chunk* const chunk = (Chunk*)WebPSafeCalloc(1ULL, sizeof(*chunk));
757 Chunk* c;
767 Chunk* cons
[all...]
/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/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp834 llvm::Value *Chunk) {
840 assert(!RT.isStaticNonchunked(ScheduleKind, /* Chunked */ Chunk != nullptr) &&
898 Chunk);
1029 llvm::Value *Chunk = nullptr; local
1034 Chunk = EmitScalarExpr(Ch);
1035 Chunk = EmitScalarConversion(Chunk, Ch->getType(),
1042 /* Chunked */ Chunk != nullptr)) {
1069 Chunk);
829 EmitOMPForOuterLoop(OpenMPScheduleClauseKind ScheduleKind, const OMPLoopDirective &S, OMPPrivateScope &LoopScope, llvm::Value *LB, llvm::Value *UB, llvm::Value *ST, llvm::Value *IL, llvm::Value *Chunk) argument
H A DCGOpenMPRuntime.h422 /// \param Chunk Value of the chunk for the static_chunked scheduled loop.
429 llvm::Value *Chunk = nullptr);
H A DCGOpenMPRuntime.cpp1333 llvm::Value *Chunk) {
1334 OpenMPSchedType Schedule = getRuntimeSchedule(ScheduleKind, Chunk != nullptr);
1341 // If the Chunk was not specified in the clause - use default value 1.
1342 if (Chunk == nullptr)
1343 Chunk = CGF.Builder.getIntN(IVSize, 1);
1350 Chunk // Chunk
1359 if (Chunk == nullptr) {
1362 // If the Chunk was not specified in the clause - use default value 1.
1363 Chunk
1328 emitForInit(CodeGenFunction &CGF, SourceLocation Loc, OpenMPScheduleClauseKind ScheduleKind, unsigned IVSize, bool IVSigned, llvm::Value *IL, llvm::Value *LB, llvm::Value *UB, llvm::Value *ST, llvm::Value *Chunk) argument
[all...]
H A DCodeGenFunction.h2161 llvm::Value *Chunk);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp2005 int Chunk = API.getNumWords() - 1; local
2008 AP.OutStreamer.EmitIntValue(p[Chunk--], TrailingBytes);
2010 for (; Chunk >= 0; --Chunk)
2011 AP.OutStreamer.EmitIntValue(p[Chunk], sizeof(uint64_t));
2013 unsigned Chunk; local
2014 for (Chunk = 0; Chunk < NumBytes / sizeof(uint64_t); ++Chunk)
2015 AP.OutStreamer.EmitIntValue(p[Chunk], sizeo
[all...]
/external/clang/lib/Basic/
H A DSourceManager.cpp1228 const __m128i Chunk = *(const __m128i*)NextBuf; local
1229 __m128i Cmp = _mm_or_si128(_mm_cmpeq_epi8(Chunk, CRs),
1230 _mm_cmpeq_epi8(Chunk, LFs));
/external/llvm/lib/Target/X86/
H A DX86FrameLowering.cpp223 uint64_t Chunk = (1LL << 31) - 1;
227 if (Offset > Chunk) {
253 uint64_t ThisVal = std::min(Offset, Chunk);
/external/clang/lib/Parse/
H A DParseDecl.cpp5914 const DeclaratorChunk &Chunk = TempDeclarator.getTypeObject(i); local
5916 attrs.set(Chunk.Common.AttrList);
5917 D.AddTypeInfo(Chunk, attrs, SourceLocation());

Completed in 1800 milliseconds