Home
last modified time | relevance | path

Searched refs:BUFS (Results 1 – 3 of 3) sorted by relevance

/third_party/nghttp2/lib/
Dnghttp2_buf.h295 #define nghttp2_bufs_fast_addb(BUFS, B) \ argument
297 *(BUFS)->cur->buf.last++ = B; \
300 #define nghttp2_bufs_fast_addb_hold(BUFS, B) \ argument
302 *(BUFS)->cur->buf.last = B; \
325 #define nghttp2_bufs_fast_orb(BUFS, B) \ argument
327 uint8_t **p = &(BUFS)->cur->buf.last; \
332 #define nghttp2_bufs_fast_orb_hold(BUFS, B) \ argument
334 uint8_t *p = (BUFS)->cur->buf.last; \
386 #define nghttp2_bufs_rewind(BUFS) \ argument
388 (BUFS)->cur = (BUFS)->head; \
[all …]
/third_party/node/deps/nghttp2/lib/
Dnghttp2_buf.h295 #define nghttp2_bufs_fast_addb(BUFS, B) \ argument
297 *(BUFS)->cur->buf.last++ = B; \
300 #define nghttp2_bufs_fast_addb_hold(BUFS, B) \ argument
302 *(BUFS)->cur->buf.last = B; \
325 #define nghttp2_bufs_fast_orb(BUFS, B) \ argument
327 uint8_t **p = &(BUFS)->cur->buf.last; \
332 #define nghttp2_bufs_fast_orb_hold(BUFS, B) \ argument
334 uint8_t *p = (BUFS)->cur->buf.last; \
386 #define nghttp2_bufs_rewind(BUFS) \ argument
388 (BUFS)->cur = (BUFS)->head; \
[all …]
/third_party/ltp/testcases/kernel/fs/fs-bench/
Drandom-access.c64 #define BUFS 8192 macro
68 char buf[BUFS]; in open_read_close()
77 while ((c = read(fd, buf, BUFS)) > 0) { in open_read_close()