Lines Matching refs:offset
345 s32 offset; in DoList() local
418 offset = (s32) ent->stat.commentAddr & ~(CARD_READ_SIZE - 1); in DoList()
419 length = (s32) (ent->stat.commentAddr + CARD_COMMENT_SIZE - offset); in DoList()
421 result = CARDRead(&fileInfo, ent, length, offset); in DoList()
428 offset = (s32) (ent->stat.commentAddr & (CARD_READ_SIZE - 1)); in DoList()
429 memmove(ent->comment, (u8*) ent + offset, CARD_COMMENT_SIZE); in DoList()
443 offset = (s32) ent->stat.iconAddr & ~(CARD_READ_SIZE - 1); in DoList()
444 length = (s32) (ent->stat.offsetData - offset); in DoList()
446 result = CARDRead(&fileInfo, ent, length, offset); in DoList()
453 offset = (s32) (ent->stat.iconAddr & (CARD_READ_SIZE - 1)); in DoList()
454 memmove(ent, (u8*) ent + offset, ent->stat.offsetData - ent->stat.iconAddr); in DoList()