HomeSort by relevance Sort by last modified time
    Searched refs:m_offset (Results 51 - 75 of 96) sorted by null

1 23 4

  /external/chromium_org/third_party/WebKit/Source/core/frame/
PinchViewport.cpp 84 setLocation(m_offset);
110 setLocation(m_offset);
117 return FloatRect(m_offset, scaledSize);
155 if (clampedOffset == m_offset)
158 m_offset = clampedOffset;
169 setLocation(m_offset + delta);
PinchViewport.h 119 virtual IntPoint scrollPosition() const OVERRIDE { return flooredIntPoint(m_offset); }
158 FloatPoint m_offset; member in class:WebCore::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableValueKeyframe.cpp 13 : Keyframe(copyFrom.m_offset, copyFrom.m_composite, copyFrom.m_easing)
54 ASSERT(!isNull(m_offset));
StringKeyframe.cpp 19 : Keyframe(copyFrom.m_offset, copyFrom.m_composite, copyFrom.m_easing)
65 ASSERT(!isNull(m_offset));
  /external/lldb/source/Core/
Address.cpp 218 m_offset (abs_addr)
224 m_offset (LLDB_INVALID_ADDRESS)
235 m_offset = rhs.m_offset.load();
250 m_offset = file_addr - section_sp->GetFileAddress();
254 m_offset = file_addr;
282 return sect_file_addr + m_offset;
285 return m_offset;
295 return m_offset;
306 return sect_load_addr + m_offset;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
FloatingObjects.cpp 110 , m_offset(offset)
121 LayoutUnit offset() const { return m_offset; }
129 LayoutUnit m_offset; member in class:WebCore::ComputeFloatOffsetAdapter
443 if (logicalRight > m_offset) {
444 m_offset = logicalRight;
454 if (logicalLeft < m_offset) {
455 m_offset = logicalLeft;
505 if (logicalRight > m_offset) {
506 m_offset = logicalRight;
524 if (logicalLeft < m_offset) {
    [all...]
RenderLayerRepainter.cpp 78 LayoutPoint oldOffset = m_offset;
89 m_renderer.invalidatePaintAfterLayoutIfNeeded(repaintContainer, m_renderer.selfNeedsLayout(), oldRepaintRect, oldOffset, &m_repaintRect, &m_offset);
119 m_offset = RenderLayer::positionFromPaintInvalidationContainer(&m_renderer, repaintContainer);
  /external/deqp/modules/glshared/
glsTextureBufferCase.hpp 88 const size_t m_offset; member in class:deqp::gls::TextureBufferCase
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugInfoEntry.h 111 m_offset (DW_INVALID_OFFSET),
123 m_offset = DW_INVALID_OFFSET;
337 return m_offset;
343 m_offset = offset;
447 dw_offset_t m_offset; // Offset within the .debug_info of the start of this entry member in class:DWARFDebugInfoEntry
DWARFCompileUnit.cpp 45 m_offset (DW_INVALID_OFFSET),
59 m_offset = DW_INVALID_OFFSET;
76 m_offset = *offset_ptr;
99 *offset_ptr = m_offset;
111 m_offset = offset;
166 m_offset,
316 bool valid_offset = debug_info.ValidOffset(m_offset);
325 s->Printf(" 0x%8.8x: OK\n", m_offset);
330 s->Printf(" 0x%8.8x: ", m_offset);
332 m_dwarf2Data->get_debug_info_data().Dump (s, m_offset, lldb::eFormatHex, 1, Size(), 32, LLDB_INVALID_ADDRESS, 0, 0)
    [all...]
DWARFDebugAbbrev.cpp 36 m_offset = begin_offset;
  /external/opencv/otherlibs/highgui/
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 );
  /external/lldb/source/Expression/
Materializer.cpp 153 const lldb::addr_t load_addr = process_address + m_offset;
203 const lldb::addr_t load_addr = process_address + m_offset;
208 (uint64_t)process_address + m_offset,
328 const lldb::addr_t load_addr = process_address + m_offset;
425 const lldb::addr_t load_addr = process_address + m_offset;
551 const lldb::addr_t load_addr = process_address + m_offset;
615 const lldb::addr_t load_addr = process_address + m_offset;
739 const lldb::addr_t load_addr = process_address + m_offset;
797 const lldb::addr_t load_addr = process_address + m_offset;
    [all...]
  /external/lldb/source/Symbol/
UnwindPlan.cpp 155 m_offset = 0;
191 m_offset(0),
301 if (m_offset != rhs.m_offset || m_cfa_reg_num != rhs.m_cfa_reg_num || m_cfa_offset != rhs.m_cfa_offset)
  /external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
sctp_auth.c 1021 struct mbuf *m, uint32_t m_offset, uint8_t *digest, uint32_t trailer)
1068 while ((m_tmp != NULL) && (m_offset >= (uint32_t) SCTP_BUF_LEN(m_tmp))) {
1069 m_offset -= SCTP_BUF_LEN(m_tmp);
1075 sctp_hmac_update(hmac_algo, &ctx, mtod(m_tmp, uint8_t *) + m_offset,
1076 SCTP_BUF_LEN(m_tmp) - (trailer+m_offset));
1078 sctp_hmac_update(hmac_algo, &ctx, mtod(m_tmp, uint8_t *) + m_offset,
1079 SCTP_BUF_LEN(m_tmp) - m_offset);
1083 m_offset = 0;
1172 uint32_t m_offset, uint8_t *digest)
1199 return (sctp_hmac_m(hmac_algo, key->key, key->keylen, m, m_offset, digest, 0))
    [all...]
sctp_auth.h 180 struct mbuf *m, uint32_t m_offset, uint8_t *digest, uint32_t trailer);
182 struct mbuf *m, uint32_t m_offset, uint8_t *digest);
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SVGSMILElement.h 193 SMILTime offset() const { return m_offset; }
205 SMILTime m_offset; member in class:WebCore::SVGSMILElement::Condition
  /external/chromium_org/third_party/WebKit/Source/platform/text/
TextBreakIteratorICU.cpp 619 , m_offset(0)
630 m_offset = 0;
641 , m_offset(0)
674 if (m_offset >= m_length)
677 m_offset += clusterLengthStartingAt(m_offset);
678 return m_offset;
685 return m_offset;
    [all...]
TextBreakIterator.h 220 unsigned m_offset; member in class:WebCore::NonSharedCharacterBreakIterator
  /external/lldb/include/lldb/Expression/
ClangExpressionVariable.h 161 m_offset (0)
167 off_t m_offset; ///< The offset of the variable in the struct, in bytes member in struct:lldb_private::ClangExpressionVariable::JITVars
  /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/deqp/framework/opengl/
gluTexture.hpp 274 size_t getOffset (void) const { return m_offset; }
293 size_t m_offset; member in class:glu::TextureBuffer
gluTexture.cpp 694 , m_offset (0)
705 , m_offset (0)
743 m_offset = offset;
755 m_refTexture = tcu::PixelBufferAccess(format, de::min<int>((int)maxTextureSize, (int)((m_size != 0 ? m_size : bufferSize) / format.getPixelSize())), 1, 1, &(m_refBuffer[m_offset]));
773 gl.texBufferRange(GL_TEXTURE_BUFFER, m_format, m_glBuffer, (glw::GLintptr)m_offset, (glw::GLsizeiptr)m_size);
814 m_refTexture = tcu::PixelBufferAccess(format, de::min<int>((int)maxTextureSize, (int)((m_size != 0 ? m_size : m_refBuffer.size()) / format.getPixelSize())), 1, 1, &(m_refBuffer[m_offset]));

Completed in 411 milliseconds

1 23 4