HomeSort by relevance Sort by last modified time
    Searched refs:byteSize (Results 1 - 16 of 16) sorted by null

  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
Exif.java 30 * @param byteSize Recommended parameter declaring the length of the input stream. If you
34 public static int getOrientation(final InputStream inputStream, final long byteSize) {
54 Note: If you do not pass in byteSize parameter, a single large allocation will occur.
57 has(jpeg, byteSize, offset + length - 1)
71 if (has(jpeg, byteSize, 1)) {
81 while (has(jpeg, byteSize, offset + 3) && (jpeg.get(offset++) & 0xFF) == 0xFF) {
103 if (length < 2 || !has(jpeg, byteSize, offset + length - 1)) {
198 private static boolean has(final InputStreamBuffer jpeg, final long byteSize, final int index) {
199 if (byteSize >= 0) {
200 return index < byteSize;
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
ucol_bld.h 43 uint32_t byteSize; uint32_t start; uint32_t limit;
ucol_imp.h 157 * uint32_t byteSize; - size of inverse UCA image in bytes
    [all...]
  /external/icu4c/i18n/
ucol_bld.h 43 uint32_t byteSize; uint32_t start; uint32_t limit;
  /external/chromium_org/third_party/skia/src/animator/
SkMemberInfo.cpp 25 size_t byteSize;
28 byteSize = sizeof(SkColor);
49 byteSize = sizeof(int);
55 byteSize = sizeof(void*);
58 byteSize = sizeof(SkMSec);
61 byteSize = sizeof(SkPoint);
64 byteSize = sizeof(Sk3D_Point);
67 byteSize = sizeof(int32_t);
70 byteSize = sizeof(SkScalar);
74 byteSize = sizeof(SkString); // assume we'll copy by reference, not valu
    [all...]
SkDisplayable.cpp 107 size_t byteSize = elementSize * arrayCount;
108 memcpy(copyArray->begin(), array->begin(), byteSize);
  /external/skia/src/animator/
SkMemberInfo.cpp 25 size_t byteSize;
28 byteSize = sizeof(SkColor);
49 byteSize = sizeof(int);
55 byteSize = sizeof(void*);
58 byteSize = sizeof(SkMSec);
61 byteSize = sizeof(SkPoint);
64 byteSize = sizeof(Sk3D_Point);
67 byteSize = sizeof(int32_t);
70 byteSize = sizeof(SkScalar);
74 byteSize = sizeof(SkString); // assume we'll copy by reference, not valu
    [all...]
SkDisplayable.cpp 107 size_t byteSize = elementSize * arrayCount;
108 memcpy(copyArray->begin(), array->begin(), byteSize);
  /external/icu4c/common/
ucol_data.h 76 uint32_t byteSize;
ucol_swp.cpp 427 header.byteSize=udata_readInt32(ds, inHeader->byteSize);
430 (uint32_t)(length-headerSize)<(header.byteSize=udata_readInt32(ds, inHeader->byteSize)))
441 uprv_memcpy(outBytes, inBytes, header.byteSize);
446 /* read more of the InverseUCATableHeader (the byteSize field was read above) */
464 return headerSize+header.byteSize;
  /external/chromium_org/third_party/icu/source/common/
ucol_swp.cpp 429 header.byteSize=udata_readInt32(ds, inHeader->byteSize);
432 (uint32_t)(length-headerSize)<(header.byteSize=udata_readInt32(ds, inHeader->byteSize)))
443 uprv_memcpy(outBytes, inBytes, header.byteSize);
448 /* read more of the InverseUCATableHeader (the byteSize field was read above) */
466 return headerSize+header.byteSize;
  /packages/apps/UnifiedEmail/src/com/android/bitmap/
DecodeTask.java 123 Trace.beginSection("get bytesize");
124 final long byteSize;
126 byteSize = fd.getLength();
128 byteSize = -1;
140 final int orientation = Exif.getOrientation(in, byteSize);
  /external/svox/pico/lib/
picoos.c 435 void *picoos_allocProtMem(picoos_MemoryManager mm, picoos_objsize_t byteSize)
438 return picopal_mpr_alloc(byteSize);
440 return picoos_allocate(mm, byteSize);
508 picoos_objsize_t byteSize)
515 if (byteSize < this->minContSize) {
516 byteSize = this->minContSize;
518 byteSize = ((byteSize + PICOOS_ALIGN_SIZE - 1) / PICOOS_ALIGN_SIZE)
521 cellSize = byteSize + this->usedCellHdrSize;
    [all...]
picoos.h 164 void * picoos_allocate(picoos_MemoryManager this, picoos_objsize_t byteSize);
174 void *picoos_allocProtMem(picoos_MemoryManager mm, picoos_objsize_t byteSize);
picopr.c 357 static void pr_ALLOCATE (picodata_ProcessingUnit this, pr_MemTypes mType, void * * adr, unsigned int byteSize)
358 /* allocates 'byteSize' bytes in the memery partition given by 'mType' */
364 if ((pr->workMemTop + byteSize) < PR_WORK_MEM_SIZE) {
366 byteSize = ((byteSize + PICOOS_ALIGN_SIZE - 1) / PICOOS_ALIGN_SIZE) * PICOOS_ALIGN_SIZE;
367 pr->workMemTop += byteSize;
369 PICODBG_INFO(("pr_WorkMem: +%u, tot:%i of %i", byteSize, pr->workMemTop, PR_WORK_MEM_SIZE));
387 (*adr) = picoos_allocate(pr->dynMemMM, byteSize);
    [all...]
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/
FloatToFixed.java 54 private static final float byteSize = Byte.MAX_VALUE - Byte.MIN_VALUE;
303 dataTypeSize = byteSize;

Completed in 728 milliseconds