Home | History | Annotate | Download | only in mDNSCore

Lines Matching full:tarindex

1163 	int tarindex, state, ch;
1167 tarindex = 0;
1183 if ((mDNSu32)tarindex >= targsize)
1185 target[tarindex] = (mDNSu8)((pos - Base64) << 2);
1191 if ((mDNSu32)tarindex + 1 >= targsize)
1193 target[tarindex] |= (pos - Base64) >> 4;
1194 target[tarindex+1] = (mDNSu8)(((pos - Base64) & 0x0f) << 4);
1196 tarindex++;
1201 if ((mDNSu32)tarindex + 1 >= targsize)
1203 target[tarindex] |= (pos - Base64) >> 2;
1204 target[tarindex+1] = (mDNSu8)(((pos - Base64) & 0x03) << 6);
1206 tarindex++;
1211 if ((mDNSu32)tarindex >= targsize)
1213 target[tarindex] |= (pos - Base64);
1215 tarindex++;
1262 if (target && target[tarindex] != 0)
1274 return (tarindex);