Home
last modified time | relevance | path

Searched refs:cw (Results 1 – 25 of 170) sorted by relevance

1234567

/third_party/node/deps/v8/src/heap/
Dmarking-worklist.cc37 for (auto cw : context_worklists_) { in Clear() local
38 if (cw.context == kSharedContext || cw.context == kOtherContext) { in Clear()
42 cw.worklist->Clear(); in Clear()
119 for (auto& cw : global->context_worklists()) { in Local() local
120 worklist_by_context_[cw.context] = in Local()
121 std::make_unique<MarkingWorklist::Local>(cw.worklist); in Local()
132 for (auto& cw : worklist_by_context_) { in ~Local() local
133 if (cw.first != active_context_) { in ~Local()
134 DCHECK(cw.second->IsLocalEmpty()); in ~Local()
145 for (auto& cw : worklist_by_context_) { in Publish() local
[all …]
Dmarking-worklist-inl.h23 for (auto cw : context_worklists_) { in Update() local
24 if (cw.context == kSharedContext || cw.context == kOtherContext) { in Update()
28 cw.worklist->Update(callback); in Update()
/third_party/ffmpeg/libavcodec/arm/
Dvp8_armv6.S23 .macro rac_get_prob h, bs, buf, cw, pr, t0, t1
25 lsl \cw, \cw, \t0
33 A orrcs \cw, \cw, \t1, lsl \bs
35 T orrcs \cw, \cw, \t1
38 cmp \cw, \h, lsl #16
40 subge \cw, \cw, \h, lsl #16
44 .macro rac_get_128 h, bs, buf, cw, t0, t1
46 lsl \cw, \cw, \t0
54 A orrcs \cw, \cw, \t1, lsl \bs
57 T orrcs \cw, \cw, \t1
[all …]
/third_party/rust/crates/minimal-lexical/src/
Dfpu.rs43 fn set_cw(cw: u16) { in set_cw()
49 in(reg) &cw, in set_cw()
57 let mut cw = 0_u16; in set_precision() localVariable
73 in(reg) &mut cw, in set_precision()
80 set_cw((cw & 0xFCFF) | cw_precision); in set_precision()
82 FPUControlWord(cw) in set_precision()
/third_party/python/Python/
Dpymath.c24 unsigned short cw; in _Py_get_387controlword() local
25 __asm__ __volatile__ ("fnstcw %0" : "=m" (cw)); in _Py_get_387controlword()
26 return cw; in _Py_get_387controlword()
29 void _Py_set_387controlword(unsigned short cw) { in _Py_set_387controlword() argument
30 __asm__ __volatile__ ("fldcw %0" : : "m" (cw)); in _Py_set_387controlword()
/third_party/rust/crates/unicode-width/src/
Dlib.rs59 use tables::charwidth as cw;
92 fn width(self) -> Option<usize> { cw::width(self, false) } in width()
95 fn width_cjk(self) -> Option<usize> { cw::width(self, true) } in width_cjk()
124 self.chars().map(|c| cw::width(c, false).unwrap_or(0)).fold(0, Add::add) in width()
129 self.chars().map(|c| cw::width(c, true).unwrap_or(0)).fold(0, Add::add) in width_cjk()
/third_party/skia/platform_tools/android/apps/androidkitdemo/src/main/java/org/skia/androidkitdemo1/
DAnimationActivity.java65 float cw = canvas.getWidth(), in onRenderFrame() local
70 drawRect(canvas, (1 + osc1)*cw/2, ch/2, mLinearGradient); in onRenderFrame()
71 drawRect(canvas, (1 - osc1)*cw/2, ch/2, mConicalGradient); in onRenderFrame()
72 drawRect(canvas, cw/2, (1 + osc2)*ch/2, mRadialGradient); in onRenderFrame()
73 drawRect(canvas, cw/2, (1 - osc2)*ch/2, mSweepGradient); in onRenderFrame()
/third_party/python/Tools/scripts/
Dbyext.py91 cw = max(minwidth, len(col))
99 cw = max(cw, w)
100 cw = max(cw, len(str(total)))
101 colwidth[col] = cw
/third_party/nghttp2/src/
Dshrpx_quic_connection_handler.cc97 auto cw = (*cwit).second; in handle_packet() local
99 cw->handle_packet(faddr, remote_addr, local_addr, pi, data, datalen); in handle_packet()
114 auto cw = (*cwit).second; in handle_packet() local
116 cw->handle_packet(faddr, remote_addr, local_addr, pi, data, datalen); in handle_packet()
526 auto cw = std::make_unique<CloseWait>(worker_, std::vector<ngtcp2_cid>{idcid}, in send_retry() local
529 add_close_wait(cw.get()); in send_retry()
531 cw.release(); in send_retry()
665 void QUICConnectionHandler::add_close_wait(CloseWait *cw) { in add_close_wait() argument
666 for (auto &cid : cw->scids) { in add_close_wait()
667 close_waits_.emplace(cid, cw); in add_close_wait()
[all …]
/third_party/ltp/testcases/realtime/perf/latency/
Dpthread_cond_many.c81 volatile int *cw; in childfunc() local
84 cw = &child_waiting[myid]; in childfunc()
85 while (*cw == 0) { in childfunc()
87 *cw = 1; in childfunc()
93 *cw = 2; in childfunc()
95 while (*cw == 2) { in childfunc()
/third_party/ffmpeg/libavfilter/
Dboxblur.c54 int cw, ch; in ff_boxblur_eval_filter_params() local
83 var_values[VAR_CW] = cw = w>>(desc->log2_chroma_w); in ff_boxblur_eval_filter_params()
111 w, cw, h, ch); in ff_boxblur_eval_filter_params()
123 CHECK_RADIUS_VAL(cw, ch, chroma_param); in ff_boxblur_eval_filter_params()
Dvf_deshake.c70 …{ "w", "set width for the rectangular search area", OFFSET(cw), AV_OPT_TYPE_INT, {.i64=-1}, -1, I…
316 int width, int height, int cw, int ch, in deshake_transform_c() argument
327 plane_w[1] = plane_w[2] = cw; in deshake_transform_c()
362 deshake->cw += deshake->cx - (deshake->cx & ~15); in init()
368 deshake->cx, deshake->cy, deshake->cw, deshake->ch, in init()
438 if (deshake->cx < 0 || deshake->cy < 0 || deshake->cw < 0 || deshake->ch < 0) { in filter_frame()
448 … if ((unsigned)deshake->cx + (unsigned)deshake->cw > link->w) deshake->cw = link->w - deshake->cx; in filter_frame()
452 deshake->cw &= ~15; in filter_frame()
457 find_motion(deshake, src1, src2, deshake->cw, deshake->ch, in->linesize[0], &t); in filter_frame()
Ddeshake.h72 int cw; ///< Crop motion search to this box member
78 int (* transform)(AVFilterContext *ctx, int width, int height, int cw, int ch,
/third_party/mesa3d/src/mesa/math/
Dm_debug_clip.c85 const GLfloat cw = from[3]; in ref_cliptest_points4() local
87 if ( -cx + cw < 0 ) mask |= CLIP_RIGHT_BIT; in ref_cliptest_points4()
88 if ( cx + cw < 0 ) mask |= CLIP_LEFT_BIT; in ref_cliptest_points4()
89 if ( -cy + cw < 0 ) mask |= CLIP_TOP_BIT; in ref_cliptest_points4()
90 if ( cy + cw < 0 ) mask |= CLIP_BOTTOM_BIT; in ref_cliptest_points4()
92 if ( -cz + cw < 0 ) mask |= CLIP_FAR_BIT; in ref_cliptest_points4()
93 if ( cz + cw < 0 ) mask |= CLIP_NEAR_BIT; in ref_cliptest_points4()
105 GLfloat oow = 1.0F / cw; in ref_cliptest_points4()
/third_party/skia/third_party/externals/icu/source/data/translit/
DLatn_Cans.txt37 cwê ↔ ᒒ ;
38 cwî ↔ ᒖ ;
40 cwô ↔ ᒚ ;
42 cwâ ↔ ᒞ ;
/third_party/icu/icu4c/source/data/translit/
DLatn_Cans.txt37 cwê ↔ ᒒ ;
38 cwî ↔ ᒖ ;
40 cwô ↔ ᒚ ;
42 cwâ ↔ ᒞ ;
/third_party/glslang/Test/
D400.tese4 layout(quads, cw) in;
9 layout(cw) in;
64 layout(quads, cw) out; // ERROR
67 layout(cw) out; // ERROR
D320.tese4 layout(quads, cw) in;
9 layout(cw) in;
64 layout(quads, cw) out; // ERROR
67 layout(cw) out; // ERROR
D310.tese8 layout(quads, cw) in;
13 layout(cw) in;
68 layout(quads, cw) out; // ERROR
71 layout(cw) out; // ERROR
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
Dieee802_11_common.c800 static int valid_cw(int cw) in valid_cw() argument
802 return (cw == 1 || cw == 3 || cw == 7 || cw == 15 || cw == 31 || in valid_cw()
803 cw == 63 || cw == 127 || cw == 255 || cw == 511 || cw == 1023 || in valid_cw()
804 cw == 2047 || cw == 4095 || cw == 8191 || cw == 16383 || in valid_cw()
805 cw == 32767); in valid_cw()
1122 int cw = CHAN_WIDTH_UNKNOWN; in ieee80211_chaninfo_to_channel() local
1129 cw = CHANWIDTH_USE_HT; in ieee80211_chaninfo_to_channel()
1132 cw = CHANWIDTH_80MHZ; in ieee80211_chaninfo_to_channel()
1135 cw = CHANWIDTH_80P80MHZ; in ieee80211_chaninfo_to_channel()
1138 cw = CHANWIDTH_160MHZ; in ieee80211_chaninfo_to_channel()
[all …]
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
DCollationTest.java554 private void checkAllocWeights(CollationWeights cw, long lowerLimit, long upperLimit, in checkAllocWeights() argument
557 if (!cw.allocWeights(lowerLimit, upperLimit, n)) { in checkAllocWeights()
567 long w = cw.nextWeight(); in checkAllocWeights()
604 CollationWeights cw = new CollationWeights(); in TestCollationWeights() local
608 cw.initForPrimary(false); in TestCollationWeights()
610 checkAllocWeights(cw, 0x10000000L, 0x13000000L, 255, 1, 1); in TestCollationWeights()
611 checkAllocWeights(cw, 0x10000000L, 0x13000000L, 255, 2, 254); in TestCollationWeights()
613 checkAllocWeights(cw, 0x10fefe40L, 0x12030300L, 260, 2, 255); in TestCollationWeights()
615 checkAllocWeights(cw, 0x10fefe40L, 0x12030300L, 600, 2, 254); in TestCollationWeights()
621 checkAllocWeights(cw, 0x10fffe00L, 0x12020300L, 1 + 64516 + 254 + 1, 3, 64516); in TestCollationWeights()
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/
DCollationTest.java557 private void checkAllocWeights(CollationWeights cw, long lowerLimit, long upperLimit, in checkAllocWeights() argument
560 if (!cw.allocWeights(lowerLimit, upperLimit, n)) { in checkAllocWeights()
570 long w = cw.nextWeight(); in checkAllocWeights()
607 CollationWeights cw = new CollationWeights(); in TestCollationWeights() local
611 cw.initForPrimary(false); in TestCollationWeights()
613 checkAllocWeights(cw, 0x10000000L, 0x13000000L, 255, 1, 1); in TestCollationWeights()
614 checkAllocWeights(cw, 0x10000000L, 0x13000000L, 255, 2, 254); in TestCollationWeights()
616 checkAllocWeights(cw, 0x10fefe40L, 0x12030300L, 260, 2, 255); in TestCollationWeights()
618 checkAllocWeights(cw, 0x10fefe40L, 0x12030300L, 600, 2, 254); in TestCollationWeights()
624 checkAllocWeights(cw, 0x10fffe00L, 0x12020300L, 1 + 64516 + 254 + 1, 3, 64516); in TestCollationWeights()
[all …]
/third_party/python/Objects/
Dgenobject.c953 PyCoroWrapper *cw = PyObject_GC_New(PyCoroWrapper, &_PyCoroWrapper_Type); in coro_await() local
954 if (cw == NULL) { in coro_await()
958 cw->cw_coroutine = coro; in coro_await()
959 _PyObject_GC_TRACK(cw); in coro_await()
960 return (PyObject *)cw; in coro_await()
1077 coro_wrapper_dealloc(PyCoroWrapper *cw) in coro_wrapper_dealloc() argument
1079 _PyObject_GC_UNTRACK((PyObject *)cw); in coro_wrapper_dealloc()
1080 Py_CLEAR(cw->cw_coroutine); in coro_wrapper_dealloc()
1081 PyObject_GC_Del(cw); in coro_wrapper_dealloc()
1085 coro_wrapper_iternext(PyCoroWrapper *cw) in coro_wrapper_iternext() argument
[all …]
/third_party/icu/icu4c/source/test/intltest/
Dcollationtest.cpp86 void checkAllocWeights(CollationWeights &cw,
507 void CollationTest::checkAllocWeights(CollationWeights &cw, in checkAllocWeights() argument
510 if(!cw.allocWeights(lowerLimit, upperLimit, n)) { in checkAllocWeights()
518 uint32_t w = cw.nextWeight(); in checkAllocWeights()
543 CollationWeights cw; in TestCollationWeights() local
547 cw.initForPrimary(false); in TestCollationWeights()
549 checkAllocWeights(cw, 0x10000000, 0x13000000, 255, 1, 1); in TestCollationWeights()
550 checkAllocWeights(cw, 0x10000000, 0x13000000, 255, 2, 254); in TestCollationWeights()
552 checkAllocWeights(cw, 0x10fefe40, 0x12030300, 260, 2, 255); in TestCollationWeights()
554 checkAllocWeights(cw, 0x10fefe40, 0x12030300, 600, 2, 254); in TestCollationWeights()
[all …]
/third_party/skia/third_party/externals/spirv-cross/reference/shaders/comp/
Dgenerate_height.comp77 float cw = cos(w);
80 vec2 param_6 = vec2(cw, sw);
83 vec2 param_8 = vec2(cw, sw);

1234567