Lines Matching refs:xTargetIndex
499 pxSet->xColon = pxSet->xTargetIndex; in prv_inet_pton6_add_nibble()
504 if( pxSet->xTargetIndex <= pxSet->xHighestIndex ) in prv_inet_pton6_add_nibble()
507 … pxSet->pucTarget[ pxSet->xTargetIndex ] = ( uint8_t ) ( ( pxSet->ulValue >> 8 ) & 0xffU ); in prv_inet_pton6_add_nibble()
508 … pxSet->pucTarget[ pxSet->xTargetIndex + 1 ] = ( uint8_t ) ( pxSet->ulValue & 0xffU ); in prv_inet_pton6_add_nibble()
509 pxSet->xTargetIndex += 2; in prv_inet_pton6_add_nibble()
537 const BaseType_t xCount = pxSet->xTargetIndex - pxSet->xColon; in prv_inet_pton6_set_zeros()
552 pxSet->xTargetIndex = ( BaseType_t ) ipSIZE_OF_IPv6_ADDRESS; in prv_inet_pton6_set_zeros()
612 ( xSet.xTargetIndex <= xSet.xHighestIndex ) ) in FreeRTOS_inet_pton6()
615 … xSet.pucTarget[ xSet.xTargetIndex ] = ( uint8_t ) ( ( xSet.ulValue >> 8 ) & 0xffU ); in FreeRTOS_inet_pton6()
616 xSet.pucTarget[ xSet.xTargetIndex + 1 ] = ( uint8_t ) ( xSet.ulValue & 0xffU ); in FreeRTOS_inet_pton6()
617 xSet.xTargetIndex += 2; in FreeRTOS_inet_pton6()
642 if( xSet.xTargetIndex == ( BaseType_t ) ipSIZE_OF_IPv6_ADDRESS ) in FreeRTOS_inet_pton6()