HomeSort by: relevance | last modified time | path
    Searched defs:rt0 (Results 1 - 2 of 2) sorted by relevancy

  /src/lib/libc/net/
rthdr.c 127 struct ip6_rthdr0 *rt0 = (struct ip6_rthdr0 *)(void *)rthdr; local in function:inet6_rthdr_add
130 if (rt0->ip6r0_segleft == 23)
134 rt0->ip6r0_segleft++;
135 (void)memcpy(((caddr_t)(void *)rt0) +
136 ((rt0->ip6r0_len + 1) << 3), addr, sizeof(struct in6_addr));
137 rt0->ip6r0_len += sizeof(struct in6_addr) >> 3;
138 len = CMSG_LEN((rt0->ip6r0_len + 1) << 3);
162 struct ip6_rthdr0 *rt0 = (struct ip6_rthdr0 *)(void *)rthdr; local in function:inet6_rthdr_lasthop
163 if (rt0->ip6r0_segleft > 23)
197 const struct ip6_rthdr0 *rt0 local in function:inet6_rthdr_segments
226 struct ip6_rthdr0 *rt0 = (struct ip6_rthdr0 *)(void *)rthdr; local in function:inet6_rthdr_getaddr
261 const struct ip6_rthdr0 *rt0 = (const struct ip6_rthdr0 *) local in function:inet6_rthdr_getflags
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_onetimeauth/poly1305/sse2/
poly1305_sse2.c 109 uint64_t rt0, rt1, rt2, st2, c; local in function:poly1305_init_ext
143 rt0 = r0;
162 d[0] = ((uint128_t) rt0 * rt0) + ((uint128_t)(rt1 * 2) * st2);
163 d[1] = ((uint128_t) rt2 * st2) + ((uint128_t)(rt0 * 2) * rt1);
164 d[2] = ((uint128_t) rt1 * rt1) + ((uint128_t)(rt2 * 2) * rt0);
166 rt0 = (uint64_t) d[0] & 0xfffffffffff;
176 rt0 += c * 5;
177 c = (rt0 >> 44);
178 rt0 = rt0 & 0xfffffffffff
    [all...]

Completed in 32 milliseconds