Searched refs:wpos (Results 1 - 3 of 3) sorted by relevance

/freebsd-10.2-release/sbin/dhclient/
H A Dprivsep.h29 size_t wpos; member in struct:buf
H A Dprivsep.c44 if (buf->wpos + len > buf->size)
47 memcpy(buf->buf + buf->wpos, data, len);
48 buf->wpos += len;
/freebsd-10.2-release/contrib/llvm/utils/TableGen/
H A DCodeGenInstruction.cpp200 std::string::size_type wpos = CStr.find_first_of(" \t"); local
202 std::string Tok = CStr.substr(start, wpos - start);
204 std::string Name = CStr.substr(wpos+1);
205 wpos = Name.find_first_not_of(" \t");
206 if (wpos == std::string::npos)
208 Name = Name.substr(wpos);
226 wpos = Name.find_first_of(" \t");
227 if (wpos == std::string::npos)
229 std::string DestOpName = Name.substr(0, wpos);
233 wpos
[all...]

Completed in 54 milliseconds