Home | History | Annotate | Download | only in fat

Lines Matching refs:next_cluster

34     uint32_t next_cluster = 0;
53 next_cluster = data[offset];
55 next_cluster += data[0] << 8;
57 next_cluster = *(const uint16_t *)(data + offset);
61 next_cluster >>= 4; /* cluster number is ODD */
63 next_cluster &= 0x0fff; /* cluster number is EVEN */
71 next_cluster = *(const uint16_t *)(data + offset);
79 next_cluster = *(const uint32_t *)(data + offset);
80 next_cluster &= 0x0fffffff;
84 return next_cluster;