Lines Matching refs:space
1001 * Sometimes the end of record is free space.
1008 printf("* Reaching free space at end of block %d\n",
1012 printf("*** Inconsistency : blocks skipped after free space\n");
1019 printf("* Skipping over free space\n");
1037 /* There were not enough space in the last skipped block */
1042 /* Not an error : just no space */
1043 printf("No minimal record space\n");
1091 * on current one, or it ends in such as there is no space for an
1164 /* No luck if there is not enough space in this record */
2462 u32 space;
2472 space = blocksz - k;
2474 if ((space >= LOG_RECORD_HEAD_SZ)
2475 && (size > space)) {
2477 if (size <= (space + nextspace)) {
2479 memcpy(fullrec,&data[k],space);
2480 memcpy(&fullrec[space],
2482 size - space);
2491 " space %d likely %d\n",
2492 (long)blk,(int)space,likely);
2520 memcpy(fullrec,&data[k],space);
2522 skip = (size - space - 1)/nextspace;
2523 pos = space;
2558 " space %d likely %d\n",
2559 (long)blk,(int)space,likely);
2568 next = (size - space) % nextspace
3343 int space;
3351 space = blocksz - k;
3355 if ((space >= LOG_RECORD_HEAD_SZ)
3356 && (size > space)
3359 memcpy(fullrec,&data[k],space);
3360 if (size <= (space + nextspace))
3361 memcpy(&fullrec[space], nextdata + blkheadsz,
3362 size - space);
3372 total = space;
3399 printf("Overlap marked for block %ld space %d"
3401 (long)blk,(int)space,(state == T_OK));