fPad
BRect fPad;
fPad = malloc(DV_DSIZE*DV_MAXBLOCKS);
memset(fPad, 0xff, DV_DSIZE*DV_MAXBLOCKS);
memcpy(dest, fPad, npad);
void* fPad;
fPad.Set(left, top, right, bottom);
*_left = fPad.left;
*_top = fPad.top;
*_right = fPad.right;
*_bottom = fPad.bottom;
fPad = BRect(ceilf(labelSpacing * 2.3f), ceilf(labelSpacing / 3.0f),
size.width = Bounds().Width() - fPad.right;
item->fBounds.bottom = item->fBounds.top + height + fPad.top
+ fPad.bottom;
frame.right = std::max(frame.right, width + fPad.left + fPad.right);
frame.Set(0.0f, 0.0f, 0.0f, ceilf(fh.ascent + fh.descent + fPad.top
+ fPad.bottom));
item->fBounds.right = item->fBounds.left + width + fPad.left
+ fPad.right;
frame.bottom = std::max(frame.bottom, height + fPad.top + fPad.bottom);
+ fPad.left + fPad.right,
fFontHeight + fPad.top + fPad.bottom);
return fMenu->fPad;