Lines Matching defs:size

90 									BMessage* message, off_t size,
100 void SetSize(off_t size);
309 off_t size, uint32 blockSize)
313 fSize(size),
340 // Note: this code is far from being perfect: depending on the file size, it has
341 // a maxium granularity that might be less than the actual block size demands...
344 // For example, with a block size of 512 bytes, it should be good enough for about
367 PositionSlider::SetSize(off_t size)
369 if (size == fSize)
373 if (position >= size)
374 position = size - 1;
376 fSize = size;
733 // round to block size
783 // round to block size
1384 "decimal system. This is in the same menu window than 'Font size' "
1409 subMenu = new BMenu(B_TRANSLATE_COMMENT("Block size", "Menu item. "
1410 "This is in the same menu window than 'Base' and 'Font size'"));
1425 // if the device has some weird block size, we'll add it here, too
1440 subMenu = new BMenu(B_TRANSLATE("Font size"));
1505 int size;
1507 size = end + 1 - start;
1509 size = 8;
1512 memcpy(&bigEndianPosition, data, size);
1514 position = B_BENDIAN_TO_HOST_INT64(bigEndianPosition) >> (8 * (8 - size));
1521 size * 2, (long long int)position);
1524 (long long int)position, size * 2, (long long int)position);
1532 position = B_SWAP_INT64(position) >> (8 * (8 - size));
1535 size * 2, (long long int)position);
1538 (long long int)position, size * 2, (long long int)position);
1675 ssize_t size;
1676 if (clip->FindData(B_FILE_MIME_TYPE, B_MIME_TYPE, &data, &size) == B_OK
1677 || clip->FindData("text/plain", B_MIME_TYPE, &data, &size) == B_OK)
1833 float size;
1834 if (message->FindFloat("font_size", &size) != B_OK)
1837 fDataView->SetFontSize(size);
1897 ssize_t size;
1899 &size) != B_OK) {
1903 B_RAW_TYPE, (const void**)&data, &size) != B_OK) {