Lines Matching refs:ucBytes

49 #define IPv6MC_GET_SCOPE_VALUE( pxIPv6Address )                  ( ( ( pxIPv6Address )->ucBytes[ 1 …
52 #define IPv6MC_GET_FLAGS_VALUE( pxIPv6Address ) ( ( ( pxIPv6Address )->ucBytes[ 1 …
265 pxReturnGroupID->ucBytes[ 0 ] = 0U; in xGetIPv6MulticastGroupID()
266 pxReturnGroupID->ucBytes[ 1 ] = 0U; in xGetIPv6MulticastGroupID()
267 ( void ) memcpy( &( pxReturnGroupID->ucBytes[ 2 ] ), &( pxIPv6Address->ucBytes[ 2 ] ), 14 ); in xGetIPv6MulticastGroupID()
293 …( memcmp( pxIPv6Header->xDestinationAddress.ucBytes, FreeRTOS_in6addr_loopback.ucBytes, sizeof( IP… in xIsIPv6Loopback()
294 …( memcmp( pxIPv6Header->xSourceAddress.ucBytes, pxEndPoint->ipv6_settings.xIPAddress.ucBytes, size… in xIsIPv6Loopback()
318 if( pxIPAddress->ucBytes[ 0 ] == 0xffU ) in xIsIPv6AllowedMulticast()
335 …( memcmp( xGroupIDAddress.ucBytes, xIPv6UnspecifiedAddress.ucBytes, sizeof( IPv6_Address_t ) ) == … in xIsIPv6AllowedMulticast()
373 if( ( pxRight->ucBytes[ 0 ] == 0xffU ) && in xCompareIPv6_Address()
374 ( pxRight->ucBytes[ 1 ] == 0x02U ) && in xCompareIPv6_Address()
375 ( pxRight->ucBytes[ 12 ] == 0xffU ) ) in xCompareIPv6_Address()
378 xResult = memcmp( &( pxLeft->ucBytes[ 13 ] ), &( pxRight->ucBytes[ 13 ] ), 3 ); in xCompareIPv6_Address()
381 … if( memcmp( pxRight->ucBytes, FreeRTOS_in6addr_allnodes.ucBytes, sizeof( IPv6_Address_t ) ) == 0 ) in xCompareIPv6_Address()
387 if( ( pxRight->ucBytes[ 0 ] == 0xfeU ) && in xCompareIPv6_Address()
388 ( pxRight->ucBytes[ 1 ] == 0x80U ) && in xCompareIPv6_Address()
389 ( pxLeft->ucBytes[ 0 ] == 0xfeU ) && in xCompareIPv6_Address()
390 ( pxLeft->ucBytes[ 1 ] == 0x80U ) ) in xCompareIPv6_Address()
403 xResult = memcmp( pxLeft->ucBytes, pxRight->ucBytes, ipSIZE_OF_IPv6_ADDRESS ); in xCompareIPv6_Address()
413 xResult = memcmp( pxLeft->ucBytes, pxRight->ucBytes, uxLength ); in xCompareIPv6_Address()
424 … if( ( pxLeft->ucBytes[ uxLength ] & ucNetMask ) != ( pxRight->ucBytes[ uxLength ] & ucNetMask ) ) in xCompareIPv6_Address()
465 …if( ( memcmp( pxDestinationIPAddress->ucBytes, xIPv6UnspecifiedAddress.ucBytes, sizeof( IPv6_Addre… in prvAllowIPPacketIPv6()
466 …( memcmp( pxSourceIPAddress->ucBytes, xIPv6UnspecifiedAddress.ucBytes, sizeof( IPv6_Address_t ) ) … in prvAllowIPPacketIPv6()
474 …( memcmp( pxDestinationIPAddress->ucBytes, pxNetworkBuffer->pxEndPoint->ipv6_settings.xIPAddress.u… in prvAllowIPPacketIPv6()
493 …v6: drop %pip (from %pip)\n", pxDestinationIPAddress->ucBytes, pxIPv6Header->xSourceAddress.ucByte… in prvAllowIPPacketIPv6()