Home
last modified time | relevance | path

Searched refs:bind (Results 451 - 475 of 2549) sorted by relevance

1...<<11121314151617181920>>...102

/third_party/mesa3d/src/gallium/frontends/nine/
H A Dswapchain9.c357 tmplt.bind = PIPE_BIND_SAMPLER_VIEW | PIPE_BIND_RENDER_TARGET; in NineSwapChain9_Resize()
361 tmplt.bind |= NINE_BIND_PRESENTBUFFER_FLAGS; in NineSwapChain9_Resize()
366 tmplt.bind, FALSE, FALSE); in NineSwapChain9_Resize()
396 tmplt.bind = NINE_BIND_PRESENTBUFFER_FLAGS; in NineSwapChain9_Resize()
400 tmplt.bind |= PIPE_BIND_LINEAR; in NineSwapChain9_Resize()
402 tmplt.bind |= PIPE_BIND_RENDER_TARGET; in NineSwapChain9_Resize()
413 tmplt.bind = d3d9_get_pipe_depth_format_bindings(pParams->AutoDepthStencilFormat); in NineSwapChain9_Resize()
420 tmplt.bind, in NineSwapChain9_Resize()
607 tmplt.bind = NINE_BIND_BACKBUFFER_FLAGS | in create_present_buffer()
611 tmplt.bind | in create_present_buffer()
[all...]
H A Dtexture9.c138 info->bind = PIPE_BIND_SAMPLER_VIEW; in NineTexture9_ctor()
143 info->bind |= PIPE_BIND_RENDER_TARGET; in NineTexture9_ctor()
145 info->bind |= PIPE_BIND_DEPTH_STENCIL; in NineTexture9_ctor()
H A Dcubetexture9.c97 info->bind = PIPE_BIND_SAMPLER_VIEW; in NineCubeTexture9_ctor()
102 info->bind |= PIPE_BIND_RENDER_TARGET; in NineCubeTexture9_ctor()
104 info->bind |= PIPE_BIND_DEPTH_STENCIL; in NineCubeTexture9_ctor()
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/
H A Dmutex_test.cc368 tp.Schedule(std::bind(&EndTest, &c0, &c1, &mu2, &cv2, in RunTestCommon()
370 std::bind(test, cxt, std::placeholders::_1)))); in RunTestCommon()
516 tp->Schedule(std::bind(&WaitForA, &x)); in TEST()
517 tp->Schedule(std::bind(&WaitForA, &x)); in TEST()
661 tp->Schedule(std::bind(&AcquireAsReader, &x)); in TEST()
662 tp->Schedule(std::bind(&AcquireAsReader, &x)); in TEST()
929 { // bind in TEST()
931 auto is_positive = std::bind(std::less<int>(), 0, std::cref(value)); in TEST()
957 tp->Schedule(std::bind(&ReaderForReaderOnCondVar, &mu, &cv, &running)); in TEST()
958 tp->Schedule(std::bind( in TEST()
[all...]
/third_party/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_texture.c139 spr->base.bind, in softpipe_displaytarget_layout()
173 if (spr->base.bind & (PIPE_BIND_DISPLAY_TARGET | in softpipe_resource_create_front()
498 spr->base.bind = bind_flags; in softpipe_user_buffer_create()
/third_party/mesa3d/src/gallium/tests/graw/
H A Dgs-test.c161 templat.bind = PIPE_BIND_CONSTANT_BUFFER; in init_fs_constbuf()
399 templat.bind = PIPE_BIND_SAMPLER_VIEW; in init_tex()
508 templat.bind = (PIPE_BIND_RENDER_TARGET | in init()
H A Dvs-test.c93 templat.bind = PIPE_BIND_CONSTANT_BUFFER; in init_fs_constbuf()
297 templat.bind = PIPE_BIND_SAMPLER_VIEW; in init_tex()
406 templat.bind = (PIPE_BIND_RENDER_TARGET | in init()
/third_party/mesa3d/src/mesa/main/
H A Drenderbuffer.c275 templ.bind = PIPE_BIND_DEPTH_STENCIL; in renderbuffer_alloc_storage()
279 templ.bind = PIPE_BIND_RENDER_TARGET; in renderbuffer_alloc_storage()
283 templ.bind = (PIPE_BIND_DISPLAY_TARGET | in renderbuffer_alloc_storage()
/third_party/mesa3d/src/mesa/state_tracker/
H A Dst_texture.c65 GLuint bind, in st_texture_create()
94 pt.bind = bind; in st_texture_create()
56 st_texture_create(struct st_context *st, enum pipe_texture_target target, enum pipe_format format, GLuint last_level, GLuint width0, GLuint height0, GLuint depth0, GLuint layers, GLuint nr_samples, GLuint bind, bool sparse) st_texture_create() argument
/third_party/ltp/testcases/network/sockets/
H A DltpClient.c159 /* bind any UDP port */ in main()
164 /* bind any TCP port */ in main()
170 rc = bind(udpSocketHandle, (struct sockaddr *)&udpClientAddr, in main()
174 printf("%s: Error: cannot bind UDP port\n", progName); in main()
179 rc = bind(tcpSocketHandle, (struct sockaddr *)&tcpClientAddr, in main()
183 printf("%s: Error: cannot bind TCP port\n", progName); in main()
214 /* bind any port number */ in main()
219 if (bind in main()
/third_party/mesa3d/src/gallium/drivers/panfrost/
H A Dpan_screen.c531 unsigned bind) in panfrost_is_format_supported()
573 /* Check we support the format with the given bind */ in panfrost_is_format_supported()
575 unsigned relevant_bind = bind & in panfrost_is_format_supported()
592 return MALI_EXTRACT_INDEX(fmt.hw) && ((relevant_bind & ~fmt.bind) == 0); in panfrost_is_format_supported()
526 panfrost_is_format_supported( struct pipe_screen *screen, enum pipe_format format, enum pipe_texture_target target, unsigned sample_count, unsigned storage_sample_count, unsigned bind) panfrost_is_format_supported() argument
/third_party/node/deps/uv/src/unix/
H A Dtcp.c57 if (bind(uv__stream_fd(handle), (struct sockaddr*) &saddr, slen)) { in new_socket()
102 if (bind(uv__stream_fd(handle), (struct sockaddr*) &saddr, slen)) in maybe_new_socket()
187 err = bind(tcp->io_watcher.fd, addr, addrlen); in uv__tcp_bind()
361 /* on zOS the listen call does not bind automatically in uv__tcp_listen()
/third_party/python/Lib/tkinter/
H A Dsimpledialog.py53 self.root.bind('<Return>', self.return_event)
178 self.bind("<Return>", self.ok)
179 self.bind("<Escape>", self.cancel)
/third_party/python/Lib/idlelib/
H A Dundo.py36 self.bind("<<undo>>", self.undo_event)
37 self.bind("<<redo>>", self.redo_event)
38 self.bind("<<dump-undo-state>>", self.dump_event)
/third_party/mesa3d/src/gallium/drivers/r600/
H A Dr600_texture.c231 if (ptex->bind & PIPE_BIND_SCANOUT || is_scanout) { in r600_init_surface()
242 if (ptex->bind & PIPE_BIND_SHARED) in r600_init_surface()
365 templ.bind |= new_bind_flag; in r600_reallocate_texture_inplace()
407 rtex->resource.b.b.bind = templ.bind; in r600_reallocate_texture_inplace()
501 assert(res->b.b.bind & PIPE_BIND_SHARED); in r600_texture_get_handle()
533 templ.bind |= PIPE_BIND_SHARED; in r600_texture_get_handle()
549 assert(res->b.b.bind & PIPE_BIND_SHARED); in r600_texture_get_handle()
1043 (templ->bind & PIPE_BIND_COMPUTE_RESOURCE) && in r600_choose_tiling()
1061 if (templ->bind in r600_choose_tiling()
[all...]
/device/soc/rockchip/common/vendor/drivers/gpu/arm/bifrost/csf/
H A Dmali_kbase_csf.h245 * @bind: Pointer to the union which specifies a queue group and a
250 int kbase_csf_queue_bind(struct kbase_context *kctx, union kbase_ioctl_cs_queue_bind *bind);
/third_party/libwebsockets/lib/plat/freertos/
H A Dfreertos-pipe.c40 * Set the port to 0 at the bind, so lwip will choose a free one in the in lws_plat_pipe_create()
62 if (bind(fd[0], (const struct sockaddr *)si, sizeof(*si)) < 0) in lws_plat_pipe_create()
/third_party/ltp/testcases/kernel/fs/fs_bind/rbind/
H A Dfs_bind_rbind25.sh19 EXPECT_PASS mount --bind share1 parent1/child1
H A Dfs_bind_rbind28.sh19 EXPECT_PASS mount --bind share1 parent1/child1
H A Dfs_bind_rbind26.sh19 EXPECT_PASS mount --bind share1 parent1/child1
/third_party/libwebsockets/lib/plat/windows/
H A Dwindows-pipe.c48 * Set the port to 0 at the bind, so lwip will choose a free one in the in lws_plat_pipe_create()
70 if (bind(fd[0], (const struct sockaddr *)si, sizeof(*si)) < 0) in lws_plat_pipe_create()
/third_party/mesa3d/src/gallium/frontends/dri/
H A Ddri_drawable.h107 unsigned *bind);
/third_party/mesa3d/src/gallium/winsys/virgl/drm/
H A Dvirgl_drm_winsys.h47 uint32_t bind; member
/third_party/node/test/fixtures/wpt/streams/readable-streams/
H A Dtemplated.any.js133 doClose = c.close.bind(c);
/third_party/node/test/known_issues/
H A Dtest-inspector-cluster-port-clash.js8 // `AssertionError [ERR_ASSERTION]: worker 2 failed to bind port`
42 return assert.fail(`worker ${worker.id} failed to bind port`);

Completed in 19 milliseconds

1...<<11121314151617181920>>...102