Searched refs:max_bytes (Results 1 - 12 of 12) sorted by relevance

/freebsd-10.2-release/sys/dev/drm2/radeon/
H A Datombios_i2c.c101 int i, remaining, current_count, buffer_offset, max_bytes, ret; local
120 /* max_bytes are a limitation of ProcessI2cChannelTransaction not the hw */
122 max_bytes = ATOM_MAX_HW_I2C_READ;
125 max_bytes = ATOM_MAX_HW_I2C_WRITE;
129 if (remaining > max_bytes)
130 current_count = max_bytes;
H A Dr600_blit.c599 int max_bytes; local
606 max_bytes = 8192;
617 h = (cur_size / max_bytes);
623 cur_size = max_bytes;
625 if (cur_size > max_bytes)
626 cur_size = max_bytes;
627 if (cur_size > (max_bytes - dst_x))
628 cur_size = (max_bytes - dst_x);
629 if (cur_size > (max_bytes - src_x))
630 cur_size = (max_bytes
[all...]
/freebsd-10.2-release/contrib/wpa/src/wps/
H A Dhttpread.h66 * Pass max_bytes == 0 to not read body at all (required for e.g.
74 int max_bytes, /* maximum file size else abort it */
H A Dhttpread.c66 int max_bytes; /* maximum file size else abort it */ member in struct:httpread
357 h->max_bytes = 0;
365 h->max_bytes = 0;
476 if (h->max_bytes == 0) {
522 if (h->body_nbytes >= h->max_bytes)
729 * Pass max_bytes == 0 to not read body at all (required for e.g.
737 int max_bytes, /* maximum body size else abort it */
749 h->max_bytes = max_bytes;
732 httpread_create( int sd, void (*cb)(struct httpread *handle, void *cookie, enum httpread_event e), void *cookie, int max_bytes, int timeout_seconds ) argument
/freebsd-10.2-release/crypto/openssl/crypto/rand/
H A Drand.h105 int RAND_load_file(const char *file, long max_bytes);
/freebsd-10.2-release/sys/dev/drm/
H A Dr600_blit.c1717 int max_bytes; local
1727 max_bytes = 8192;
1738 h = (cur_size / max_bytes);
1744 cur_size = max_bytes;
1746 if (cur_size > max_bytes)
1747 cur_size = max_bytes;
1748 if (cur_size > (max_bytes - dst_x))
1749 cur_size = (max_bytes - dst_x);
1750 if (cur_size > (max_bytes - src_x))
1751 cur_size = (max_bytes
[all...]
/freebsd-10.2-release/sys/ofed/drivers/infiniband/ulp/sdp/
H A Dsdp_rx.c165 unsigned long max_bytes; local
179 max_bytes = max(ssk->socket->so_snd.sb_hiwat,
181 max_bytes *= rcvbuf_scale;
188 return bytes_in_process < max_bytes;
/freebsd-10.2-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dvdev_queue.c495 uint64_t max_bytes = zfs_dirty_data_max * local
508 if (dirty > max_bytes)
513 * slope = (max_writes - min_writes) / (max_bytes - min_bytes)
520 (max_bytes - min_bytes) +
/freebsd-10.2-release/sys/pci/
H A Dif_rl.c1126 uint16_t max_bytes, rx_bytes = 0; local
1139 max_bytes = (RL_RXBUFLEN - cur_rx) + limit;
1141 max_bytes = limit - cur_rx;
1191 if (rx_bytes > max_bytes)
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Target/
H A DProcess.cpp2528 Process::ReadStringFromMemory (addr_t addr, char *dst, size_t max_bytes, Error &error,
2532 if (dst && max_bytes && type_width && max_bytes >= type_width)
2535 memset (dst, 0, max_bytes);
2536 size_t bytes_left = max_bytes - type_width;
2573 if (max_bytes)
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Core/
H A DValueObject.cpp1044 const uint64_t max_bytes = GetClangType().GetByteSize(); local
1045 if (max_bytes > offset)
1047 size_t bytes_read = std::min<uint64_t>(max_bytes - offset, bytes);
/freebsd-10.2-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DProcess.h2778 /// (max_bytes - type_width) bytes will be read.
2784 /// A character buffer containing at least max_bytes.
2786 /// @param[in] max_bytes
2802 size_t max_bytes,

Completed in 227 milliseconds