Lines Matching refs:offset
263 * header + the language tag (i.e. the offset at which the rest of
306 * Retrieves the 24 bit int stored at 'off' offset into 'header'.
321 * offset into the header.
331 * Retrieves the 16 bit integer stored at 'off' offset into 'header'.
342 * offset into the header.
438 size_t offset = 0;
443 offset = *piOffset;
447 *piByte = (int)pcBuf[offset];
453 size_t offset = 0;
458 offset = *piOffset;
463 ((unsigned char)pcBuf[offset] & (unsigned char)0xFF);
466 ((unsigned char)pcBuf[offset+1] & (unsigned char)0xFF);
473 size_t offset = 0;
478 offset = *piOffset;
482 *piInt = ((unsigned int)(pcBuf[offset] & 0xff)) << 24;
483 *piInt += ((unsigned int)(pcBuf[offset+1] & 0xff)) << 16;
484 *piInt += ((unsigned int)(pcBuf[offset+2] & 0xff)) << 8;
485 *piInt += ((unsigned int)(pcBuf[offset+3] & 0xff));