/third_party/libuv/docs/code/multi-echo-server/ |
D | worker.c | 22 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()
|
D | main.c | 26 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/ |
D | main.c | 12 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/ |
D | test-pipe-close-stdout-read-stdin.c | 32 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/ |
D | main.c | 8 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/ |
D | main.c | 23 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/ |
D | main.c | 25 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/ |
D | main.c | 18 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/ |
D | amdgpu_bo.c | 71 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()
|
D | amdgpu.h | 582 struct amdgpu_bo_alloc_request *alloc_buffer,
|
/third_party/ffmpeg/libavfilter/ |
D | vf_pullup.c | 240 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/ |
D | amdgpu_cs.c | 298 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/ |
D | libsvtav1.c | 125 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/ |
D | filesystem.rst | 223 We start monitoring ``stdin``. The ``alloc_buffer`` callback is invoked as new
|
/third_party/mesa3d/src/amd/common/ |
D | ac_gpu_info.c | 257 struct amdgpu_bo_alloc_request *alloc_buffer, in amdgpu_bo_alloc() argument
|
/third_party/ffmpeg/ |
D | Changelog | 106 avcodec/libsvtav1: remove compressed_ten_bit_format and simplify alloc_buffer
|