Here you can find the source of roundBytesUpToWords(int bytes)
static int roundBytesUpToWords(int bytes)
//package com.java2s; // Licensed under the MIT License: public class Main { static int roundBytesUpToWords(int bytes) { return (bytes + 7) / 8; }// w ww . j av a2 s .c o m }