Searched defs:writeSize (Results 1 - 23 of 23) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DHeaderItem.java44 public int writeSize() { method in class:HeaderItem
62 lastDataSection.writeSize() - dataOff;
H A DItem.java55 public abstract int writeSize(); method in class:Item
H A DMemberIdItem.java46 public int writeSize() { method in class:MemberIdItem
H A DStringDataItem.java38 super(1, writeSize(value));
49 private static int writeSize(CstString value) { method in class:StringDataItem
H A DTypeIdItem.java46 public int writeSize() { method in class:TypeIdItem
H A DProtoIdItem.java105 public int writeSize() { method in class:ProtoIdItem
H A DStringIdItem.java80 public int writeSize() { method in class:StringIdItem
H A DUniformItemSection.java45 public final int writeSize() { method in class:UniformItemSection
54 return sz * items.iterator().next().writeSize();
100 int relativeOffset = ii.getIndex() * ii.writeSize();
H A DAnnotationSetItem.java50 super(ALIGNMENT, writeSize(annotations));
68 private static int writeSize(Annotations annotations) { method in class:AnnotationSetItem
H A DCatchStructs.java182 public int writeSize() { method in class:CatchStructs
H A DOffsettedItem.java32 private int writeSize; field in class:OffsettedItem
67 * @param writeSize {@code >= -1;} the size of this instance when written,
70 public OffsettedItem(int alignment, int writeSize) { argument
73 if (writeSize < -1) {
74 throw new IllegalArgumentException("writeSize < -1");
78 this.writeSize = writeSize;
134 * @param writeSize {@code > 0;} the write size, in bytes
136 public final void setWriteSize(int writeSize) { argument
137 if (writeSize <
154 public final int writeSize() { method in class:OffsettedItem
[all...]
H A DUniformListItem.java56 super(getAlignment(items), writeSize(items));
93 private static int writeSize(List<? extends OffsettedItem> items) { method in class:UniformListItem
99 return (items.size() * first.writeSize()) + getAlignment(items);
167 int size = i.writeSize();
H A DMixedItemSection.java76 private int writeSize; field in class:MixedItemSection
95 this.writeSize = -1;
106 public int writeSize() { method in class:MixedItemSection
108 return writeSize;
135 if (writeSize == -1) {
139 int sz = writeSize;
319 outAt = placedAt + one.writeSize();
326 writeSize = outAt;
355 at += one.writeSize();
358 if (at != writeSize) {
[all...]
H A DSection.java236 public abstract int writeSize(); method in class:Section
H A DClassDefItem.java122 public int writeSize() { method in class:ClassDefItem
/external/deqp/framework/delibs/destream/
H A DdeRingbuffer.c130 deInt32 writeSize = 0; local
140 writeSize = deMin32(ringbuffer->blockSize - ringbuffer->inPos, bufSize - *written);
144 deMemcpy(dst, src, writeSize);
146 ringbuffer->inPos += writeSize;
147 *written += writeSize;
148 ringbuffer->blockUsage[ringbuffer->inBlock] += writeSize;
206 deInt32 writeSize = 0; local
237 writeSize = deMin32(ringbuffer->blockUsage[ringbuffer->outBlock] - ringbuffer->outPos, bufSize - *read);
241 deMemcpy(dst, src, writeSize);
243 ringbuffer->outPos += writeSize;
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkPathRef.cpp244 SkASSERT(buffer->pos() - beforePos == (size_t) this->writeSize());
247 uint32_t SkPathRef::writeSize() const { function in class:SkPathRef
/external/deqp/framework/delibs/decpp/
H A DdeBlockBuffer.cpp143 int writeSize = rnd.getInt(1, de::min(m_numMessages-msgNdx, DE_LENGTH_OF_ARRAY(tmpBuf))); local
144 for (int ndx = 0; ndx < writeSize; ndx++)
147 m_buffer.write(writeSize, &tmpBuf[0]);
/external/skia/src/core/
H A DSkPathRef.cpp244 SkASSERT(buffer->pos() - beforePos == (size_t) this->writeSize());
247 uint32_t SkPathRef::writeSize() const { function in class:SkPathRef
/external/chromium_org/third_party/sqlite/src/src/
H A Dos_unix.c6129 int writeSize = 0; local
6138 writeSize = PROXY_PATHINDEX + strlen(&writeBuffer[PROXY_PATHINDEX]);
6139 robust_ftruncate(conchFile->h, writeSize);
6140 rc = unixWrite((sqlite3_file *)conchFile, writeBuffer, writeSize, 0);
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c30270 int writeSize = 0; local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c31131 int writeSize = 0; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c31151 int writeSize = 0; local
[all...]

Completed in 1498 milliseconds