/third_party/mesa3d/src/gallium/drivers/svga/ |
H A D | svga_format.c | 293 unsigned bind) in svga_translate_format() 298 if (bind & (PIPE_BIND_VERTEX_BUFFER | PIPE_BIND_INDEX_BUFFER)) { in svga_translate_format() 301 else if (bind & PIPE_BIND_SCANOUT) { in svga_translate_format() 304 else if (bind & PIPE_BIND_SHADER_IMAGE) { in svga_translate_format() 348 return bind & PIPE_BIND_SAMPLER_VIEW ? ss->depth.z16 : SVGA3D_Z_D16; in svga_translate_format() 351 return bind & PIPE_BIND_SAMPLER_VIEW ? ss->depth.s8z24 : SVGA3D_Z_D24S8; in svga_translate_format() 354 return bind & PIPE_BIND_SAMPLER_VIEW ? ss->depth.x8z24 : SVGA3D_Z_D24X8; in svga_translate_format() 2130 * \param bind[in] bind flags of the imported texture. 2137 unsigned bind, in svga_format_is_shareable() 291 svga_translate_format(const struct svga_screen *ss, enum pipe_format format, unsigned bind) svga_translate_format() argument 2134 svga_format_is_shareable(const struct svga_screen *ss, enum pipe_format pformat, SVGA3dSurfaceFormat sformat, unsigned bind, bool verbose) svga_format_is_shareable() argument [all...] |
/foundation/communication/bluetooth_service/services/bluetooth/service/src/gatt/gas/ |
H A D | generic_access_service.cpp | 106 service_.dispatcher_.PostTask(std::bind(&GenericAccessService::OnDeviceNameChanged, &service_, deviceName)); in OnDeviceNameChanged() 112 service_.dispatcher_.PostTask(std::bind(&GenericAccessService::OnAdvertisingStateChanged, &service_, state)); in OnAdvertisingStateChanged() 136 service_.dispatcher_.PostTask(std::bind(&GenericAccessService::OnScanModeChanged, &service_, mode)); in OnScanModeChanged() 141 service_.dispatcher_.PostTask(std::bind(&GenericAccessService::OnDeviceNameChanged, &service_, deviceName)); in OnDeviceNameChanged()
|
/foundation/communication/bluetooth_service/services/bluetooth/stack/src/avctp/ |
H A D | avctp_ctrl_act.c | 81 * created,and try to bind it. 98 * Description This function is called when the control bind failed. 183 bool bind = false; in AvctCbCtrlChConnInd() local 190 bind = true; in AvctCbCtrlChConnInd() 194 /* bind the connection(ACCEPT) to the device */ in AvctCbCtrlChConnInd() 195 bind = true; in AvctCbCtrlChConnInd() 209 /* can not bind to conn,send disconnect */ in AvctCbCtrlChConnInd() 210 if (!bind) { in AvctCbCtrlChConnInd()
|
/third_party/mesa3d/src/gallium/frontends/dri/ |
H A D | dri_drawable.c | 317 unsigned *bind) in dri_drawable_get_format() 330 *bind = PIPE_BIND_RENDER_TARGET | PIPE_BIND_SAMPLER_VIEW; in dri_drawable_get_format() 334 *bind = PIPE_BIND_DEPTH_STENCIL; /* XXX sampler? */ in dri_drawable_get_format() 338 *bind = 0; in dri_drawable_get_format() 314 dri_drawable_get_format(struct dri_drawable *drawable, enum st_attachment_type statt, enum pipe_format *format, unsigned *bind) dri_drawable_get_format() argument
|
/third_party/mesa3d/src/gallium/auxiliary/vl/ |
H A D | vl_video_buffer.c | 190 templ->bind = PIPE_BIND_SAMPLER_VIEW | PIPE_BIND_RENDER_TARGET | tmpl->bind; in vl_video_buffer_template() 485 templ.bind = PIPE_BIND_SAMPLER_VIEW | PIPE_BIND_RENDER_TARGET | tmpl->bind; in vl_video_buffer_create_as_resource()
|
/third_party/mesa3d/src/gallium/drivers/d3d12/ |
H A D | d3d12_surface.cpp | 236 unsigned bind = is_depth_or_stencil ? PIPE_BIND_DEPTH_STENCIL : PIPE_BIND_RENDER_TARGET; in d3d12_create_surface() local 240 tpl->nr_samples, tpl->nr_samples,bind)) in d3d12_create_surface() 337 templ.bind = src->bind; in d3d12_surface_update_pre_draw()
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
H A D | nvc0_miptree.c | 192 if (unlikely(mt->base.base.bind & PIPE_BIND_CURSOR)) in nvc0_mt_choose_storage_type() 482 if (pt->bind & PIPE_BIND_LINEAR) in nvc0_miptree_create() 531 if (!bo_config.nvc0.memtype && (pt->usage == PIPE_USAGE_STAGING || pt->bind & PIPE_BIND_SHARED)) in nvc0_miptree_create() 538 if (mt->base.base.bind & (PIPE_BIND_CURSOR | PIPE_BIND_DISPLAY_TARGET)) in nvc0_miptree_create()
|
/third_party/python/Lib/idlelib/ |
H A D | query.py | 66 self.bind("<Command-.>", self.cancel) 67 self.bind('<Key-Escape>', self.cancel) 69 self.bind('<Key-Return>', self.ok) 70 self.bind("<KP_Enter>", self.ok) 140 '''If entry is valid, bind it to 'result' and destroy tk widget.
|
/third_party/pulseaudio/src/modules/rtp/ |
H A D | module-rtp-send.c | 366 if (af == AF_INET && bind(fd, (struct sockaddr*) &src_sa4, sizeof(src_sa4)) < 0) { in pa__init() 367 pa_log("bind() failed: %s", pa_cstrerror(errno)); in pa__init() 370 } else if (af == AF_INET6 && bind(fd, (struct sockaddr*) &src_sa6, sizeof(src_sa6)) < 0) { in pa__init() 371 pa_log("bind() failed: %s", pa_cstrerror(errno)); in pa__init() 391 if (af == AF_INET && bind(sap_fd, (struct sockaddr*) &src_sap_sa4, sizeof(src_sap_sa4)) < 0) { in pa__init() 392 pa_log("bind() failed: %s", pa_cstrerror(errno)); in pa__init() 395 } else if (af == AF_INET6 && bind(sap_fd, (struct sockaddr*) &src_sap_sa6, sizeof(src_sap_sa6)) < 0) { in pa__init() 396 pa_log("bind() failed: %s", pa_cstrerror(errno)); in pa__init()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | RenderbufferVk.cpp | 78 mImageObserverBinding.bind(mImage); in setStorageImpl() 170 mImageObserverBinding.bind(mImage); in setStorageEGLImageTarget() 276 mImageObserverBinding.bind(nullptr); in releaseAndDeleteImage() 291 mImageObserverBinding.bind(nullptr); in releaseImage()
|
/third_party/python/Lib/turtledemo/ |
H A D | __main__.py | 232 text.bind('<Control-MouseWheel>', self.update_mousewheel) 233 text.bind('<Control-Button-4>', self.increase_size) 234 text.bind('<Control-Button-5>', self.decrease_size) 251 canvas._rootwindow.bind('<Configure>', self.onResize)
|
/third_party/rust/crates/nix/test/sys/ |
H A D | test_sockopt.rs | 96 use nix::sys::socket::{accept, bind, connect, listen, SockaddrIn}; in test_so_tcp_maxseg() 111 bind(rsock, &sock_addr).unwrap(); in test_so_tcp_maxseg() 270 use nix::sys::socket::{bind, connect, SockaddrIn}; in test_get_mtu() 286 bind(usock, &SockaddrIn::from(std_sa)).unwrap(); in test_get_mtu()
|
/kernel/linux/linux-5.10/arch/alpha/include/asm/ |
H A D | agp_backend.h | 37 int (*bind)(alpha_agp_info *, off_t, struct agp_memory *); member
|
/kernel/linux/linux-6.6/arch/alpha/include/asm/ |
H A D | agp_backend.h | 37 int (*bind)(alpha_agp_info *, off_t, struct agp_memory *); member
|
/third_party/ltp/testcases/kernel/fs/fs_bind/move/ |
H A D | fs_bind_move20.sh | 18 EXPECT_PASS mount --bind "$FS_BIND_DISK1" parent1/child1
|
H A D | fs_bind_move15.sh | 18 EXPECT_PASS mount --bind parent2 share2
|
H A D | fs_bind_move14.sh | 22 EXPECT_PASS mount --bind parent2 share2
|
H A D | fs_bind_move13.sh | 18 EXPECT_PASS mount --bind parent2 share2
|
/third_party/ltp/testcases/kernel/fs/fs_bind/rbind/ |
H A D | fs_bind_rbind39.sh | 17 EXPECT_PASS mount --bind "$FS_BIND_DISK1" parent1/child1
|
/third_party/mesa3d/src/gallium/frontends/clover/core/ |
H A D | sampler.hpp | 49 void *bind(command_queue &q);
|
/third_party/node/test/parallel/ |
H A D | test-dgram-send-callback-recursive.js | 43 client.bind(0);
|
H A D | test-microtask-queue-integration.js | 61 process.nextTick(test.bind(null, impl));
|
/third_party/node/deps/npm/node_modules/retry/example/ |
H A D | stop.js | 39 return setImmediate(cb.bind(null, new Error('A fatal error')));
|
/third_party/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_upload_mgr.h | 50 * \param bind Bitmask of PIPE_BIND_* flags. 56 unsigned bind, enum pipe_resource_usage usage, unsigned flags);
|
/third_party/mesa3d/src/panfrost/lib/ |
H A D | pan_format.h | 41 unsigned bind; member
|