/third_party/node/deps/v8/src/heap/ |
H A D | marking-worklist.cc | 37 for (auto cw : context_worklists_) { in Clear() 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() 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() 133 if (cw.first != active_context_) { in ~Local() 134 DCHECK(cw in ~Local() [all...] |
H A D | marking-worklist-inl.h | 23 for (auto cw : context_worklists_) { in Update() 24 if (cw.context == kSharedContext || cw.context == kOtherContext) { in Update() 28 cw.worklist->Update(callback); in Update()
|
/third_party/rust/crates/minimal-lexical/src/ |
H A D | fpu.rs | 43 fn set_cw(cw: u16) { in set_cw() 49 in(reg) &cw, in set_cw() 57 let mut cw = 0_u16; in set_precision() variables 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/ |
H A D | pymath.c | 11 unsigned short cw; in _Py_get_387controlword() local 12 __asm__ __volatile__ ("fnstcw %0" : "=m" (cw)); in _Py_get_387controlword() 13 return cw; in _Py_get_387controlword() 16 void _Py_set_387controlword(unsigned short cw) { in _Py_set_387controlword() argument 17 __asm__ __volatile__ ("fldcw %0" : : "m" (cw)); in _Py_set_387controlword()
|
/third_party/ffmpeg/libavcodec/arm/ |
H A D | vp8_armv6.S | 23 .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, \ [all...] |
/third_party/rust/crates/unicode-width/src/ |
H A D | lib.rs | 59 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/python/Tools/scripts/ |
H A D | byext.py | 91 cw = max(minwidth, len(col)) 99 cw = max(cw, w) 100 cw = max(cw, len(str(total))) 101 colwidth[col] = cw
|
/third_party/skia/platform_tools/android/apps/androidkitdemo/src/main/java/org/skia/androidkitdemo1/ |
H A D | AnimationActivity.java | 65 float cw = canvas.getWidth(), in onRenderFrame() 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/ltp/testcases/realtime/perf/latency/ |
H A D | pthread_cond_many.c | 81 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/nghttp2/src/ |
H A D | shrpx_quic_connection_handler.cc | 97 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() 529 auto cw = std::make_unique<CloseWait>(worker_, std::vector<ngtcp2_cid>{idcid}, in send_retry() local 532 add_close_wait(cw.release()); in send_retry() 666 void QUICConnectionHandler::add_close_wait(CloseWait *cw) { in add_close_wait() argument 667 for (auto &cid : cw->scids) { in add_close_wait() 668 close_waits_.emplace(cid, cw); in add_close_wait() 672 void QUICConnectionHandler::remove_close_wait(const CloseWait *cw) { in remove_close_wait() argument 688 auto cw = static_cast<CloseWait *>(w->data); close_wait_timeoutcb() local [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | boxblur.c | 28 "cw", 54 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()
|
H A D | vf_deshake.c | 70 { "w", "set width for the rectangular search area", OFFSET(cw), AV_OPT_TYPE_INT, {.i64=-1}, -1, INT_MAX, .flags = FLAGS }, 316 int width, int height, int cw, int ch, in deshake_transform_c() 327 plane_w[1] = plane_w[2] = cw; in deshake_transform_c() 363 deshake->cw += deshake->cx - (deshake->cx & ~15); in init() 368 av_log(ctx, AV_LOG_VERBOSE, "cx: %d, cy: %d, cw: %d, ch: %d, rx: %d, ry: %d, edge: %d blocksize: %d contrast: %d search: %d\n", in init() 369 deshake->cx, deshake->cy, deshake->cw, deshake->ch, in init() 432 if (deshake->cx < 0 || deshake->cy < 0 || deshake->cw < 0 || deshake->ch < 0) { in filter_frame() 442 if ((unsigned)deshake->cx + (unsigned)deshake->cw > link->w) deshake->cw = link->w - deshake->cx; in filter_frame() 446 deshake->cw in filter_frame() 315 deshake_transform_c(AVFilterContext *ctx, int width, int height, int cw, int ch, const float *matrix_y, const float *matrix_uv, enum InterpolateMethod interpolate, enum FillMethod fill, AVFrame *in, AVFrame *out) deshake_transform_c() argument [all...] |
H A D | deshake.h | 72 int cw; ///< Crop motion search to this box member 78 int (* transform)(AVFilterContext *ctx, int width, int height, int cw, int ch,
|
H A D | vf_owdenoise.c | 257 const int cw = AV_CEIL_RSHIFT(inlink->w, s->hsub); in filter_frame() local 266 filter(s, out->data[1], out->linesize[1], in->data[1], in->linesize[1], cw, ch, s->chroma_strength); in filter_frame() 267 filter(s, out->data[2], out->linesize[2], in->data[2], in->linesize[2], cw, ch, s->chroma_strength); in filter_frame() 283 filter(s, out->data[1], out->linesize[1], in->data[1], in->linesize[1], cw, ch, s->chroma_strength); in filter_frame() 284 filter(s, out->data[2], out->linesize[2], in->data[2], in->linesize[2], cw, ch, s->chroma_strength); in filter_frame()
|
H A D | vf_pixdesctest.c | 62 const int cw = AV_CEIL_RSHIFT(w, priv->pix_desc->log2_chroma_w); in filter_frame() local 87 const int w1 = c == 1 || c == 2 ? cw : w; in filter_frame()
|
/third_party/mesa3d/src/mesa/math/ |
H A D | m_debug_clip.c | 85 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/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
H A D | ieee802_11_common.c | 941 static int valid_cw(int cw) in valid_cw() argument 943 return (cw == 1 || cw == 3 || cw == 7 || cw == 15 || cw == 31 || in valid_cw() 944 cw == 63 || cw == 127 || cw == 255 || cw in valid_cw() 1263 int cw = CHAN_WIDTH_UNKNOWN; ieee80211_chaninfo_to_channel() local [all...] |
/third_party/icu/icu4c/source/test/intltest/ |
H A D | collationtest.cpp | 86 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, in TestCollationWeights() [all...] |
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
H A D | CollationTest.java | 554 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() 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, in TestCollationWeights() [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/ |
H A D | CollationTest.java | 557 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() 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, in TestCollationWeights() [all...] |
/third_party/lame/libmp3lame/ |
H A D | util.c | 900 # define _FPU_GETCW(cw) __asm__ ("fnstcw %0" : "=m" (*&cw)) in disable_FPE() 901 # define _FPU_SETCW(cw) __asm__ ("fldcw %0" : : "m" (*&cw)) in disable_FPE() 920 # define _FPU_GETCW(cw) __asm__ ("fnstcw %0" : "=m" (*&cw)) in disable_FPE() 923 # define _FPU_SETCW(cw) __asm__ ("fldcw %0" : : "m" (*&cw)) in disable_FPE()
|
/third_party/skia/third_party/externals/libwebp/tests/fuzzer/ |
H A D | animation_api_fuzzer.c | 31 const uint32_t cw = WebPDemuxGetI(demux, WEBP_FF_CANVAS_WIDTH); in LLVMFuzzerTestOneInput() local 33 if ((size_t)cw * ch > kFuzzPxLimit) { in LLVMFuzzerTestOneInput()
|
/third_party/python/Objects/ |
H A D | genobject.c | 1093 PyCoroWrapper *cw = PyObject_GC_New(PyCoroWrapper, &_PyCoroWrapper_Type); in coro_await() local 1094 if (cw == NULL) { in coro_await() 1098 cw->cw_coroutine = coro; in coro_await() 1099 _PyObject_GC_TRACK(cw); in coro_await() 1100 return (PyObject *)cw; in coro_await() 1239 coro_wrapper_dealloc(PyCoroWrapper *cw) in coro_wrapper_dealloc() argument 1241 _PyObject_GC_UNTRACK((PyObject *)cw); in coro_wrapper_dealloc() 1242 Py_CLEAR(cw->cw_coroutine); in coro_wrapper_dealloc() 1243 PyObject_GC_Del(cw); in coro_wrapper_dealloc() 1247 coro_wrapper_iternext(PyCoroWrapper *cw) in coro_wrapper_iternext() argument 1253 coro_wrapper_send(PyCoroWrapper *cw, PyObject *arg) coro_wrapper_send() argument 1259 coro_wrapper_throw(PyCoroWrapper *cw, PyObject *const *args, Py_ssize_t nargs) coro_wrapper_throw() argument 1265 coro_wrapper_close(PyCoroWrapper *cw, PyObject *args) coro_wrapper_close() argument 1271 coro_wrapper_traverse(PyCoroWrapper *cw, visitproc visit, void *arg) coro_wrapper_traverse() argument [all...] |
/third_party/mesa3d/src/gallium/drivers/svga/ |
H A D | svga_state_rss.c | 167 int cw, ccw; in emit_rss_vgpu9() local 175 cw = 1; in emit_rss_vgpu9() 179 cw = 0; in emit_rss_vgpu9() 187 EMIT_RS(svga, curr->stencil[cw].func, STENCILFUNC); in emit_rss_vgpu9() 188 EMIT_RS(svga, curr->stencil[cw].fail, STENCILFAIL); in emit_rss_vgpu9() 189 EMIT_RS(svga, curr->stencil[cw].zfail, STENCILZFAIL); in emit_rss_vgpu9() 190 EMIT_RS(svga, curr->stencil[cw].pass, STENCILPASS); in emit_rss_vgpu9()
|
/third_party/libwebsockets/lib/secure-streams/ |
H A D | secure-streams-process.c | 415 struct lws *cw = conn->ss->wsi; in callback_ss_proxy() local 428 if (cw && wsi != cw) { in callback_ss_proxy() 432 lws_set_opaque_user_data(cw, NULL); in callback_ss_proxy() 440 lws_wsi_close(cw, LWS_TO_KILL_ASYNC); in callback_ss_proxy()
|