/third_party/node/deps/npm/node_modules/diff/lib/diff/ |
H A D | json.js | 74 jsonDiff.equals = function (left, right) { 83 ].prototype.equals.call(jsonDiff, left.replace(/,([\r\n])/g, '$1'), right.replace(/,([\r\n])/g, '$1'))
|
/third_party/node/deps/npm/node_modules/ip-address/dist/v6/ |
H A D | regular-expressions.js | 66 const left = moreLeft ? '' : ':'; 81 // 4. elision from the left side 82 possibilities.push((0, sprintf_js_1.sprintf)('%s(:0{1,4}){1,%d}', left, elidedGroups - 1));
|
/third_party/node/deps/v8/src/libplatform/ |
H A D | default-foreground-task-runner.h | 113 bool operator()(const DelayedEntry& left, const DelayedEntry& right) const { in operator ()() 114 return left.timeout_time > right.timeout_time; in operator ()()
|
/third_party/rust/crates/clap/tests/derive/ |
H A D | groups.rs | 77 pub left: L, in skip_group_avoids_duplicate_ids() 112 pub left: L, in helpful_panic_on_duplicate_groups()
|
/third_party/skia/src/effects/imagefilters/ |
H A D | SkMergeImageFilter.cpp | 97 const int x0 = bounds.left(); in onFilterImage() 120 offset->fX = bounds.left(); in onFilterImage()
|
/third_party/skia/third_party/externals/swiftshader/tests/VulkanWrapper/ |
H A D | Window.cpp | 65 windowRect.left = 0L; in Window() 77 windowRect.right - windowRect.left, in Window()
|
/third_party/skia/third_party/externals/brotli/c/enc/ |
H A D | entropy_encode.h | 27 int16_t left, int16_t right) { in InitHuffmanTree() 29 self->index_left_ = left; in InitHuffmanTree() 26 InitHuffmanTree(HuffmanTree* self, uint32_t count, int16_t left, int16_t right) InitHuffmanTree() argument
|
/third_party/skia/third_party/externals/freetype/src/pfr/ |
H A D | pfrdrivr.c | 31 FT_UInt left, in FT_CALLBACK_DEF() 39 (void)pfr_face_get_kerning( pfrface, left, right, avector ); in FT_CALLBACK_DEF()
|
/third_party/skia/tools/sk_app/win/ |
H A D | RasterWindowContext_win.cpp | 44 this->resize(rect.right - rect.left, rect.bottom - rect.top); in RasterWindowContext_win() 51 this->resize(rect.right - rect.left, rect.bottom - rect.top); in setDisplayParams()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | parameterInitializersForwardReferencing.js | 2 function left(a, b = a, c = b) { function 45 function left(a, b, c) {
|
/third_party/python/Lib/turtledemo/ |
H A D | fractalcurves.py | 26 self.left(parity * 90) 41 self.left(parity * 90)
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
H A D | bernoulli_distribution.h | 180 const double left = p - q; in Generate() local 184 // which means the probability of acceptance here is `1 / (left * kP32)`: in Generate() 185 const double here = left * kP32; in Generate()
|
/third_party/skia/experimental/c-api-example/ |
H A D | skia-c-example.c | 42 rect.left = 100.0f; in draw() 65 rect2.left = 120.0f; in draw()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/base/ |
H A D | view_abstract_model.h | 96 const std::optional<CalcDimension>& left, const std::optional<CalcDimension>& right) = 0; 100 const std::optional<CalcDimension>& left, const std::optional<CalcDimension>& right) = 0; 106 const std::optional<CalcDimension>& bottom, const std::optional<CalcDimension>& left, 118 virtual void SetBorderWidth(const std::optional<Dimension>& left, const std::optional<Dimension>& right, 120 virtual void SetBorderWidth(const std::optional<Dimension>& left, const std::optional<Dimension>& right, 127 virtual void SetDashGap(const std::optional<Dimension>& left, const std::optional<Dimension>& right, in SetDashGap() argument 130 virtual void SetDashWidth(const std::optional<Dimension>& left, const std::optional<Dimension>& right, in SetDashWidth() argument 153 virtual void SetOuterBorderWidth(const std::optional<Dimension>& left, const std::optional<Dimension>& right,
|
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/ |
H A D | dom_input.cpp | 593 double left = -1.0; in HandlePadding() local 599 left = StringUtils::StringToDouble(style.second); in HandlePadding() 608 // set the horizontal hot zone value is the minmum value in left and right, in HandlePadding() 611 if (left >= 0 || right >= 0) { in HandlePadding() 612 left = left >= 0 ? left : 0; in HandlePadding() 614 double horizontal = std::min(left, right); in HandlePadding() 616 padding.SetLeft(Dimension(left - horizontal)); in HandlePadding()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/waterflow/layout/sliding_window/ |
H A D | water_flow_layout_info_sw.cpp | 176 return std::max_element(section.begin(), section.end(), [](const Lane& left, const Lane& right) { in SectionEndPos() 177 return LessNotEqual(left.endPos, right.endPos); in SectionEndPos() 183 return std::min_element(section.begin(), section.end(), [](const Lane& left, const Lane& right) { 184 return LessNotEqual(left.startPos, right.startPos); 253 std::max_element(section.begin(), section.end(), [](const Lane& left, const Lane& right) { 254 return left.items_.size() < right.items_.size(); 527 : margins_[i - 1].right.value_or(0.0f) + margins_[i].left.value_or(0.0f); 539 : margins_[i + 1].left.value_or(0.0f) + margins_[i].right.value_or(0.0f);
|
/kernel/linux/linux-5.10/drivers/input/mouse/ |
H A D | hgpk.c | 282 * swr/swl are the left/right buttons. 301 * swr/swl are the left/right buttons. 346 int left = !!(packet[3] & 1); in hgpk_process_advanced_packet() local 371 left, right, x, y); in hgpk_process_advanced_packet() 374 input_report_key(idev, BTN_LEFT, left); in hgpk_process_advanced_packet() 413 hgpk_spewing_hack(psmouse, left, right, x_diff, y_diff); in hgpk_process_advanced_packet() 429 int left = packet[0] & 1; in hgpk_process_simple_packet() local 445 hgpk_spewing_hack(psmouse, left, right, x, y); in hgpk_process_simple_packet() 449 left, right, x, y); in hgpk_process_simple_packet() 451 input_report_key(dev, BTN_LEFT, left); in hgpk_process_simple_packet() [all...] |
/kernel/linux/linux-5.10/lib/ |
H A D | btree.c | 35 * values are to the right, not to the left. All used slots within a node 36 * are on the left, all unused slots contain NUL values. Most operations 521 unsigned long *left, int lfill, in merge() 528 /* Move all keys to the left */ in merge() 529 setkey(geo, left, lfill + i, bkey(geo, right, i)); in merge() 530 setval(geo, left, lfill + i, bval(geo, right, i)); in merge() 532 /* Exchange left and right child in parent */ in merge() 534 setval(geo, parent, lpos + 1, left); in merge() 535 /* Remove left (formerly right) child from parent */ in merge() 543 unsigned long *parent, *left in rebalance() local 520 merge(struct btree_head *head, struct btree_geo *geo, int level, unsigned long *left, int lfill, unsigned long *right, int rfill, unsigned long *parent, int lpos) merge() argument [all...] |
/kernel/linux/linux-5.10/kernel/locking/ |
H A D | rtmutex.c | 233 rt_mutex_waiter_less(struct rt_mutex_waiter *left, in rt_mutex_waiter_less() argument 236 if (left->prio < right->prio) in rt_mutex_waiter_less() 242 * If left waiter has a dl_prio(), and we didn't return 1 above, in rt_mutex_waiter_less() 245 if (dl_prio(left->prio)) in rt_mutex_waiter_less() 246 return dl_time_before(left->deadline, right->deadline); in rt_mutex_waiter_less() 252 rt_mutex_waiter_equal(struct rt_mutex_waiter *left, in rt_mutex_waiter_equal() argument 255 if (left->prio != right->prio) in rt_mutex_waiter_equal() 261 * If left waiter has a dl_prio(), and we didn't return 0 above, in rt_mutex_waiter_equal() 264 if (dl_prio(left->prio)) in rt_mutex_waiter_equal() 265 return left in rt_mutex_waiter_equal() [all...] |
/kernel/linux/linux-5.10/drivers/staging/media/rkisp1/ |
H A D | rkisp1-resizer.c | 237 sink_crop->left == 0 && sink_crop->top == 0) { in rkisp1_dcrop_config() 244 rkisp1_write(rkisp1, sink_crop->left, rsz->config->dual_crop.h_offset); in rkisp1_dcrop_config() 511 sink_crop->left = 0; in rkisp1_rsz_init_config() 567 sink_crop->left = 0; in rkisp1_rsz_set_sink_crop() 576 sink_crop->left = ALIGN(r->left, 2); in rkisp1_rsz_set_sink_crop() 676 sel->r.left = 0; in rkisp1_rsz_get_selection() 702 sel->pad, sel->r.left, sel->r.top, sel->r.width, sel->r.height); in rkisp1_rsz_set_selection()
|
/kernel/linux/linux-6.6/kernel/locking/ |
H A D | rtmutex.c | 371 static __always_inline int rt_waiter_node_less(struct rt_waiter_node *left, in rt_waiter_node_less() argument 374 if (left->prio < right->prio) in rt_waiter_node_less() 380 * If left waiter has a dl_prio(), and we didn't return 1 above, in rt_waiter_node_less() 383 if (dl_prio(left->prio)) in rt_waiter_node_less() 384 return dl_time_before(left->deadline, right->deadline); in rt_waiter_node_less() 389 static __always_inline int rt_waiter_node_equal(struct rt_waiter_node *left, in rt_waiter_node_equal() argument 392 if (left->prio != right->prio) in rt_waiter_node_equal() 398 * If left waiter has a dl_prio(), and we didn't return 0 above, in rt_waiter_node_equal() 401 if (dl_prio(left->prio)) in rt_waiter_node_equal() 402 return left in rt_waiter_node_equal() [all...] |
/kernel/linux/linux-6.6/drivers/media/platform/rockchip/rkisp1/ |
H A D | rkisp1-resizer.c | 182 sink_crop->left == 0 && sink_crop->top == 0) { in rkisp1_dcrop_config() 189 rkisp1_write(rkisp1, rsz->config->dual_crop.h_offset, sink_crop->left); in rkisp1_dcrop_config() 433 sink_crop->left = 0; in rkisp1_rsz_init_config() 494 sink_crop->left = 0; in rkisp1_rsz_set_sink_crop() 503 sink_crop->left = ALIGN(r->left, 2); in rkisp1_rsz_set_sink_crop() 645 sel->r.left = 0; in rkisp1_rsz_get_selection() 672 sel->pad, sel->r.left, sel->r.top, sel->r.width, sel->r.height); in rkisp1_rsz_set_selection()
|
/kernel/linux/linux-6.6/drivers/input/mouse/ |
H A D | hgpk.c | 282 * swr/swl are the left/right buttons. 301 * swr/swl are the left/right buttons. 346 int left = !!(packet[3] & 1); in hgpk_process_advanced_packet() local 371 left, right, x, y); in hgpk_process_advanced_packet() 374 input_report_key(idev, BTN_LEFT, left); in hgpk_process_advanced_packet() 413 hgpk_spewing_hack(psmouse, left, right, x_diff, y_diff); in hgpk_process_advanced_packet() 429 int left = packet[0] & 1; in hgpk_process_simple_packet() local 445 hgpk_spewing_hack(psmouse, left, right, x, y); in hgpk_process_simple_packet() 449 left, right, x, y); in hgpk_process_simple_packet() 451 input_report_key(dev, BTN_LEFT, left); in hgpk_process_simple_packet() [all...] |
/kernel/linux/linux-6.6/lib/ |
H A D | btree.c | 35 * values are to the right, not to the left. All used slots within a node 36 * are on the left, all unused slots contain NUL values. Most operations 517 unsigned long *left, int lfill, in merge() 524 /* Move all keys to the left */ in merge() 525 setkey(geo, left, lfill + i, bkey(geo, right, i)); in merge() 526 setval(geo, left, lfill + i, bval(geo, right, i)); in merge() 528 /* Exchange left and right child in parent */ in merge() 530 setval(geo, parent, lpos + 1, left); in merge() 531 /* Remove left (formerly right) child from parent */ in merge() 539 unsigned long *parent, *left in rebalance() local 516 merge(struct btree_head *head, struct btree_geo *geo, int level, unsigned long *left, int lfill, unsigned long *right, int rfill, unsigned long *parent, int lpos) merge() argument [all...] |
/third_party/curl/tests/server/ |
H A D | mqttd.c | 196 int left = sizeof(data); in loghex() local 198 for(i = 0; i<len && (left >= 0); i++) { in loghex() 199 msnprintf(optr, left, "%02x", ptr[i]); in loghex() 202 left -= 2; in loghex() 222 int left = sizeof(data); in logprotocol() local 224 for(i = 0; i<len && (left >= 0); i++) { in logprotocol() 225 msnprintf(optr, left, "%02x", ptr[i]); in logprotocol() 227 left -= 2; in logprotocol()
|