HomeSort by relevance Sort by last modified time
    Searched refs:m_offset (Results 1 - 25 of 35) sorted by null

1 2

  /external/opencv/otherlibs/highgui/
grfmt_bmp.h 73 int m_offset; member in class:GrFmtBmpReader
grfmt_pxm.h 66 int m_offset; member in class:GrFmtPxMReader
grfmt_sunras.h 79 int m_offset; member in class:GrFmtSunRasterReader
grfmt_sunras.cpp 78 m_offset = -1;
142 m_offset = m_strm.GetPos();
144 assert( m_offset == 32 + m_maplength );
155 m_offset = m_strm.GetPos();
157 assert( m_offset == 32 + m_maplength );
165 m_offset = -1;
187 if( m_offset < 0 || !m_strm.IsOpened())
201 m_strm.SetPos( m_offset );
grfmt_pxm.cpp 126 m_offset = -1;
179 m_offset = m_strm.GetPos();
188 m_offset = -1;
210 if( m_offset < 0 || !m_strm.IsOpened())
232 m_strm.SetPos( m_offset );
grfmt_jpeg.h 121 int m_offset; // offset of first scan member in class:GrFmtJpegReader
grfmt_bmp.cpp 76 m_offset = -1;
102 m_offset = m_strm.GetDWord();
179 m_offset = -1;
201 if( m_offset < 0 || !m_strm.IsOpened())
221 m_strm.SetPos( m_offset );
  /frameworks/av/media/libstagefright/codecs/avcdec/
SoftAVCDec.h 138 #define DUMP_TO_FILE(m_filename, m_buf, m_size, m_offset)\
141 if (fp != NULL && m_buf != NULL && m_offset == 0) { \
163 #define DUMP_TO_FILE(m_filename, m_buf, m_size, m_offset)
  /external/gemmlowp/meta/
legacy_multi_thread_common.h 31 std::int32_t m_offset; member in struct:gemmlowp::meta::internal::TaskRect
36 TaskRect(std::int32_t m_offset, std::int32_t m, std::int32_t n_offset,
38 : m_offset(m_offset), m(m), n_offset(n_offset), n(n) {}
65 const IN_TYPE* task_lhs = lhs + task_rect.m_offset * k;
68 result + task_rect.m_offset * result_stride + task_rect.n_offset;
  /external/deqp/external/vulkancts/modules/vulkan/ssbo/
vktSSBOLayoutCase.hpp 71 deUint32 getOffset (void) const { return m_offset; }
73 void setOffset (deUint32 offset) { m_offset = offset; }
79 deUint32 m_offset; member in class:vkt::ssbo::BufferVar
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
arena.h 390 size_t offset = AlignUp(m_offset, align);
395 m_offset = offset + size;
414 m_offset = ARENA_BLOCK_ALIGN;
452 m_offset = ARENA_BLOCK_ALIGN;
476 return (m_pCurBlock == nullptr) || (m_offset == ARENA_BLOCK_ALIGN && m_pCurBlock->pNext == nullptr);
482 size_t m_offset = ARENA_BLOCK_ALIGN;
  /external/deqp/external/vulkancts/framework/vulkan/
vkMemUtil.hpp 60 VkDeviceSize getOffset (void) const { return m_offset; }
70 const VkDeviceSize m_offset; member in class:vk::Allocation
vkMemUtil.cpp 93 , m_offset (offset)
  /external/deqp/modules/glshared/
glsTextureBufferCase.hpp 88 const size_t m_offset; member in class:deqp::gls::TextureBufferCase
glsVertexArrayTests.cpp 462 , m_offset (0)
541 m_offset = offset;
569 m_ctx.vertexAttribPointer(loc, m_componentCount, inputTypeToGL(m_inputType), m_normalize, m_stride, (GLvoid*)((GLintptr)m_offset));
575 m_ctx.vertexAttribIPointer(loc, m_componentCount, inputTypeToGL(m_inputType), m_stride, (GLvoid*)((GLintptr)m_offset));
586 m_ctx.vertexAttribPointer(loc, m_componentCount, inputTypeToGL(m_inputType), m_normalize, m_stride, (GLvoid*)((GLintptr)m_offset));
604 m_ctx.vertexAttribPointer(loc, m_componentCount, inputTypeToGL(m_inputType), m_normalize, m_stride, m_data + m_offset);
610 m_ctx.vertexAttribIPointer(loc, m_componentCount, inputTypeToGL(m_inputType), m_stride, m_data + m_offset);
621 m_ctx.vertexAttribPointer(loc, m_componentCount, inputTypeToGL(m_inputType), m_normalize, m_stride, m_data + m_offset);
    [all...]
  /external/v8/src/inspector/
v8-heap-profiler-agent-impl.cc 54 : m_offset(0), m_strings(10000), m_session(session) {}
63 if (m_offset + length + 1 >= m_strings.size()) return "";
66 m_strings[m_offset + i] = ch > 0xff ? '?' : static_cast<char>(ch);
68 m_strings[m_offset + length] = '\0';
69 char* result = &*m_strings.begin() + m_offset;
70 m_offset += length + 1;
75 size_t m_offset; member in class:v8_inspector::__anon36028::final
  /external/deqp/external/vulkancts/modules/vulkan/compute/
vktComputeIndirectComputeDispatchTests.cpp 89 : m_offset (offset)
92 deIntptr m_offset; member in struct:vkt::compute::__anon16541::DispatchCommand
187 DE_ASSERT(cmdIter->m_offset >= 0);
188 DE_ASSERT(cmdIter->m_offset % sizeof(deUint32) == 0);
189 DE_ASSERT(cmdIter->m_offset + INDIRECT_COMMAND_OFFSET <= (deIntptr)m_bufferSize);
191 deUint32* const dstPtr = (deUint32*)&indirectDataPtr[cmdIter->m_offset];
213 << cmdNdx << ": " << "offset = " << m_dispatchCommands[cmdNdx].m_offset << ", numWorkGroups = " << m_dispatchCommands[cmdNdx].m_numWorkGroups
305 m_device_interface.cmdDispatchIndirect(*cmdBuffer, *indirectBuffer, m_dispatchCommands[cmdNdx].m_offset);
555 const deUint32 offs = (deUint32)(cmdIter->m_offset / sizeof(deUint32));
556 DE_ASSERT((size_t)offs * sizeof(deUint32) == (size_t)cmdIter->m_offset);
    [all...]
  /external/deqp/modules/gles31/functional/
es31fTextureSpecificationTests.cpp 420 , m_offset (offset)
440 data.resize(slicePitch*(m_depth+m_skipImages) + m_offset);
447 tcu::fillWithGrid(tcu::PixelBufferAccess(m_texFormat, m_size, m_size, m_depth, rowPitch, slicePitch, &data[0] + m_skipImages*slicePitch + m_skipRows*rowPitch + m_skipPixels*pixelSize + m_offset), 4, colorA, colorB);
463 glTexImage3D(GL_TEXTURE_CUBE_MAP_ARRAY, 0, m_internalFormat, m_size, m_size, m_depth, 0, transferFmt.format, transferFmt.dataType, (const void*)(deUintptr)m_offset);
473 int m_offset; member in class:deqp::gles31::Functional::TexImageCubeArrayBufferCase
513 , m_offset (offset)
553 data.resize(slicePitch*(m_depth+m_skipImages) + m_offset);
554 tcu::fillWithGrid(tcu::PixelBufferAccess(m_texFormat, m_subW, m_subH, m_subD, rowPitch, slicePitch, &data[0] + m_skipImages*slicePitch + m_skipRows*rowPitch + m_skipPixels*pixelSize + m_offset), 4, colorA, colorB);
567 glTexSubImage3D(GL_TEXTURE_CUBE_MAP_ARRAY, 0, m_subX, m_subY, m_subZ, m_subW, m_subH, m_subD, transferFmt.format, transferFmt.dataType, (const void*)(deIntptr)m_offset);
583 int m_offset; member in class:deqp::gles31::Functional::TexSubImageCubeArrayBufferCase
    [all...]
  /external/pdfium/core/fxcodec/codec/
ccodec_tiffmodule.cpp 37 uint32_t offset() const { return m_offset; }
38 void set_offset(uint32_t offset) { m_offset = offset; }
60 uint32_t m_offset; member in class:CCodec_TiffContext
219 : m_io_in(nullptr), m_offset(0), m_tif_ctx(nullptr) {}
  /external/deqp/framework/opengl/
gluTexture.hpp 288 size_t getOffset (void) const { return m_offset; }
304 size_t m_offset; member in class:glu::TextureBuffer
gluTexture.cpp 799 , m_offset (0)
810 , m_offset (0)
847 m_offset = offset;
867 gl.texBufferRange(GL_TEXTURE_BUFFER, m_format, m_glBuffer, (glw::GLintptr)m_offset, (glw::GLsizeiptr)m_size);
894 (deUint8*)m_refBuffer.getPtr() + m_offset);
  /external/deqp/modules/gles3/functional/
es3fTextureSpecificationTests.cpp 2357 int m_offset; member in class:deqp::gles3::Functional::TexImage2DBufferCase
2433 int m_offset; member in class:deqp::gles3::Functional::TexImageCubeBufferCase
2515 int m_offset; member in class:deqp::gles3::Functional::TexImage2DArrayBufferCase
2597 int m_offset; member in class:deqp::gles3::Functional::TexImage3DBufferCase
2686 int m_offset; member in class:deqp::gles3::Functional::TexSubImage2DBufferCase
2787 int m_offset; member in class:deqp::gles3::Functional::TexSubImageCubeBufferCase
2898 int m_offset; member in class:deqp::gles3::Functional::TexSubImage2DArrayBufferCase
3009 int m_offset; member in class:deqp::gles3::Functional::TexSubImage3DBufferCase
    [all...]
  /external/deqp/modules/gles31/stress/
es31sVertexAttributeBindingTests.cpp 523 const int m_offset; member in class:deqp::gles31::Stress::__anon17651::BindVertexBufferCase
531 , m_offset (offset)
593 gl.glBindVertexBuffer(0, m_buffer, m_offset, int(sizeof(tcu::Vec4)));
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorChipping.h 89 : m_xpr(expr), m_offset(offset), m_dim(dim) {
93 const Index offset() const { return m_offset; }
122 const Index m_offset; member in class:Eigen::TensorChippingOp
  /external/eigen/unsupported/Eigen/src/SparseExtra/
BlockSparseMatrix.h     [all...]

Completed in 1279 milliseconds

1 2