Home | History | Annotate | Download | only in mDNSCore

Lines Matching full:tarindex

1161 	int tarindex, state, ch;
1165 tarindex = 0;
1181 if ((mDNSu32)tarindex >= targsize)
1183 target[tarindex] = (mDNSu8)((pos - Base64) << 2);
1189 if ((mDNSu32)tarindex + 1 >= targsize)
1191 target[tarindex] |= (pos - Base64) >> 4;
1192 target[tarindex+1] = (mDNSu8)(((pos - Base64) & 0x0f) << 4);
1194 tarindex++;
1199 if ((mDNSu32)tarindex + 1 >= targsize)
1201 target[tarindex] |= (pos - Base64) >> 2;
1202 target[tarindex+1] = (mDNSu8)(((pos - Base64) & 0x03) << 6);
1204 tarindex++;
1209 if ((mDNSu32)tarindex >= targsize)
1211 target[tarindex] |= (pos - Base64);
1213 tarindex++;
1260 if (target && target[tarindex] != 0)
1272 return (tarindex);