HomeSort by relevance Sort by last modified time
    Searched full:content_size (Results 1 - 13 of 13) sorted by null

  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
TiledTexture.java 40 private static final int CONTENT_SIZE = 254;
42 private static final int TILE_SIZE = CONTENT_SIZE + 2 * BORDER_SIZE;
148 if (r < CONTENT_SIZE) sCanvas.drawLine(r, 0, r, TILE_SIZE, sPaint);
149 if (b < CONTENT_SIZE) sCanvas.drawLine(0, b, TILE_SIZE, b, sPaint);
207 for (int x = 0, w = mWidth; x < w; x += CONTENT_SIZE) {
208 for (int y = 0, h = mHeight; y < h; y += CONTENT_SIZE) {
214 Math.min(CONTENT_SIZE, mWidth - x),
215 Math.min(CONTENT_SIZE, mHeight - y));
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
DownloadEntry.java 29 public static final String CONTENT_SIZE = "_size";
DownloadCache.java 55 Columns.ID, Columns.DATA, Columns.CONTENT_URL, Columns.CONTENT_SIZE};
66 {String.format("sum(%s)", Columns.CONTENT_SIZE)};
197 values.put(Columns.CONTENT_SIZE, size);
  /test/vts/utils/python/archive/
archive_parser.py 110 content_size = int(size)
115 content = self.ReadBytes(content_size)
  /external/skia/experimental/Networking/
SkSockets.cpp 140 if (h.bytes > CONTENT_SIZE || h.bytes <= 0) {
188 h.done = (size - bytesWrittenInTransfer <= CONTENT_SIZE);
189 h.bytes = (h.done) ? size - bytesWrittenInTransfer : CONTENT_SIZE;
SkSockets.h 18 #define CONTENT_SIZE 1004
  /external/skqp/experimental/Networking/
SkSockets.cpp 140 if (h.bytes > CONTENT_SIZE || h.bytes <= 0) {
188 h.done = (size - bytesWrittenInTransfer <= CONTENT_SIZE);
189 h.bytes = (h.done) ? size - bytesWrittenInTransfer : CONTENT_SIZE;
SkSockets.h 18 #define CONTENT_SIZE 1004
  /external/v8/src/
perf-jit.cc 358 int content_size = static_cast<int>(sizeof(unwinding_info_header) + local
360 int padding_size = RoundUp(content_size, 8) - content_size;
361 unwinding_info_header.size_ = content_size + padding_size;
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp2/parser/
viddec_mpeg2_frame_attr.c 15 MPEG2_FA_DEB("Content_Size=%dx%d\n", attr->cont_size.width,
  /toolchain/binutils/binutils-2.27/bfd/
versados.c 60 bfd_size_type content_size; /* The size of the contents buffer. */ member in struct:esdid
411 else if (contents && dst_idx < esdid->content_size - sizeinwords * 2)
454 if (esdid->section && contents && dst_idx < esdid->content_size - 1)
477 esdid->content_size = size;
701 || (bfd_size_type) offset > esdid->content_size
702 || offset + count > esdid->content_size)
ChangeLog-2015     [all...]
  /external/v8/src/snapshot/
serializer.cc 392 int content_size; local
401 content_size = length * kCharSize;
408 content_size = length * kShortSize;
431 sink_->PutRaw(resource, content_size, "StringContent");
435 int padding_size = allocation_size - SeqString::kHeaderSize - content_size;

Completed in 471 milliseconds