Home
last modified time | relevance | path

Searched refs:bind (Results 226 - 250 of 2413) sorted by relevance

12345678910>>...97

/third_party/node/deps/v8/src/codegen/ppc/
H A Dmacro-assembler-ppc.cc147 bind(&skip); in Jump()
173 bind(&skip); in Jump()
184 bind(&skip); in Jump()
258 bind(&skip); in Call()
279 bind(&skip); in CallBuiltin()
323 bind(&loop); in PushArray()
328 bind(&done); in PushArray()
336 bind(&loop); in PushArray()
340 bind(&done); in PushArray()
487 bind( in MultiPushF64AndV128()
[all...]
/third_party/node/lib/internal/per_context/
H A Dprimordials.js19 // `uncurryThis` is equivalent to `func => Function.prototype.call.bind(func)`.
20 // It is using `bind.bind(call)` to avoid using `Function.prototype.bind`
22 const { apply, bind, call } = Function.prototype;
23 const uncurryThis = bind.bind(call);
26 // `applyBind` is equivalent to `func => Function.prototype.apply.bind(func)`.
27 // It is using `bind.bind(appl
[all...]
/third_party/mesa3d/src/mesa/state_tracker/
H A Dst_cb_readpixels.c299 dst_templ.bind |= PIPE_BIND_DEPTH_STENCIL; in blit_to_staging()
301 dst_templ.bind |= PIPE_BIND_RENDER_TARGET; in blit_to_staging()
426 unsigned bind; in st_ReadPixels() local
474 bind = PIPE_BIND_DEPTH_STENCIL; in st_ReadPixels()
476 bind = PIPE_BIND_RENDER_TARGET; in st_ReadPixels()
480 dst_format = st_choose_matching_format(st, bind, format, type, in st_ReadPixels()
H A Dst_cb_texture.c161 GLenum gl_target, unsigned bind) in create_dst_texture()
171 dst_templ.bind = bind; in create_dst_texture()
291 GLenum format, GLenum type, unsigned bind) in st_pbo_get_dst_format()
297 enum pipe_format dst_format = st_choose_matching_format(st, bind, format, type, in st_pbo_get_dst_format()
354 if (bind && !screen->is_format_supported(screen, PIPE_FORMAT_R16_UNORM, in st_pbo_get_dst_format()
355 target, 0, 0, bind)) in st_pbo_get_dst_format()
360 if (bind && !screen->is_format_supported(screen, PIPE_FORMAT_R16_SNORM, in st_pbo_get_dst_format()
361 target, 0, 0, bind)) in st_pbo_get_dst_format()
366 if (bind in st_pbo_get_dst_format()
158 create_dst_texture(struct gl_context *ctx, enum pipe_format dst_format, enum pipe_texture_target pipe_target, GLsizei width, GLsizei height, GLint depth, GLenum gl_target, unsigned bind) create_dst_texture() argument
289 st_pbo_get_dst_format(struct gl_context *ctx, enum pipe_texture_target target, enum pipe_format src_format, bool is_compressed, GLenum format, GLenum type, unsigned bind) st_pbo_get_dst_format() argument
1898 unsigned bind; st_TexSubImage() local
2418 unsigned bind; st_GetTexSubImage() local
2756 unsigned bind; st_CopyTexSubImage() local
3113 st_texture_create_from_memory(struct st_context *st, struct gl_memory_object *memObj, GLuint64 offset, 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) st_texture_create_from_memory() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/
H A Dnv50_miptree.c75 if (unlikely(mt->base.base.bind & PIPE_BIND_CURSOR)) in nv50_mt_choose_storage_type()
131 if (mt->base.base.bind & PIPE_BIND_SCANOUT) { in nv50_mt_choose_storage_type()
151 if (mt->base.base.bind & PIPE_BIND_CURSOR) in nv50_mt_choose_storage_type()
350 if (pt->bind & PIPE_BIND_LINEAR) in nv50_miptree_create()
383 if (!bo_config.nv50.memtype && (pt->bind & PIPE_BIND_SHARED)) in nv50_miptree_create()
389 if (mt->base.base.bind & (PIPE_BIND_CURSOR | PIPE_BIND_DISPLAY_TARGET)) in nv50_miptree_create()
H A Dnv50_context.c212 unsigned bind = res->bind ? res->bind : PIPE_BIND_VERTEX_BUFFER; in nv50_invalidate_resource_storage() local
215 if (bind & PIPE_BIND_RENDER_TARGET) { in nv50_invalidate_resource_storage()
227 if (bind & PIPE_BIND_DEPTH_STENCIL) { in nv50_invalidate_resource_storage()
237 if (bind & (PIPE_BIND_VERTEX_BUFFER | in nv50_invalidate_resource_storage()
/third_party/node/deps/v8/src/codegen/arm/
H A Dmacro-assembler-arm.cc338 bind(&if_code_is_off_heap); in LoadCodeObjectEntry()
346 bind(&out); in LoadCodeObjectEntry()
427 bind(&loop); in PushArray()
431 bind(&entry); in PushArray()
437 bind(&loop); in PushArray()
440 bind(&entry); in PushArray()
659 bind(&ok); in RecordWriteField()
665 bind(&done); in RecordWriteField()
830 bind(&done); in CallRecordWriteStub()
1183 bind( in CallRecordWriteStub()
[all...]
/third_party/mesa3d/src/gallium/frontends/dri/
H A Ddrisw.c380 unsigned bind; in drisw_allocate_textures() local
386 dri_drawable_get_format(drawable, statts[i], &format, &bind); in drisw_allocate_textures()
390 bind |= PIPE_BIND_DISPLAY_TARGET; in drisw_allocate_textures()
396 templ.bind = bind; in drisw_allocate_textures()
410 templ.bind = templ.bind & in drisw_allocate_textures()
/third_party/mesa3d/src/gallium/frontends/osmesa/
H A Dosmesa.c438 templat.bind = 0; /* setup below */ in osmesa_st_framebuffer_validate()
443 unsigned bind = 0; in osmesa_st_framebuffer_validate() local
452 bind = PIPE_BIND_RENDER_TARGET; in osmesa_st_framebuffer_validate()
456 bind = PIPE_BIND_DEPTH_STENCIL; in osmesa_st_framebuffer_validate()
460 bind = PIPE_BIND_RENDER_TARGET; in osmesa_st_framebuffer_validate()
468 templat.bind = bind; in osmesa_st_framebuffer_validate()
/third_party/python/Lib/idlelib/
H A Dautocomplete_w.py16 # We need to bind event beyond <Key> so that the function will be called
162 """Show the autocomplete list, bind events.
211 # bind events
212 self.hideaid = acw.bind(HIDE_VIRTUAL_EVENT_NAME, self.hide_event)
213 self.hidewid = self.widget.bind(HIDE_VIRTUAL_EVENT_NAME, self.hide_event)
218 self.keypressid = self.widget.bind(KEYPRESS_VIRTUAL_EVENT_NAME,
222 self.keyreleaseid = self.widget.bind(KEYRELEASE_VIRTUAL_EVENT_NAME,
225 self.listupdateid = listbox.bind(LISTUPDATE_SEQUENCE,
228 self.winconfigid = acw.bind(WINCONFIG_SEQUENCE, self.winconfig_event)
229 self.doubleclickid = listbox.bind(DOUBLECLICK_SEQUENC
[all...]
/third_party/node/deps/v8/src/codegen/mips/
H A Dmacro-assembler-mips.cc167 bind(&ok); in RecordWriteField()
173 bind(&done); in RecordWriteField()
329 bind(&done); in CallRecordWriteStub()
935 bind(&skip); in CallRecordWriteStub()
946 bind(&skip); in CallRecordWriteStub()
1523 bind(&done); in CallRecordWriteStub()
1580 bind(&done); in CallRecordWriteStub()
1632 bind(&done); in CallRecordWriteStub()
1776 bind(&is_nan); in CallRecordWriteStub()
1781 bind( in CallRecordWriteStub()
[all...]
/device/soc/rockchip/common/hardware/display/src/display_device/
H A Dhdi_netlink_monitor.cpp39 mThread = std::make_unique<std::thread>(std::bind(&HdiNetLinkMonitor::MonitorThread, this)); in Init()
72 ret = bind(fd, (struct sockaddr *)&snl, sizeof(struct sockaddr_nl)); in ThreadInit()
74 DISPLAY_LOGE("bind fail"); in ThreadInit()
/device/soc/rockchip/rk3399/hardware/display/src/display_device/
H A Dhdi_netlink_monitor.cpp39 mThread = std::make_unique<std::thread>(std::bind(&HdiNetLinkMonitor::MonitorThread, this)); in Init()
72 ret = bind(fd, (struct sockaddr *)&snl, sizeof(struct sockaddr_nl)); in ThreadInit()
74 DISPLAY_LOGE("bind fail"); in ThreadInit()
/device/soc/rockchip/rk3566/hardware/display/src/display_device/
H A Dhdi_netlink_monitor.cpp34 mThread = std::make_unique<std::thread>(std::bind(&HdiNetLinkMonitor::MonitorThread, this)); in Init()
67 ret = bind(fd, reinterpret_cast<struct sockaddr *>(&snl), sizeof(struct sockaddr_nl)); in ThreadInit()
69 DISPLAY_LOGE("bind fail"); in ThreadInit()
/device/soc/rockchip/rk3568/hardware/display/src/display_device/
H A Dhdi_netlink_monitor.cpp34 mThread = std::make_unique<std::thread>(std::bind(&HdiNetLinkMonitor::MonitorThread, this)); in Init()
67 ret = bind(fd, reinterpret_cast<struct sockaddr *>(&snl), sizeof(struct sockaddr_nl)); in ThreadInit()
69 DISPLAY_LOGE("bind fail"); in ThreadInit()
/device/soc/rockchip/rk3588/hardware/display/src/display_device/
H A Dhdi_netlink_monitor.cpp34 mThread = std::make_unique<std::thread>(std::bind(&HdiNetLinkMonitor::MonitorThread, this)); in Init()
66 ret = bind(fd, reinterpret_cast<struct sockaddr *>(&snl), sizeof(struct sockaddr_nl)); in ThreadInit()
68 DISPLAY_LOGE("bind fail"); in ThreadInit()
/third_party/elfio/examples/tutorial/
H A Dtutorial.cpp90 unsigned char bind; in main() local
96 symbols.get_symbol( j, name, value, size, bind, type, in main()
/third_party/ltp/testcases/kernel/fs/fs_bind/rbind/
H A Dfs_bind_rbind27.sh20 EXPECT_PASS mount --bind share1 parent1/child1
21 EXPECT_PASS mount --bind share2 parent2
/third_party/mesa3d/src/gallium/drivers/svga/
H A Dsvga_format.h79 unsigned bind);
129 unsigned bind,
/third_party/node/lib/internal/
H A Ddgram.js54 handle.bind = handle.bind6;
76 err = handle.bind(address, port || 0, flags);
/third_party/node/test/parallel/
H A Dtest-cluster-bind-twice.js37 // that is routed to the second worker. When it tries to bind, it expects to
111 worker.on('message', process.send.bind(process));
112 process.on('message', worker.send.bind(worker));
H A Dtest-cluster-dgram-bind-fd.js26 const err = rawHandle.bind(common.localhostIPv4, 0, 0);
107 socket.bind({
H A Dtest-dgram-send-error.js16 socket.bind(common.mustCall(() => {
49 socket.bind(common.mustCall(() => {
/third_party/node/test/pummel/
H A Dtest-stream-pipe-multi.js50 process.nextTick(this.emit.bind(this, 'drain'));
58 process.nextTick(this.close.bind(this));
/third_party/ltp/testcases/kernel/syscalls/bind/
H A Dbind01.c51 TST_EXP_FAIL(bind(*tcase->socket_fd, tcase->sockaddr, tcase->salen), in verify_bind()
54 TST_EXP_PASS(bind(*tcase->socket_fd, tcase->sockaddr, tcase->salen), in verify_bind()

Completed in 22 milliseconds

12345678910>>...97