/third_party/mesa3d/src/gallium/frontends/nine/ |
H A D | iunknown.c | 40 This->bind = 0; in NineUnknown_ctor() 45 This->bind = 1; in NineUnknown_ctor() 49 This->bind = 0; in NineUnknown_ctor() 147 if (!This->container && This->bind == 0) { in NineUnknown_Release() 170 if (!This->container && This->bind == 0) { in NineUnknown_ReleaseWithDtorLock()
|
/third_party/node/test/async-hooks/ |
H A D | init-hooks.js | 48 init: this._init.bind(this), 49 before: this._before.bind(this), 50 after: this._after.bind(this), 51 destroy: this._destroy.bind(this), 52 promiseResolve: this._promiseResolve.bind(this),
|
/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/ |
H A D | scheduler_test.cpp | 32 scheduler->bind(); in TEST_F() 65 (new marl::Scheduler(marl::Scheduler::Config()))->bind(); in TEST_P() 94 (new marl::Scheduler(marl::Scheduler::Config()))->bind(); in TEST_P() 140 scheduler->bind(); in TEST_P() 164 scheduler->bind(); in TEST_F() 223 "Did you forget to call marl::Scheduler::bind"); in TEST_F()
|
/third_party/node/test/parallel/ |
H A D | test-stream2-readable-empty-buffer-no-eof.js | 56 return setImmediate(r.read.bind(r, 0)); 58 setImmediate(r.read.bind(r, 0)); 63 setImmediate(r.read.bind(r, 0));
|
H A D | test-cluster-disconnect-unshared-tcp.js | 30 const unbound = cluster.fork().on('online', bind); 32 function bind() {
|
/third_party/typescript/tests/baselines/reference/ |
H A D | privateNameMethodCallExpression.js | 50 const str = __classPrivateFieldGet(this, _AA_instances, "m", _AA_method2).bind(this) `head${1}middle${2}tail`;
51 __classPrivateFieldGet((_a = this.getInstance()), _AA_instances, "m", _AA_method2).bind(_a) `test${1}and${2}`;
54 const str2 = __classPrivateFieldGet((_c = this.getInstance()), _AA_instances, "m", _AA_method2).bind(_c) `head${1}middle${2}tail`;
|
H A D | strictBindCallApply2.js | 9 const fb = fn.bind({ blub: "blub" }); 16 var fb = fn.bind({ blub: "blub" });
|
H A D | thisTypeOptionalCall.js | 3 return fn?.bind(obj); 8 return fn === null || fn === void 0 ? void 0 : fn.bind(obj);
|
/third_party/skia/modules/skottie/src/effects/ |
H A D | GaussianBlurEffect.cpp | 45 .bind(kBlurriness_Index, fBlurriness) in GaussianBlurEffectAdapter() 46 .bind(kDimensions_Index, fDimensions) in GaussianBlurEffectAdapter() 47 .bind(kRepeatEdge_Index, fRepeatEdge); in GaussianBlurEffectAdapter()
|
H A D | TintEffect.cpp | 48 .bind(kMapBlackTo_Index, fMapBlackTo) in TintAdapter() 49 .bind(kMapWhiteTo_Index, fMapWhiteTo) in TintAdapter() 50 .bind( kAmount_Index, fAmount ); in TintAdapter()
|
H A D | BuldgeEffect.cpp | 179 EffectBinder(jprops, abuilder, this).bind(kHorizontalRadius_Index, fHorizontalRadius) in BulgeEffectAdapter() 180 .bind(kVerticalRadius_Index, fVerticalRadius) in BulgeEffectAdapter() 181 .bind(kBulgeCenter_Index, fCenter) in BulgeEffectAdapter() 182 .bind(kBulgeHeight_Index, fBulgeHeight); in BulgeEffectAdapter()
|
/third_party/jerryscript/tests/jerry/ |
H A D | regression-test-issue-2805.js | 15 var arrayBindNoArgs = Array.bind (this); 16 var bindWithArgs = arrayBindNoArgs.bind (this, 1, 2);
|
/third_party/musl/src/network/ |
H A D | bind.c | 4 int bind(int fd, const struct sockaddr *addr, socklen_t len) in bind() function 6 return socketcall(bind, fd, addr, len, 0, 0, 0); in bind()
|
/third_party/node/deps/npm/node_modules/hasown/ |
H A D | index.js | 5 var bind = require('function-bind'); variable 8 module.exports = bind.call(call, $hasOwn);
|
/third_party/node/deps/v8/src/regexp/x64/ |
H A D | regexp-macro-assembler-x64.cc | 113 __ bind(&start_label_); // And then continue from here. in RegExpMacroAssemblerX64() 166 __ bind(&next); in Backtrack() 176 __ bind(label); in Bind() 216 __ bind(&fallthrough); in CheckGreedyLoop() 286 __ bind(&loop); in CheckNotBackReferenceIgnoreCase() 310 __ bind(&loop_increment); in CheckNotBackReferenceIgnoreCase() 391 __ bind(&fallthrough); in CheckNotBackReferenceIgnoreCase() 438 __ bind(&loop); in CheckNotBackReference() 465 __ bind(&fallthrough); in CheckNotBackReference() 603 __ bind( in CheckSpecialCharacterClass() [all...] |
/third_party/python/Tools/demo/ |
H A D | spreadsheet.py | 521 self.entry.bind("<Return>", self.return_event) 522 self.entry.bind("<Shift-Return>", self.shift_return_event) 523 self.entry.bind("<Tab>", self.tab_event) 524 self.entry.bind("<Shift-Tab>", self.shift_tab_event) 525 self.entry.bind("<Delete>", self.delete_event) 526 self.entry.bind("<Escape>", self.escape_event) 572 cell.bind("<ButtonPress-1>", self.selectall) 581 cell.bind("<ButtonPress-1>", self.selectcolumn) 582 cell.bind("<B1-Motion>", self.extendcolumn) 583 cell.bind("<ButtonReleas [all...] |
/third_party/python/Lib/test/support/ |
H A D | socket_helper.py | 43 Unix/Linux. On Unix, you can't have two AF_INET SOCK_STREAM sockets bind, 46 the order bind and listen were called on each socket). 49 will ever be raised when attempting to bind two identical host/ports. When 70 calling code has a chance to bind the returned port. We can deal with this 91 from bind()'ing to our host/port for the duration of the test. 114 sock.bind((host, 0)) 122 sock.bind(addr) 125 raise unittest.SkipTest('cannot bind AF_UNIX sockets') 133 sock.bind((HOSTv6, 0)) 147 """Decorator for tests requiring a functional bind() fo [all...] |
/third_party/node/deps/v8/src/regexp/arm/ |
H A D | regexp-macro-assembler-arm.cc | 112 __ bind(&start_label_); // And then continue from here. in RegExpMacroAssemblerARM() 172 __ bind(&next); in Backtrack() 181 __ bind(label); in Bind() 269 __ bind(&loop); in CheckNotBackReferenceIgnoreCase() 290 __ bind(&loop_check); in CheckNotBackReferenceIgnoreCase() 295 __ bind(&fail); in CheckNotBackReferenceIgnoreCase() 298 __ bind(&success); in CheckNotBackReferenceIgnoreCase() 357 __ bind(&fallthrough); in CheckNotBackReferenceIgnoreCase() 396 __ bind(&loop); in CheckNotBackReference() 419 __ bind( in CheckNotBackReference() [all...] |
/third_party/mesa3d/src/gallium/drivers/virgl/tests/ |
H A D | virgl_staging_mgr_test.cpp | 38 uint32_t bind; member 47 uint32_t format, uint32_t bind, in fake_resource_create() 58 hw_res->bind = bind; in fake_resource_create() 321 uint32_t format, uint32_t bind, in failing_resource_create() 388 EXPECT_EQ(out_resource->bind, VIRGL_BIND_STAGING); in TEST_F() 44 fake_resource_create(struct virgl_winsys *vws, enum pipe_texture_target target, const void *map_front_private, uint32_t format, uint32_t bind, uint32_t width, uint32_t height, uint32_t depth, uint32_t array_size, uint32_t last_level, uint32_t nr_samples, uint32_t flags, uint32_t size) fake_resource_create() argument 318 failing_resource_create(struct virgl_winsys *vws, enum pipe_texture_target target, const void *map_front_private, uint32_t format, uint32_t bind, uint32_t width, uint32_t height, uint32_t depth, uint32_t array_size, uint32_t last_level, uint32_t nr_samples, uint32_t flags, uint32_t size) failing_resource_create() argument
|
/third_party/node/deps/npm/node_modules/@pkgjs/parseargs/internal/ |
H A D | primordials.js | 46 // `uncurryThis` is equivalent to `func => Function.prototype.call.bind(func)`. 47 // It is using `bind.bind(call)` to avoid using `Function.prototype.bind` 49 const { apply, bind, call } = Function.prototype; 50 const uncurryThis = bind.bind(call); 53 // `applyBind` is equivalent to `func => Function.prototype.apply.bind(func)`. 54 // It is using `bind.bind(appl [all...] |
/kernel/linux/linux-6.6/net/sched/ |
H A D | act_csum.c | 49 bool bind = flags & TCA_ACT_FLAGS_BIND; in tcf_csum_init() local 70 err = tcf_idr_check_alloc(tn, &index, a, bind); in tcf_csum_init() 73 &act_csum_ops, bind, flags); in tcf_csum_init() 80 if (bind)/* dont override defaults */ in tcf_csum_init() 83 tcf_idr_release(*a, bind); in tcf_csum_init() 119 tcf_idr_release(*a, bind); in tcf_csum_init() 631 static int tcf_csum_dump(struct sk_buff *skb, struct tc_action *a, int bind, in tcf_csum_dump() argument 640 .bindcnt = atomic_read(&p->tcf_bindcnt) - bind, in tcf_csum_dump() 682 u32 *index_inc, bool bind, in tcf_csum_offload_act_setup() 685 if (bind) { in tcf_csum_offload_act_setup() 681 tcf_csum_offload_act_setup(struct tc_action *act, void *entry_data, u32 *index_inc, bool bind, struct netlink_ext_ack *extack) tcf_csum_offload_act_setup() argument [all...] |
H A D | act_police.c | 46 bool bind = flags & TCA_ACT_FLAGS_BIND; in tcf_police_init() local 75 err = tcf_idr_check_alloc(tn, &index, a, bind); in tcf_police_init() 79 if (exists && bind) in tcf_police_init() 84 &act_police_ops, bind, true, flags); in tcf_police_init() 92 tcf_idr_release(*a, bind); in tcf_police_init() 229 tcf_idr_release(*a, bind); in tcf_police_init() 341 int bind, int ref) in tcf_police_dump() 349 .bindcnt = atomic_read(&police->tcf_bindcnt) - bind, in tcf_police_dump() 439 u32 *index_inc, bool bind, in tcf_police_offload_act_setup() 442 if (bind) { in tcf_police_offload_act_setup() 340 tcf_police_dump(struct sk_buff *skb, struct tc_action *a, int bind, int ref) tcf_police_dump() argument 438 tcf_police_offload_act_setup(struct tc_action *act, void *entry_data, u32 *index_inc, bool bind, struct netlink_ext_ack *extack) tcf_police_offload_act_setup() argument [all...] |
H A D | act_gate.c | 306 bool bind = flags & TCA_ACT_FLAGS_BIND; in tcf_gate_init() local 354 err = tcf_idr_check_alloc(tn, &index, a, bind); in tcf_gate_init() 358 if (err && bind) in tcf_gate_init() 363 &act_gate_ops, bind, flags); in tcf_gate_init() 371 tcf_idr_release(*a, bind); in tcf_gate_init() 458 tcf_idr_release(*a, bind); in tcf_gate_init() 504 int bind, int ref) in tcf_gate_dump() 511 .bindcnt = atomic_read(&gact->tcf_bindcnt) - bind, in tcf_gate_dump() 608 u32 *index_inc, bool bind, in tcf_gate_offload_act_setup() 613 if (bind) { in tcf_gate_offload_act_setup() 503 tcf_gate_dump(struct sk_buff *skb, struct tc_action *a, int bind, int ref) tcf_gate_dump() argument 607 tcf_gate_offload_act_setup(struct tc_action *act, void *entry_data, u32 *index_inc, bool bind, struct netlink_ext_ack *extack) tcf_gate_offload_act_setup() argument [all...] |
/kernel/linux/linux-5.10/net/sched/ |
H A D | act_police.c | 49 int ovr, int bind, bool rtnl_held, in tcf_police_init() 81 err = tcf_idr_check_alloc(tn, &index, a, bind); in tcf_police_init() 85 if (exists && bind) in tcf_police_init() 90 &act_police_ops, bind, true, flags); in tcf_police_init() 98 tcf_idr_release(*a, bind); in tcf_police_init() 212 tcf_idr_release(*a, bind); in tcf_police_init() 314 int bind, int ref) in tcf_police_dump() 322 .bindcnt = atomic_read(&police->tcf_bindcnt) - bind, in tcf_police_dump() 47 tcf_police_init(struct net *net, struct nlattr *nla, struct nlattr *est, struct tc_action **a, int ovr, int bind, bool rtnl_held, struct tcf_proto *tp, u32 flags, struct netlink_ext_ack *extack) tcf_police_init() argument 313 tcf_police_dump(struct sk_buff *skb, struct tc_action *a, int bind, int ref) tcf_police_dump() argument
|
H A D | act_mpls.c | 161 int ovr, int bind, bool rtnl_held, in tcf_mpls_init() 248 err = tcf_idr_check_alloc(tn, &index, a, bind); in tcf_mpls_init() 252 if (exists && bind) in tcf_mpls_init() 257 &act_mpls_ops, bind, true, flags); in tcf_mpls_init() 265 tcf_idr_release(*a, bind); in tcf_mpls_init() 308 tcf_idr_release(*a, bind); in tcf_mpls_init() 323 int bind, int ref) in tcf_mpls_dump() 331 .bindcnt = atomic_read(&m->tcf_bindcnt) - bind, in tcf_mpls_dump() 159 tcf_mpls_init(struct net *net, struct nlattr *nla, struct nlattr *est, struct tc_action **a, int ovr, int bind, bool rtnl_held, struct tcf_proto *tp, u32 flags, struct netlink_ext_ack *extack) tcf_mpls_init() argument 322 tcf_mpls_dump(struct sk_buff *skb, struct tc_action *a, int bind, int ref) tcf_mpls_dump() argument
|