Lines Matching refs:cp
944 unsigned char* cp = outBuf;
947 memcpy(cp, &when, sizeof(int));
948 cp += sizeof(int);
949 memcpy(cp, &logPrio, sizeof(int));
950 cp += sizeof(int);
951 memcpy(cp, &pid, sizeof(int));
952 cp += sizeof(int);
953 memcpy(cp, tag, tagLen);
954 cp += tagLen;
955 memcpy(cp, message, messageLen);
956 cp += messageLen;
958 assert(cp - outBuf == totalLen);