Home
last modified time | relevance | path

Searched refs:alloc_buffer (Results 1 – 16 of 16) sorted by relevance

/third_party/libuv/docs/code/multi-echo-server/
Dworker.c22 void alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t *buf) { in alloc_buffer() function
74 uv_read_start((uv_stream_t*) client, alloc_buffer, echo_read); in on_new_connection()
86 uv_read_start((uv_stream_t*)&queue, alloc_buffer, on_new_connection); in main()
Dmain.c26 void alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t *buf) { in alloc_buffer() function
/third_party/libuv/docs/code/udp-dhcp/
Dmain.c12 void alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t *buf) { in alloc_buffer() function
44 alloc_buffer(NULL, 256, &buffer); in make_discover_msg()
112 uv_udp_recv_start(&recv_socket, alloc_buffer, on_read); in main()
/third_party/libuv/test/
Dtest-pipe-close-stdout-read-stdin.c32 void alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t* buf) in alloc_buffer() function
82 r = uv_read_start((uv_stream_t *)&stdin_pipe, alloc_buffer, read_stdin); in TEST_IMPL()
/third_party/libuv/docs/code/dns/
Dmain.c8 void alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t *buf) { in alloc_buffer() function
39 uv_read_start((uv_stream_t*) req->handle, alloc_buffer, on_read); in on_connect()
/third_party/libuv/docs/code/tcp-echo-server/
Dmain.c23 void alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t *buf) { in alloc_buffer() function
65 uv_read_start((uv_stream_t*) client, alloc_buffer, echo_read); in on_new_connection()
/third_party/libuv/docs/code/pipe-echo-server/
Dmain.c25 void alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t *buf) { in alloc_buffer() function
63 uv_read_start((uv_stream_t*) client, alloc_buffer, echo_read); in on_new_connection()
/third_party/libuv/docs/code/uvtee/
Dmain.c18 void alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t *buf) { in alloc_buffer() function
75 uv_read_start((uv_stream_t*)&stdin_pipe, alloc_buffer, read_stdin); in main()
/third_party/libdrm/amdgpu/
Damdgpu_bo.c71 struct amdgpu_bo_alloc_request *alloc_buffer, in amdgpu_bo_alloc() argument
78 args.in.bo_size = alloc_buffer->alloc_size; in amdgpu_bo_alloc()
79 args.in.alignment = alloc_buffer->phys_alignment; in amdgpu_bo_alloc()
82 args.in.domains = alloc_buffer->preferred_heap; in amdgpu_bo_alloc()
83 args.in.domain_flags = alloc_buffer->flags; in amdgpu_bo_alloc()
92 r = amdgpu_bo_create(dev, alloc_buffer->alloc_size, args.out.handle, in amdgpu_bo_alloc()
Damdgpu.h582 struct amdgpu_bo_alloc_request *alloc_buffer,
/third_party/ffmpeg/libavfilter/
Dvf_pullup.c240 static int alloc_buffer(PullupContext *s, PullupBuffer *b) in alloc_buffer() function
262 alloc_buffer(s, s->last->buffer); in pullup_get_buffer()
272 alloc_buffer(s, &s->buffers[i]); in pullup_get_buffer()
285 alloc_buffer(s, &s->buffers[i]); in pullup_get_buffer()
/third_party/mesa3d/src/gallium/winsys/amdgpu/drm/
Damdgpu_cs.c298 struct amdgpu_bo_alloc_request alloc_buffer = {}; in amdgpu_ctx_create() local
315 alloc_buffer.alloc_size = ctx->ws->info.gart_page_size; in amdgpu_ctx_create()
316 alloc_buffer.phys_alignment = ctx->ws->info.gart_page_size; in amdgpu_ctx_create()
317 alloc_buffer.preferred_heap = AMDGPU_GEM_DOMAIN_GTT; in amdgpu_ctx_create()
319 r = amdgpu_bo_alloc(ctx->ws->dev, &alloc_buffer, &buf_handle); in amdgpu_ctx_create()
331 memset(ctx->user_fence_cpu_address_base, 0, alloc_buffer.alloc_size); in amdgpu_ctx_create()
/third_party/ffmpeg/libavcodec/
Dlibsvtav1.c125 static int alloc_buffer(EbSvtAv1EncConfiguration *config, SvtContext *svt_enc) in alloc_buffer() function
412 return alloc_buffer(&svt_enc->enc_params, svt_enc); in eb_enc_init()
/third_party/libuv/docs/src/guide/
Dfilesystem.rst223 We start monitoring ``stdin``. The ``alloc_buffer`` callback is invoked as new
/third_party/mesa3d/src/amd/common/
Dac_gpu_info.c257 struct amdgpu_bo_alloc_request *alloc_buffer, in amdgpu_bo_alloc() argument
/third_party/ffmpeg/
DChangelog106 avcodec/libsvtav1: remove compressed_ten_bit_format and simplify alloc_buffer