Lines Matching refs:uxTargetIndex
300 if( pxSet->uxTargetIndex <= ( uxSize - 1U ) ) in prv_ntop6_write_zeros()
302 pcDestination[ pxSet->uxTargetIndex ] = ':'; in prv_ntop6_write_zeros()
303 pxSet->uxTargetIndex++; in prv_ntop6_write_zeros()
308 if( pxSet->uxTargetIndex <= ( uxSize - 1U ) ) in prv_ntop6_write_zeros()
310 pcDestination[ pxSet->uxTargetIndex ] = ':'; in prv_ntop6_write_zeros()
311 pxSet->uxTargetIndex++; in prv_ntop6_write_zeros()
354 if( pxSet->uxTargetIndex >= ( uxSize - 1U ) ) in prv_ntop6_write_short()
360 pcDestination[ pxSet->uxTargetIndex ] = ':'; in prv_ntop6_write_short()
361 pxSet->uxTargetIndex++; in prv_ntop6_write_short()
368 if( pxSet->uxTargetIndex <= ( uxSize - uxBytesPerShortValue ) ) in prv_ntop6_write_short()
371 uxLength = uxHexPrintShort( &( pcDestination[ pxSet->uxTargetIndex ] ), in prv_ntop6_write_short()
376 pxSet->uxTargetIndex += uxLength; in prv_ntop6_write_short()
447 pcDestination[ xSet.uxTargetIndex ] = '\0'; in FreeRTOS_inet_ntop6()