Lines Matching defs:pos
68 UInt32 pos = 0;
73 if (pos + signatureEndSize > numBytesInBuffer)
75 if (memcmp(buffer + pos, endID, signatureEndSize) == 0)
77 const Byte b = buffer[pos];
81 pos++;
85 if (pos + signatureStartSize > numBytesInBuffer)
87 if (memcmp(buffer + pos, startID, signatureStartSize) == 0)
90 pos += signatureStartSize;
93 pos++;
96 numBytesPrev = numBytesInBuffer - pos;
97 posTotal += pos;
98 memmove(buffer, buffer + pos, numBytesPrev);
122 const int pos = message.Find(L"%1");
123 if (pos >= 0)
125 message.Delete((unsigned)pos, 2);
126 message.Insert((unsigned)pos, name);