Lines Matching refs:bytes
388 * create a string of the literal QUERY_ARGS bytes.
434 apr_size_t bytes = sizeof(buffer);
446 if ((rv = apr_file_read(fh, buffer, &bytes)) != APR_SUCCESS) {
461 * WinNT encoding. But at least eat the stupid three bytes up front.
467 if ((bytes >= 3) && memcmp(buffer, "\xEF\xBB\xBF", 3) == 0) {
468 memmove(buffer, buffer + 3, bytes -= 3);
474 if ((bytes >= 2) && ((buffer[0] == '#') || (buffer[0] == '\''))
477 for (i = 2; i < bytes; i++) {
483 if (i < bytes) {
493 else if (bytes >= sizeof(IMAGE_DOS_HEADER)) {