Lines Matching refs:segStart
72 size_t *segStart = longSegs; // Assume there are separators between segments
87 segStart = shortSegs;
92 if (len >= segStart[1]) {
98 if (len >= segStart[2]) {
99 uuidData[5] = StrToHex(copy, (unsigned int) segStart[1]);
100 uuidData[4] = StrToHex(copy, (unsigned int) segStart[1] + 2);
102 if (len >= segStart[3]) {
103 uuidData[7] = StrToHex(copy, (unsigned int) segStart[2]);
104 uuidData[6] = StrToHex(copy, (unsigned int) segStart[2] + 2);
106 if (len >= segStart[4]) {
107 uuidData[8] = StrToHex(copy, (unsigned int) segStart[3]);
108 uuidData[9] = StrToHex(copy, (unsigned int) segStart[3] + 2);
110 if (len >= segStart[5]) {
111 uuidData[10] = StrToHex(copy, (unsigned int) segStart[4]);
112 uuidData[11] = StrToHex(copy, (unsigned int) segStart[4] + 2);
113 uuidData[12] = StrToHex(copy, (unsigned int) segStart[4] + 4);
114 uuidData[13] = StrToHex(copy, (unsigned int) segStart[4] + 6);
115 uuidData[14] = StrToHex(copy, (unsigned int) segStart[4] + 8);
116 uuidData[15] = StrToHex(copy, (unsigned int) segStart[4] + 10);