Lines Matching refs:len1
1517 uint32 len1 = Length (); in EndsWith() local
1521 if (len1 < len2) in EndsWith()
1526 const char *t = Get () + (len1 - len2); in EndsWith()
1563 uint32 len1 = Length (); in Contains() local
1567 if (len1 < len2) in Contains()
1572 uint32 offsets = len1 - len2; in Contains()
1628 uint32 len1 = Length (); in Replace() local
1652 uint32 extra = len1 - match_offset - len2 + 1; // + 1 for NULL termination in Replace()
1667 SafeUint32Add (SafeUint32Add (len1 - len2, len3), 1)); in Replace()
1687 uint32 extra = len1 - match_offset - len2 + 1; // + 1 for NULL termination in Replace()
1734 uint32 len1 = Length (); in Append() local
1736 dng_memory_data temp (SafeUint32Add (SafeUint32Add (len1, len2), 1)); in Append()
1740 if (len1) in Append()
1742 memcpy (buffer, Get (), len1); in Append()
1745 memcpy (buffer + len1, s, len2 + 1); in Append()