Lines Matching refs:src_lo
854 sal_uInt8 const * src_lo = static_cast<sal_uInt8 const*>(pBuffer); in pokeAt() local
855 if (!(src_lo != 0)) in pokeAt()
858 sal_uInt8 const * src_hi = src_lo + nBytes; in pokeAt()
859 if (!(src_lo < src_hi)) in pokeAt()
860 return (src_lo > src_hi) ? store_E_InvalidParameter : store_E_None; in pokeAt()
866 return pokeAt_Impl (nOffset, src_lo, (src_hi - src_lo)); in pokeAt()
1272 sal_uInt8 const * src_lo = m_pData + nOffset; in peekAt_Impl() local
1273 if (!(src_lo <= m_pData + m_nSize)) in peekAt_Impl()
1276 sal_uInt8 const * src_hi = src_lo + nBytes; in peekAt_Impl()
1281 memcpy (pBuffer, src_lo, (src_hi - src_lo)); in peekAt_Impl()
1287 sal_uInt8 const * src_lo = static_cast<sal_uInt8 const*>(pBuffer); in pokeAt_Impl() local
1288 if (!(src_lo != 0)) in pokeAt_Impl()
1291 sal_uInt8 const * src_hi = src_lo + nBytes; in pokeAt_Impl()
1292 if (!(src_lo <= src_hi)) in pokeAt_Impl()
1317 memcpy (dst_lo, src_lo, (src_hi - src_lo)); in pokeAt_Impl()