HomeSort by relevance Sort by last modified time
    Searched refs:Chunk (Results 26 - 50 of 122) sorted by null

12 3 4 5

  /external/llvm/lib/Target/AArch64/
AArch64ExpandPseudoInsts.cpp 75 /// \brief Helper function which extracts the specified 16-bit chunk from a
78 assert(ChunkIdx < 4 && "Out of range chunk index specified!");
83 /// \brief Helper function which replicates a 16-bit chunk within a 64-bit
86 assert((FromIdx < 4) && (ToIdx < 4) && "Out of range chunk index specified!");
89 // Replicate the source chunk to the destination position.
90 const uint64_t Chunk = getChunk(Imm, FromIdx) << ShiftAmt;
91 // Clear the destination chunk.
93 // Insert the replicated chunk.
94 return Imm | Chunk;
103 assert(ChunkIdx < 4 && "Out of range chunk index specified!")
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/
NinePatchedImage.java 81 private final List<Chunk> mChunkBin = new ArrayList<Chunk>(CHUNK_BIN_SIZE);
89 private Chunk[][] mPatchChunks = null;
143 private Chunk getChunk() {
145 Chunk chunk = mChunkBin.remove(0); local
146 chunk.init();
147 return chunk;
149 return new Chunk();
152 private static final void recycleChunks(Chunk[][] patchChunks, List<Chunk> bin)
647 Chunk chunk = chunks[y][x]; local
765 Chunk chunk = mPatchChunks[yPos][xPos]; local
804 public Chunk chunk = null; field in class:NinePatchedImage.Projection
    [all...]
  /frameworks/compile/mclinker/include/mcld/Script/
Operand.h 58 friend class Chunk<SymOperand, MCLD_SYMBOLS_PER_INPUT>;
93 friend class Chunk<IntOperand, MCLD_SYMBOLS_PER_INPUT>;
124 friend class Chunk<SectOperand, MCLD_SECTIONS_PER_INPUT>;
157 friend class Chunk<SectDescOperand, MCLD_SECTIONS_PER_INPUT>;
192 friend class Chunk<FragOperand, MCLD_SYMBOLS_PER_INPUT>;
RpnExpr.h 34 friend class Chunk<RpnExpr, MCLD_SYMBOLS_PER_INPUT>;
StringList.h 34 friend class Chunk<StringList, MCLD_SYMBOLS_PER_INPUT>;
  /frameworks/base/libs/hwui/
DisplayList.h 135 struct Chunk {
144 // whether children with non-zero Z in the chunk should be reordered
157 const LsaVector<Chunk>& getChunks() const { return chunks; }
189 LsaVector<Chunk> chunks;
  /frameworks/compile/mclinker/include/mcld/Fragment/
FragmentRef.h 76 friend class Chunk<FragmentRef, MCLD_SECTIONS_PER_INPUT>;
Relocation.h 28 friend class Chunk<Relocation, MCLD_RELOCATIONS_PER_INPUT>;
  /frameworks/base/core/java/android/util/jar/
StrictJarManifest.java 50 static final class Chunk {
54 Chunk(int start, int end) {
60 private HashMap<String, Chunk> chunks;
107 chunks = new HashMap<String, Chunk>();
232 Chunk getChunk(String name) {
StrictJarManifestReader.java 58 public void readEntries(Map<String, Attributes> entries, Map<String, StrictJarManifest.Chunk> chunks) throws IOException {
85 chunks.put(entryNameValue, new StrictJarManifest.Chunk(mark, pos));
  /frameworks/base/tools/aapt2/unflatten/
ResChunkPullParser.cpp 47 mLastError = "chunk is past the end of the document";
53 mLastError = "chunk has too small header";
58 mLastError = "chunk's total size is smaller than header";
62 mLastError = "chunk's data extends past the end of the document";
66 return (mEvent = Event::Chunk);
ResChunkPullParser.h 32 * and size. The pull parser will verify that the chunk's size
34 * over each chunk in the given block of data.
37 * pointing to the data portion of a chunk.
46 Chunk,
80 inline static const T* convertTo(const android::ResChunk_header* chunk) {
81 if (util::deviceToHost16(chunk->headerSize) < sizeof(T)) {
84 return reinterpret_cast<const T*>(chunk);
87 inline static const uint8_t* getChunkData(const android::ResChunk_header* chunk) {
88 return reinterpret_cast<const uint8_t*>(chunk) + util::deviceToHost16(chunk->headerSize)
    [all...]
  /external/clang/lib/Sema/
SemaTemplateVariadic.cpp 748 const DeclaratorChunk &Chunk = D.getTypeObject(I);
749 switch (Chunk.Kind) {
758 if (Chunk.Arr.NumElts &&
759 Chunk.Arr.NumElts->containsUnexpandedParameterPack())
763 for (unsigned i = 0, e = Chunk.Fun.NumParams; i != e; ++i) {
764 ParmVarDecl *Param = cast<ParmVarDecl>(Chunk.Fun.Params[i].Param);
770 if (Chunk.Fun.getExceptionSpecType() == EST_Dynamic) {
771 for (unsigned i = 0; i != Chunk.Fun.NumExceptions; ++i) {
772 if (Chunk.Fun.Exceptions[i]
777 } else if (Chunk.Fun.getExceptionSpecType() == EST_ComputedNoexcept &
    [all...]
  /external/opencv3/3rdparty/libwebp/demux/
demux.c 37 size_t riff_end_; // riff chunk end location, can be > end_.
59 typedef struct Chunk {
61 struct Chunk* next_;
62 } Chunk;
75 Chunk* chunks_; // non-image chunks
131 // Return true if 'size' exceeds the end of the RIFF chunk.
177 // Secondary chunk parsing
179 static void AddChunk(WebPDemuxer* const dmux, Chunk* const chunk) {
180 Chunk** c = &dmux->chunks_
385 Chunk* const chunk = (Chunk*)calloc(1, sizeof(*chunk)); local
910 const Chunk* const chunk = GetChunk(dmux, fourcc, chunk_num); local
    [all...]
  /external/webp/src/demux/
demux.c 33 size_t riff_end_; // riff chunk end location, can be > end_.
56 typedef struct Chunk {
58 struct Chunk* next_;
59 } Chunk;
72 Chunk* chunks_; // non-image chunks
73 Chunk** chunks_tail_;
129 // Return true if 'size' exceeds the end of the RIFF chunk.
175 // Secondary chunk parsing
177 static void AddChunk(WebPDemuxer* const dmux, Chunk* const chunk) {
353 Chunk* const chunk = (Chunk*)WebPSafeCalloc(1ULL, sizeof(*chunk)); local
925 const Chunk* const chunk = GetChunk(dmux, fourcc, chunk_num); local
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
LDSymbol.h 126 friend class Chunk<LDSymbol, MCLD_SYMBOLS_PER_INPUT>;
RelocData.h 38 friend class Chunk<RelocData, MCLD_SECTIONS_PER_INPUT>;
SectionData.h 30 friend class Chunk<SectionData, MCLD_SECTIONS_PER_INPUT>;
ELFSegment.h 35 friend class Chunk<ELFSegment, MCLD_SEGMENTS_PER_OUTPUT>;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/ui/
ImageViewer.java 21 import com.android.ide.eclipse.adt.internal.editors.draw9patch.graphics.NinePatchedImage.Chunk;
94 private Chunk[][] mChunks = null;
95 private Chunk[][] mBadChunks = null;
651 Chunk c = mChunks[yPos][xPos];
653 if (c.type == Chunk.TYPE_FIXED) {
655 } else if (c.type == Chunk.TYPE_HORIZONTAL) {
657 } else if (c.type == Chunk.TYPE_VERTICAL) {
659 } else if (c.type == Chunk.TYPE_HORIZONTAL + Chunk.TYPE_VERTICAL) {
685 Chunk c = mBadChunks[yPos][xPos]
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtcp_packet.h 208 // chunk | SSRC/CSRC_1 |
213 // chunk | SSRC/CSRC_2 |
235 struct Chunk {
252 std::vector<Chunk> chunks_;
  /external/ceres-solver/internal/ceres/
schur_eliminator_impl.h 32 // Chunk::start ?
109 // the way also compute the amount of space each chunk will need
117 chunks_.push_back(Chunk());
118 Chunk& chunk = chunks_.back(); local
119 chunk.size = 0;
120 chunk.start = r;
124 // Add to the chunk until the first block in the row is
125 // different than the one in the first row for the chunk.
126 while (r + chunk.size < num_row_blocks)
149 const Chunk& chunk = chunks_.back(); local
230 const Chunk& chunk = chunks_[i]; local
312 const Chunk& chunk = chunks_[i]; local
    [all...]
  /external/tinyxml2/
tinyxml2.h 268 block->chunk[i].next = &block->chunk[i+1];
270 block->chunk[COUNT-1].next = 0;
271 root = block->chunk;
284 Chunk* chunk = (Chunk*)mem; local
285 memset( chunk, 0xfe, sizeof(Chunk) );
286 chunk->next = root;
301 Chunk chunk[COUNT]; member in struct:tinyxml2::MemPoolT::Block
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
srec.c 126 /* Default size for a CHUNK. */
132 unsigned int Chunk = DEFAULT_CHUNK;
1037 if (Chunk == 0)
1038 Chunk = 1;
1039 else if (Chunk > MAXCHUNK - tdata->type - 2)
1040 Chunk = MAXCHUNK - tdata->type - 2;
1047 if (octets_this_chunk > Chunk)
1048 octets_this_chunk = Chunk;
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
wave.py 92 from chunk import Chunk
118 _fmt_chunk_read -- 1 iff the FMT chunk has been read
121 _data_chunk -- instantiation of a chunk class for the DATA chunk
128 self._file = Chunk(file, bigendian = 0)
138 chunk = Chunk(self._file, bigendian = 0)
141 chunkname = chunk.getname()
143 self._read_fmt_chunk(chunk)
    [all...]

Completed in 338 milliseconds

12 3 4 5