Lines Matching refs:bp

40 	u_int8_t *bp;  local
58 bp = logrec.data;
59 memcpy(bp, &rectype, sizeof(rectype));
60 bp += sizeof(rectype);
61 memcpy(bp, &txn_num, sizeof(txn_num));
62 bp += sizeof(txn_num);
63 memcpy(bp, lsnp, sizeof(DB_LSN));
64 bp += sizeof(DB_LSN);
65 memcpy(bp, &opcode, sizeof(opcode));
66 bp += sizeof(opcode);
69 memcpy(bp, &zero, sizeof(u_int32_t));
70 bp += sizeof(u_int32_t);
72 memcpy(bp, &name->size, sizeof(name->size));
73 bp += sizeof(name->size);
74 memcpy(bp, name->data, name->size);
75 bp += name->size;
79 memcpy(bp, &zero, sizeof(u_int32_t));
80 bp += sizeof(u_int32_t);
82 memcpy(bp, &uid->size, sizeof(uid->size));
83 bp += sizeof(uid->size);
84 memcpy(bp, uid->data, uid->size);
85 bp += uid->size;
87 memcpy(bp, &id, sizeof(id));
88 bp += sizeof(id);
89 memcpy(bp, &ftype, sizeof(ftype));
90 bp += sizeof(ftype);
92 if ((u_int32_t)(bp - (u_int8_t *)logrec.data) != logrec.size)
169 u_int8_t *bp; local
177 bp = recbuf;
178 memcpy(&argp->type, bp, sizeof(argp->type));
179 bp += sizeof(argp->type);
180 memcpy(&argp->txnid->txnid, bp, sizeof(argp->txnid->txnid));
181 bp += sizeof(argp->txnid->txnid);
182 memcpy(&argp->prev_lsn, bp, sizeof(DB_LSN));
183 bp += sizeof(DB_LSN);
184 memcpy(&argp->opcode, bp, sizeof(argp->opcode));
185 bp += sizeof(argp->opcode);
186 memcpy(&argp->name.size, bp, sizeof(u_int32_t));
187 bp += sizeof(u_int32_t);
188 argp->name.data = bp;
189 bp += argp->name.size;
190 memcpy(&argp->uid.size, bp, sizeof(u_int32_t));
191 bp += sizeof(u_int32_t);
192 argp->uid.data = bp;
193 bp += argp->uid.size;
194 memcpy(&argp->id, bp, sizeof(argp->id));
195 bp += sizeof(argp->id);
196 memcpy(&argp->ftype, bp, sizeof(argp->ftype));
197 bp += sizeof(argp->ftype);