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

/vbox/src/VBox/Devices/Network/slirp/
H A Dresolv_conf_parser.c395 unsigned i, len, trailing; local
418 trailing = RCPS_BUFFER_SIZE;
422 trailing = RCPS_BUFFER_SIZE - (ptr -
430 if (len + 1 > trailing)
436 ptr = st->rcps_searchlist_buffer + RCPS_BUFFER_SIZE - trailing;
439 trailing -= len + 1; /* 1 reserved for '\0' */
/vbox/src/libs/libxml2-2.6.31/
H A Dencoding.c176 int trailing; local
191 if (d < 0x80) { c= d; trailing= 0; }
193 /* trailing byte in leading position */
197 } else if (d < 0xE0) { c= d & 0x1F; trailing= 1; }
198 else if (d < 0xF0) { c= d & 0x0F; trailing= 2; }
199 else if (d < 0xF8) { c= d & 0x07; trailing= 3; }
207 if (inend - in < trailing) {
211 for ( ; trailing; trailing--) {
349 int trailing; local
528 int trailing; local
770 int trailing; local
[all...]
H A DHTMLparser.c1803 int trailing; local
1818 if (d < 0x80) { c= d; trailing= 0; }
1820 /* trailing byte in leading position */
1824 } else if (d < 0xE0) { c= d & 0x1F; trailing= 1; }
1825 else if (d < 0xF0) { c= d & 0x0F; trailing= 2; }
1826 else if (d < 0xF8) { c= d & 0x07; trailing= 3; }
1834 if (inend - in < trailing) {
1838 for ( ; trailing; trailing--) {
1907 int trailing; local
[all...]

Completed in 65 milliseconds