Home
last modified time | relevance | path

Searched refs:bind (Results 351 - 375 of 2549) sorted by relevance

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

/third_party/jerryscript/tests/jerry/
H A Dregression-test-issue-3648.js16 var boundFunc = func.bind();
/third_party/ltp/testcases/kernel/fs/fs_bind/cloneNS/
H A Dfs_bind_cloneNS03.sh15 EXPECT_PASS mount --bind "$FS_BIND_DISK1" dir1
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_buffer.c104 if (res->b.b.bind & (PIPE_BIND_SHARED | PIPE_BIND_SCANOUT)) in si_init_resource_fields()
109 if (res->b.b.bind & PIPE_BIND_PROTECTED || in si_init_resource_fields()
112 res->b.b.bind & (PIPE_BIND_SCANOUT | PIPE_BIND_DEPTH_STENCIL))) in si_init_resource_fields()
290 sdst->b.b.bind = ssrc->b.b.bind; in si_replace_buffer_storage()
611 buffer.bind = 0; in pipe_aligned_buffer_create()
/third_party/node/lib/
H A Ddgram.js195 newHandle.bind = oldHandle.bind;
237 Socket.prototype.bind = function(port_, address_ /* , callback */) {
321 // Defaulting address for bind to all interfaces
354 const ex = exceptionWithHostPort(err, 'bind', ip, port);
362 const err = state.handle.bind(ip, port || 0, flags);
364 const ex = exceptionWithHostPort(err, 'bind', ip, port);
396 this.bind({ port: 0, exclusive: true }, null);
650 this.bind({ port: 0, exclusive: true }, null);
/third_party/jerryscript/tests/jerry/es2015/
H A Dfunction-properties.js40 var bound_func = (function() {}).bind(null);
/third_party/node/test/parallel/
H A Dtest-env-newprotomethod-remove-unnecessary-prototypes.js14 internalBinding('tcp_wrap').TCP.prototype.bind,
H A Dtest-dgram-send-callback-recursive.js43 client.bind(0);
H A Dtest-microtask-queue-integration.js61 process.nextTick(test.bind(null, impl));
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DObserver_unittest.cpp35 binding.bind(&subject); in TEST()
/third_party/mesa3d/src/gallium/drivers/v3d/
H A Dv3d_resource.c186 if (prsc->bind & PIPE_BIND_VERTEX_BUFFER) in v3d_map_usage_prep()
188 if (prsc->bind & PIPE_BIND_CONSTANT_BUFFER) in v3d_map_usage_prep()
197 if (prsc->bind & PIPE_BIND_SAMPLER_VIEW) in v3d_map_usage_prep()
780 if (tmpl->bind & (PIPE_BIND_LINEAR | PIPE_BIND_CURSOR)) in v3d_resource_create_with_modifiers()
792 tmpl->bind & (PIPE_BIND_SHARED | PIPE_BIND_SCANOUT)) in v3d_resource_create_with_modifiers()
798 if (tmpl->bind & PIPE_BIND_SCANOUT) in v3d_resource_create_with_modifiers()
818 v3d_setup_slices(rsc, 0, tmpl->bind & PIPE_BIND_SHARED); in v3d_resource_create_with_modifiers()
820 if (screen->ro && (tmpl->bind & PIPE_BIND_SCANOUT)) { in v3d_resource_create_with_modifiers()
/third_party/mesa3d/src/gallium/drivers/freedreno/
H A Dfreedreno_resource.c201 COND(prsc->bind & PIPE_BIND_SHARED, FD_BO_SHARED) | in realloc_bo()
202 COND(prsc->bind & PIPE_BIND_SCANOUT, FD_BO_SCANOUT); in realloc_bo()
214 prsc->height0, prsc->depth0, rsc->layout.cpp, prsc->bind); in realloc_bo()
605 tmpl.bind |= PIPE_BIND_LINEAR;
1083 assert(prsc->bind == PIPE_BIND_QUERY_BUFFER); in fd_resource_resize()
1168 if (tmpl->bind & PIPE_BIND_LINEAR) { in get_best_layout()
1170 perf_debug("%" PRSC_FMT ": forcing linear: bind flags", in get_best_layout()
1179 if (implicit_modifiers && (tmpl->bind & PIPE_BIND_SHARED)) { in get_best_layout()
1254 if (tmpl->bind & PIPE_BIND_SHARED) in fd_resource_allocate_and_resolve()
1286 assert(prsc->bind in fd_resource_allocate_and_resolve()
[all...]
/third_party/python/Lib/test/
H A Dtest_socket.py268 self.s.bind((self.interface,))
287 self.skipTest('unable to bind RDS socket')
454 self.cli.bind((self.interface,))
475 self.cli.bind((HOST, 0))
501 self.serv.bind((socket.VMADDR_CID_ANY, VSOCKPORT))
587 and bindSock(sock) to bind it to an unused address.
845 s.bind(('127.0.0.1', 0))
891 s.bind(('', 0))
964 "_accept", "bind", "connect", "connect_ex", "getpeername",
1400 sock.bind(("0.
5545 def bind(self, sock, path): global() member in TestUnixDomain
[all...]
/third_party/node/deps/v8/src/compiler/backend/ia32/
H A Dcode-generator-ia32.cc444 __ bind(&binop); \
456 __ bind(&binop); \
687 __ bind(&skip); in BailoutIfDeoptimized()
857 __ bind(&return_location); in AssembleArchInstruction()
962 __ bind(ool->exit()); in AssembleArchInstruction()
998 __ bind(ool->exit()); in AssembleArchInstruction()
1301 __ bind(&compare_swap); in AssembleArchInstruction()
1307 __ bind(&done_compare); in AssembleArchInstruction()
1308 __ bind(ool->exit()); in AssembleArchInstruction()
1327 __ bind( in AssembleArchInstruction()
[all...]
/third_party/mesa3d/src/gallium/drivers/d3d12/
H A Dd3d12_resource.cpp154 if (templ->bind & PIPE_BIND_SAMPLER_VIEW) in init_buffer()
224 if (templ->bind & PIPE_BIND_SHADER_BUFFER) in init_texture()
227 if (templ->bind & PIPE_BIND_RENDER_TARGET) in init_texture()
230 if (templ->bind & PIPE_BIND_DEPTH_STENCIL) { in init_texture()
253 if (templ->bind & (PIPE_BIND_SCANOUT | PIPE_BIND_LINEAR)) in init_texture()
285 if (screen->winsys && (templ->bind & PIPE_BIND_DISPLAY_TARGET)) { in init_texture()
288 res->base.b.bind, in init_texture()
504 res->base.b.bind = PIPE_BIND_VERTEX_BUFFER | PIPE_BIND_CONSTANT_BUFFER | in d3d12_resource_from_handle()
529 res->base.b.bind |= PIPE_BIND_SHARED; in d3d12_resource_from_handle()
531 res->base.b.bind | in d3d12_resource_from_handle()
[all...]
/applications/standard/app_samples/code/BasicFeature/Connectivity/StageSocket/server_python/
H A DTCP_Server.py58 server_socket.bind(('192.168.18.57', 9090))
/third_party/ltp/testcases/kernel/fs/fs_bind/move/
H A Dfs_bind_move20.sh18 EXPECT_PASS mount --bind "$FS_BIND_DISK1" parent1/child1
H A Dfs_bind_move15.sh18 EXPECT_PASS mount --bind parent2 share2
H A Dfs_bind_move14.sh22 EXPECT_PASS mount --bind parent2 share2
H A Dfs_bind_move13.sh18 EXPECT_PASS mount --bind parent2 share2
/third_party/ltp/testcases/kernel/fs/fs_bind/rbind/
H A Dfs_bind_rbind39.sh17 EXPECT_PASS mount --bind "$FS_BIND_DISK1" parent1/child1
/third_party/mesa3d/src/gallium/frontends/clover/core/
H A Dsampler.hpp49 void *bind(command_queue &q);
/third_party/node/deps/npm/node_modules/retry/example/
H A Dstop.js39 return setImmediate(cb.bind(null, new Error('A fatal error')));
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_upload_mgr.h50 * \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 Dpan_format.h41 unsigned bind; member
/third_party/musl/libc-test/src/functionalext/supplement/network/
H A Dshutdown.c37 bind(sd, (struct sockaddr *)(&server_addr), sizeof(server_addr)); in shutdown_0100()

Completed in 18 milliseconds

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