Home
last modified time | relevance | path

Searched refs:ntail (Results 1 – 2 of 2) sorted by relevance

/third_party/rust/crates/cxx/src/
Dsip.rs26 ntail: usize, // how many bytes in tail are valid field
130 ntail: 0, in new_with_keys()
142 self.ntail = 0; in reset()
160 if self.ntail != 0 { in write()
161 needed = 8 - self.ntail; in write()
163 self.tail |= unsafe { u8to64_le(msg, 0, cmp::min(length, needed)) } << (8 * self.ntail); in write()
165 self.ntail += length; in write()
171 self.ntail = 0; in write()
197 self.ntail = left; in write()
/third_party/curl/lib/
Dhsts.c283 size_t ntail = strlen(sts->host); in Curl_hsts() local
284 if(ntail < hlen) { in Curl_hsts()
285 size_t offs = hlen - ntail; in Curl_hsts()
287 strncasecompare(&hostname[offs], sts->host, ntail)) in Curl_hsts()