tarindex          196 opal/mca/hwloc/hwloc201/hwloc/hwloc/base64.c 	unsigned int tarindex, state;
tarindex          201 opal/mca/hwloc/hwloc201/hwloc/hwloc/base64.c 	tarindex = 0;
tarindex          217 opal/mca/hwloc/hwloc201/hwloc/hwloc/base64.c 				if (tarindex >= targsize)
tarindex          219 opal/mca/hwloc/hwloc201/hwloc/hwloc/base64.c 				target[tarindex] = (char)(pos - Base64) << 2;
tarindex          225 opal/mca/hwloc/hwloc201/hwloc/hwloc/base64.c 				if (tarindex + 1 >= targsize)
tarindex          227 opal/mca/hwloc/hwloc201/hwloc/hwloc/base64.c 				target[tarindex]   |=  (pos - Base64) >> 4;
tarindex          228 opal/mca/hwloc/hwloc201/hwloc/hwloc/base64.c 				target[tarindex+1]  = ((pos - Base64) & 0x0f)
tarindex          231 opal/mca/hwloc/hwloc201/hwloc/hwloc/base64.c 			tarindex++;
tarindex          236 opal/mca/hwloc/hwloc201/hwloc/hwloc/base64.c 				if (tarindex + 1 >= targsize)
tarindex          238 opal/mca/hwloc/hwloc201/hwloc/hwloc/base64.c 				target[tarindex]   |=  (pos - Base64) >> 2;
tarindex          239 opal/mca/hwloc/hwloc201/hwloc/hwloc/base64.c 				target[tarindex+1]  = ((pos - Base64) & 0x03)
tarindex          242 opal/mca/hwloc/hwloc201/hwloc/hwloc/base64.c 			tarindex++;
tarindex          247 opal/mca/hwloc/hwloc201/hwloc/hwloc/base64.c 				if (tarindex >= targsize)
tarindex          249 opal/mca/hwloc/hwloc201/hwloc/hwloc/base64.c 				target[tarindex] |= (pos - Base64);
tarindex          251 opal/mca/hwloc/hwloc201/hwloc/hwloc/base64.c 			tarindex++;
tarindex          296 opal/mca/hwloc/hwloc201/hwloc/hwloc/base64.c 			if (target && target[tarindex] != 0)
tarindex          308 opal/mca/hwloc/hwloc201/hwloc/hwloc/base64.c 	return (tarindex);