Searched refs:indexSize (Results 1 - 20 of 20) sorted by relevance

/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DItemLocationBox.java64 public int indexSize = 0; field in class:ItemLocationBox
88 IsoTypeWriter.writeUInt8(byteBuffer, (baseOffsetSize << 4 | indexSize));
108 indexSize = tmp & 0xf;
142 return indexSize;
145 public void setIndexSize(int indexSize) { argument
146 this.indexSize = indexSize;
305 if ((getVersion() == 1) && indexSize > 0) {
306 extentIndex = IsoTypeReaderVariable.read(in, indexSize);
313 if ((getVersion() == 1) && indexSize >
[all...]
/external/lzma/C/
H A DXzIn.c118 static SRes Xz_ReadIndex(CXzStream *p, ILookInStream *stream, UInt64 indexSize, ISzAlloc *alloc) argument
123 if (indexSize > ((UInt32)1 << 31))
125 size = (size_t)indexSize;
126 if (size != indexSize)
147 UInt64 indexSize; local
202 indexSize = ((UInt64)GetUi32(buf + 4) + 1) << 2;
204 if (pos < indexSize)
207 pos -= indexSize;
209 RINOK(Xz_ReadIndex(p, stream, indexSize, alloc));
H A DXzDec.c506 static Bool Xz_CheckFooter(CXzStreamFlags flags, UInt64 indexSize, const Byte *buf) argument
509 indexSize == (((UInt64)GetUi32(buf + 4) + 1) << 2) &&
672 p->indexSize += num;
708 p->indexSize = 0;
725 p->indexSize += p->indexPreSize;
800 if (p->indexPos < p->indexSize)
802 UInt64 cur = p->indexSize - p->indexPos;
817 p->indexSize++;
825 p->indexSize += 4;
866 if (!Xz_CheckFooter(p->streamFlags, p->indexSize,
[all...]
H A DXz.h208 UInt64 indexSize; member in struct:__anon14173
H A DXzEnc.c119 UInt32 indexSize = (UInt32)((globalPos >> 2) - 1); local
120 SetUi32(buf + 4, indexSize);
/external/pdfium/core/fpdftext/
H A Dcpdf_textpagefind.cpp53 int indexSize = pdfium::CollectionSize<int>(m_CharIndex); local
56 if (indexSize % 2) {
59 if (indexSize <= 0)
61 m_CharIndex[indexSize - 1] += 1;
64 if (indexSize % 2) {
65 if (indexSize <= 0)
67 m_CharIndex[indexSize - 1] = i + 1;
73 int indexSize = pdfium::CollectionSize<int>(m_CharIndex); local
74 if (indexSize % 2)
75 m_CharIndex.erase(m_CharIndex.begin() + indexSize
[all...]
H A Dcpdf_textpage.cpp171 int indexSize = pdfium::CollectionSize<int>(m_CharIndex); local
175 if (indexSize % 2) {
178 if (indexSize <= 0)
180 m_CharIndex[indexSize - 1] += 1;
183 if (indexSize % 2) {
184 if (indexSize <= 0)
186 m_CharIndex[indexSize - 1] = i + 1;
192 int indexSize = pdfium::CollectionSize<int>(m_CharIndex); local
193 if (indexSize % 2)
194 m_CharIndex.erase(m_CharIndex.begin() + indexSize
202 int indexSize = pdfium::CollectionSize<int>(m_CharIndex); local
213 int indexSize = pdfium::CollectionSize<int>(m_CharIndex); local
[all...]
/external/swiftshader/src/OpenGL/libGL/
H A DDevice.hpp62 void drawIndexedPrimitive(PrimitiveType type, unsigned int indexOffset, unsigned int primitiveCount, int indexSize);
H A DDevice.cpp318 void Device::drawIndexedPrimitive(PrimitiveType type, unsigned int indexOffset, unsigned int primitiveCount, int indexSize) argument
327 if(indexSize == 4)
341 else if(indexSize == 2)
355 else if(indexSize == 1)
369 else UNREACHABLE(indexSize);
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_render.c428 unsigned indexSize,
453 if (indexSize == 2 && (start & 1) &&
469 offset_dwords = indexSize * start / sizeof(uint32_t);
476 if (indexSize == 4) {
588 unsigned indexSize = r300->index_buffer.index_size; local
604 &indexSize, index_offset, &start, count);
607 if (indexSize == 2 && (start & 1) && indexBuffer) {
620 r300_upload_index_buffer(r300, &indexBuffer, indexSize, &start,
625 r300_upload_index_buffer(r300, &indexBuffer, indexSize,
638 r300_emit_draw_elements(r300, indexBuffer, indexSize,
426 r300_emit_draw_elements(struct r300_context *r300, struct pipe_resource* indexBuffer, unsigned indexSize, unsigned max_index, unsigned mode, unsigned start, unsigned count, uint16_t *imm_indices3) argument
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DGrid.java373 final int indexSize = mIndexBuffer.capacity() * 2;
376 gl11.glBufferData(GL11.GL_ELEMENT_ARRAY_BUFFER, indexSize, mIndexBuffer,
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkBinaryRegistry.cpp357 const deUint32 indexSize = getIndexSize(root); local
359 if (indexSize > 0)
361 dst->resize(indexSize);
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
H A Dfrontend.cpp1168 int indexSize = 0;
1177 indexSize = sizeof(uint32_t);
1181 indexSize = sizeof(uint16_t);
1186 indexSize = sizeof(uint8_t);
1382 fetchInfo.pIndices = (int*)((uint8_t*)fetchInfo.pIndices + KNOB_SIMD_WIDTH * indexSize);
H A Dapi.cpp1223 uint32_t indexSize = 0;
1226 case R32_UINT: indexSize = sizeof(uint32_t); break;
1227 case R16_UINT: indexSize = sizeof(uint16_t); break;
1228 case R8_UINT: indexSize = sizeof(uint8_t); break;
1235 pIB += (uint64_t)indexOffset * (uint64_t)indexSize;
1287 pIB += maxIndicesPerDraw * indexSize;
/external/deqp/modules/glshared/
H A DglsDrawTest.cpp2962 int indexSize = 0; local
2964 indexSize = 1;
2966 indexSize = 2;
2968 indexSize = 4;
2972 if (indexPointerOffset % indexSize != 0)
/external/deqp/external/vulkancts/modules/vulkan/draw/
H A DvktBasicDrawTests.cpp705 const deUint32 indexSize = m_data.params.firstIndex + m_data.params.indexCount; local
708 m_data.indexes = std::vector<deUint32>(indexSize, 0);
/external/robolectric/v3/runtime/
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 404 milliseconds