Home | History | Annotate | Download | only in gptfdisk

Lines Matching refs:segStart

74    size_t *segStart = longSegs; // Assume there are separators between segments
89 segStart = shortSegs;
94 if (len >= segStart[1]) {
100 if (len >= segStart[2]) {
101 uuidData[5] = StrToHex(copy, (unsigned int) segStart[1]);
102 uuidData[4] = StrToHex(copy, (unsigned int) segStart[1] + 2);
104 if (len >= segStart[3]) {
105 uuidData[7] = StrToHex(copy, (unsigned int) segStart[2]);
106 uuidData[6] = StrToHex(copy, (unsigned int) segStart[2] + 2);
108 if (len >= segStart[4]) {
109 uuidData[8] = StrToHex(copy, (unsigned int) segStart[3]);
110 uuidData[9] = StrToHex(copy, (unsigned int) segStart[3] + 2);
112 if (len >= segStart[5]) {
113 uuidData[10] = StrToHex(copy, (unsigned int) segStart[4]);
114 uuidData[11] = StrToHex(copy, (unsigned int) segStart[4] + 2);
115 uuidData[12] = StrToHex(copy, (unsigned int) segStart[4] + 4);
116 uuidData[13] = StrToHex(copy, (unsigned int) segStart[4] + 6);
117 uuidData[14] = StrToHex(copy, (unsigned int) segStart[4] + 8);
118 uuidData[15] = StrToHex(copy, (unsigned int) segStart[4] + 10);