Lines Matching refs:encode_out
297 void bch_encode(unsigned char* encode_in, unsigned char* encode_out) in bch_encode() argument
326 encode_out[i] = encode_in[i]; in bch_encode()
327 encode_out[515] = bch1&0x000000ff; in bch_encode()
328 encode_out[516] = (bch1&0x0000ff00)>>8; in bch_encode()
329 encode_out[517] = (bch1&0x00ff0000)>>16; in bch_encode()
330 encode_out[518] = (bch1&0xff000000)>>24; in bch_encode()
331 encode_out[519] = bch2&0x000000ff; in bch_encode()
332 encode_out[520] = (bch2&0x0000ff00)>>8; in bch_encode()
333 encode_out[521] = (bch2&0x00ff0000)>>16; in bch_encode()
334 encode_out[522] = (bch2&0xff000000)>>24; in bch_encode()
335 encode_out[523] = bch3&0x000000ff; in bch_encode()
336 encode_out[524] = (bch3&0x0000ff00)>>8; in bch_encode()
337 encode_out[525] = (bch3&0x00ff0000)>>16; in bch_encode()
338 encode_out[526] = (bch3&0xff000000)>>24; in bch_encode()
339 encode_out[527] = bch4&0x000000ff; in bch_encode()