Searched defs:Chunk (Results 1 - 24 of 24) sorted by relevance

/external/chromium_org/content/browser/speech/
H A Dchunked_byte_buffer.h53 struct Chunk { struct in class:content::ChunkedByteBuffer
54 Chunk();
55 ~Chunk();
62 DISALLOW_COPY_AND_ASSIGN(Chunk);
65 ScopedVector<Chunk> chunks_;
66 scoped_ptr<Chunk> partial_chunk_;
H A Dchunked_byte_buffer.cc32 : partial_chunk_(new Chunk()),
82 partial_chunk_.reset(new Chunk());
91 partial_chunk_.reset(new Chunk());
109 scoped_ptr<Chunk> chunk(*chunks_.begin());
120 partial_chunk_.reset(new Chunk());
124 ChunkedByteBuffer::Chunk::Chunk() function in class:content::ChunkedByteBuffer::Chunk
128 ChunkedByteBuffer::Chunk::~Chunk() {
131 size_t ChunkedByteBuffer::Chunk
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPODArena.h134 m_chunks.append(adoptPtr(new Chunk(m_allocator.get(), m_currentChunkSize)));
149 class Chunk FINAL {
150 WTF_MAKE_NONCOPYABLE(Chunk);
154 Chunk(Allocator* allocator, size_t size) function in class:blink::FINAL::FINAL
164 ~Chunk()
170 // Chunk could not satisfy the allocation.
193 Chunk* m_current;
195 Vector<OwnPtr<Chunk> > m_chunks;
/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_;
/external/llvm/lib/Target/AArch64/
H A DAArch64ExpandPseudoInsts.cpp78 const uint64_t Chunk = getChunk(Imm, FromIdx) << ShiftAmt; local
82 return Imm | Chunk;
124 static bool canUseOrr(uint64_t Chunk, uint64_t &Encoding) {
125 Chunk = (Chunk << 48) | (Chunk << 32) | (Chunk << 16) | Chunk;
127 return AArch64_AM::processLogicalImmediate(Chunk, 64, Encoding);
150 for (CountMap::const_iterator Chunk
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/
H A DSDL_wave.h57 typedef struct Chunk { struct
61 } Chunk; typedef in typeref:struct:Chunk
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Dbignum.h99 typedef uint32_t Chunk; typedef in class:WTF::double_conversion::Bignum
102 static const int kChunkSize = sizeof(Chunk) * 8;
107 static const Chunk kBigitMask = (1 << kBigitSize) - 1;
127 Chunk BigitAt(int index) const;
130 Chunk bigits_buffer_[kBigitCapacity];
133 Vector<Chunk> bigits_;
/external/chromium_org/v8/src/
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/valgrind/main/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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dparser.py409 """Split the code object into a list of `Chunk` objects.
414 Returns a list of `Chunk` objects.
441 chunk = Chunk(bc.offset, bytes_lines_map[bc.offset])
448 chunk = Chunk(bc.offset)
452 chunk = Chunk(bc.offset)
515 chunk = Chunk(penult.offset)
600 """Returns a list of `Chunk` objects for this code and its children.
624 class Chunk(object): class in inherits:object
/external/llvm/lib/Target/ARM/
H A DThumb1RegisterInfo.cpp144 unsigned Chunk = ((1 << NumBits) - 1) * Scale; local
147 unsigned ThisVal = (Bytes > Chunk) ? Chunk : Bytes;
152 Chunk = ((1 << NumBits) - 1) * Scale;
155 NumMIs += Bytes / Chunk;
156 if ((Bytes % Chunk) != 0)
236 unsigned Chunk = (1 << 3) - 1;
237 unsigned ThisVal = (Bytes > Chunk) ? Chunk : Bytes;
252 unsigned Chunk
[all...]
/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.cpp738 const DeclaratorChunk &Chunk = D.getTypeObject(I); local
739 switch (Chunk.Kind) {
755 if (Chunk.Mem.Scope().getScopeRep() &&
756 Chunk.Mem.Scope().getScopeRep()->containsUnexpandedParameterPack())
H A DSemaExprCXX.cpp1062 DeclaratorChunk &Chunk = D.getTypeObject(0); local
1064 return ExprError(Diag(Chunk.Loc, diag::err_new_array_of_auto)
1066 if (Chunk.Arr.hasStatic)
1067 return ExprError(Diag(Chunk.Loc, diag::err_static_illegal_in_new)
1069 if (!Chunk.Arr.NumElts)
1070 return ExprError(Diag(Chunk.Loc, diag::err_array_new_needs_size)
1073 ArraySize = static_cast<Expr*>(Chunk.Arr.NumElts);
H A DSemaType.cpp3115 const DeclaratorChunk &Chunk = D.getTypeObject(I); local
3116 assert(Chunk.Kind == DeclaratorChunk::Function);
3117 if (Chunk.Fun.hasRefQualifier())
3118 RemovalLocs.push_back(Chunk.Fun.getRefQualifierLoc());
3119 if (Chunk.Fun.TypeQuals & Qualifiers::Const)
3120 RemovalLocs.push_back(Chunk.Fun.getConstQualifierLoc());
3121 if (Chunk.Fun.TypeQuals & Qualifiers::Volatile)
3122 RemovalLocs.push_back(Chunk.Fun.getVolatileQualifierLoc());
3124 //if (Chunk.Fun.TypeQuals & Qualifiers::Restrict)
3125 // RemovalLocs.push_back(Chunk
3652 const DeclaratorChunk &Chunk; member in class:__anon18110::DeclaratorLocFiller
3655 DeclaratorLocFiller(ASTContext &Context, const DeclaratorChunk &Chunk) argument
3770 fillAtomicQualLoc(AtomicTypeLoc ATL, const DeclaratorChunk &Chunk) argument
[all...]
H A DSemaDecl.cpp4222 DeclaratorChunk &Chunk = D.getTypeObject(I); local
4227 if (Chunk.Kind != DeclaratorChunk::MemberPointer)
4231 CXXScopeSpec &SS = Chunk.Mem.Scope();
/external/clang/include/clang/Sema/
H A DCodeCompleteConsumer.h382 struct Chunk { struct in class:clang::CodeCompletionString
400 Chunk() : Kind(CK_Text), Text(nullptr) { } function in struct:clang::CodeCompletionString::Chunk
402 explicit Chunk(ChunkKind Kind, const char *Text = "");
405 static Chunk CreateText(const char *Text);
408 static Chunk CreateOptional(CodeCompletionString *Optional);
411 static Chunk CreatePlaceholder(const char *Placeholder);
414 static Chunk CreateInformative(const char *Informative);
417 static Chunk CreateResultType(const char *ResultType);
420 static Chunk CreateCurrentParameter(const char *CurrentParameter);
446 CodeCompletionString(const Chunk *Chunk
[all...]
/external/chromium_org/third_party/libwebp/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/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtcp_packet.h347 struct Chunk { struct in class:webrtc::rtcp::Sdes
362 std::vector<Chunk> chunks_;
/external/clang/lib/Basic/
H A DSourceManager.cpp1237 const __m128i Chunk = *(const __m128i*)NextBuf; local
1238 __m128i Cmp = _mm_or_si128(_mm_cmpeq_epi8(Chunk, CRs),
1239 _mm_cmpeq_epi8(Chunk, LFs));
/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/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/clang/lib/Parse/
H A DParseDecl.cpp5643 const DeclaratorChunk &Chunk = TempDeclarator.getTypeObject(i); local
5645 attrs.set(Chunk.Common.AttrList);
5646 D.AddTypeInfo(Chunk, attrs, SourceLocation());
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1886 int Chunk = API.getNumWords() - 1; local
1889 AP.OutStreamer.EmitIntValue(p[Chunk--], TrailingBytes);
1891 for (; Chunk >= 0; --Chunk)
1892 AP.OutStreamer.EmitIntValue(p[Chunk], sizeof(uint64_t));
1894 unsigned Chunk; local
1895 for (Chunk = 0; Chunk < NumBytes / sizeof(uint64_t); ++Chunk)
1896 AP.OutStreamer.EmitIntValue(p[Chunk], sizeo
[all...]

Completed in 1187 milliseconds