/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/drawing_ndk/src/ |
H A D | drawing_rect.cpp | 31 OH_Drawing_Rect* OH_Drawing_RectCreate(float left, float top, float right, float bottom) in OH_Drawing_RectCreate() argument 33 return (OH_Drawing_Rect*)new Rect(left, top, right, bottom); in OH_Drawing_RectCreate() 78 void OH_Drawing_RectSetLeft(OH_Drawing_Rect* cRect, float left) in OH_Drawing_RectSetLeft() argument 85 rect->SetLeft(left); in OH_Drawing_RectSetLeft()
|
/kernel/linux/linux-5.10/arch/sh/drivers/ |
H A D | platform_early.c | 219 int left = 0; in sh_early_platform_driver_probe_id() local 228 left = 1; in sh_early_platform_driver_probe_id() 232 left += sh_early_platform_left(epdrv, id); in sh_early_platform_driver_probe_id() 289 if (left) in sh_early_platform_driver_probe_id()
|
/kernel/linux/linux-6.6/arch/sh/drivers/ |
H A D | platform_early.c | 219 int left = 0; in sh_early_platform_driver_probe_id() local 228 left = 1; in sh_early_platform_driver_probe_id() 232 left += sh_early_platform_left(epdrv, id); in sh_early_platform_driver_probe_id() 289 if (left) in sh_early_platform_driver_probe_id()
|
/kernel/linux/linux-5.10/scripts/kconfig/ |
H A D | expr.h | 44 union expr_data left, right; member 52 for (e = (l); e && (s = e->right.sym); e = e->left.expr) 320 return !e || (e->type == E_SYMBOL && e->left.sym == &symbol_yes); in expr_is_yes() 325 return e && (e->type == E_SYMBOL && e->left.sym == &symbol_no); in expr_is_no()
|
/kernel/linux/linux-6.6/scripts/kconfig/ |
H A D | expr.h | 44 union expr_data left, right; member 52 for (e = (l); e && (s = e->right.sym); e = e->left.expr) 313 return !e || (e->type == E_SYMBOL && e->left.sym == &symbol_yes); in expr_is_yes() 318 return e && (e->type == E_SYMBOL && e->left.sym == &symbol_no); in expr_is_no()
|
/third_party/ffmpeg/libavdevice/ |
H A D | dshow_common.c | 155 dshowdebug(" rcSource: left %ld top %ld right %ld bottom %ld\n", in ff_print_AM_MEDIA_TYPE() 156 v->rcSource.left, v->rcSource.top, v->rcSource.right, v->rcSource.bottom); in ff_print_AM_MEDIA_TYPE() 157 dshowdebug(" rcTarget: left %ld top %ld right %ld bottom %ld\n", in ff_print_AM_MEDIA_TYPE() 158 v->rcTarget.left, v->rcTarget.top, v->rcTarget.right, v->rcTarget.bottom); in ff_print_AM_MEDIA_TYPE() 165 dshowdebug(" rcSource: left %ld top %ld right %ld bottom %ld\n", in ff_print_AM_MEDIA_TYPE() 166 v->rcSource.left, v->rcSource.top, v->rcSource.right, v->rcSource.bottom); in ff_print_AM_MEDIA_TYPE() 167 dshowdebug(" rcTarget: left %ld top %ld right %ld bottom %ld\n", in ff_print_AM_MEDIA_TYPE() 168 v->rcTarget.left, v->rcTarget.top, v->rcTarget.right, v->rcTarget.bottom); in ff_print_AM_MEDIA_TYPE()
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | huffyuvdsp.asm | 53 ; intptr_t w, uint8_t *left) 55 cglobal add_hfyu_left_pred_bgr32, 4,4,3, dst, src, w, left 80 ; void add_hfyu_median_prediction_mmxext(uint8_t *dst, const uint8_t *top, const uint8_t *diff, int mask, int w, int *left, int *left_top) 82 cglobal add_hfyu_median_pred_int16, 7,7,0, dst, top, diff, mask, w, left, left_top
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_addroi.c | 135 .left = old_roi->left, in addroi_filter_frame() 145 .left = ctx->region[X], in addroi_filter_frame() 173 .left = ctx->region[X], in addroi_filter_frame() 220 { "x", "Region distance from left edge of frame.",
|
/third_party/ffmpeg/libavformat/ |
H A D | xwma.c | 293 int64_t left; in xwma_read_packet() local 299 left = xwma->data_end - avio_tell(s->pb); in xwma_read_packet() 300 if (left <= 0) { in xwma_read_packet() 306 size = FFMIN(size, left); in xwma_read_packet()
|
/third_party/rust/crates/cxx/src/ |
H A D | sip.rs | 177 let left = len & 0x7; // len % 8 in write() 180 while i < len - left { in write() 181 // SAFETY: because `len - left` is the biggest multiple of 8 under in write() 194 // so `i + left` = `needed + len` = `length`, which is by in write() 196 self.tail = unsafe { u8to64_le(msg, i, left) }; in write() 197 self.ntail = left; in write()
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/common/ |
H A D | MatrixStack.cpp | 124 void MatrixStack::frustum(float left, float right, float bottom, float top, float zNear, float zFar) in frustum() argument 126 float l = (float)left; in frustum() 146 void MatrixStack::ortho(double left, double right, double bottom, double top, double zNear, double zFar) in ortho() argument 148 float l = (float)left; in ortho()
|
/third_party/skia/tests/ |
H A D | PathOpsConicLineIntersectionTest.cpp | 48 double left = line[0].fX; in doIntersect() local 50 flipped = left > right; in doIntersect() 53 swap(left, right); in doIntersect() 55 result = intersections.horizontal(conic, left, right, line[0].fY, flipped); in doIntersect()
|
H A D | PathOpsCubicLineIntersectionTest.cpp | 116 double left = line[0].fX; in doIntersect() local 118 flipped = left > right; in doIntersect() 121 swap(left, right); in doIntersect() 123 result = intersections.horizontal(cubic, left, right, line[0].fY, flipped); in doIntersect()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
H A D | cord_rep_test_util.h | 45 inline cord_internal::CordRepConcat* MakeConcat(cord_internal::CordRep* left, in MakeConcat() argument 50 concat->length = left->length + right->length; in MakeConcat() 51 concat->left = left; in MakeConcat()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | os_win32.c | 246 size_t left = siz; in os_strlcpy() local 248 if (left) { in os_strlcpy() 250 while (--left != 0) { in os_strlcpy() 256 if (left == 0) { in os_strlcpy()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
H A D | os_win32.c | 246 size_t left = siz; in os_strlcpy() local 248 if (left) { in os_strlcpy() 250 while (--left != 0) { in os_strlcpy() 256 if (left == 0) { in os_strlcpy()
|
/third_party/node/deps/v8/src/codegen/arm/ |
H A D | macro-assembler-arm.cc | 769 // We only have `dst_slot` and `dst_object` left as distinct registers so we in CallRecordWriteStub() 1580 // Make scratch the space we have left. The stack might already be overflowed in CallRecordWriteStub() 2288 void TurboAssembler::FloatMaxHelper(T result, T left, T right, in CallRecordWriteStub() argument 2292 DCHECK(left != right); in CallRecordWriteStub() 2296 VFPCompareAndSetFlags(left, right); in CallRecordWriteStub() 2298 vmaxnm(result, left, right); in CallRecordWriteStub() 2301 VFPCompareAndSetFlags(left, right); in CallRecordWriteStub() 2304 bool aliased_result_reg = result == left || result == right; in CallRecordWriteStub() 2306 Move(result, left, gt); in CallRecordWriteStub() 2309 VFPCompareAndSetFlags(left, 0. in CallRecordWriteStub() 2319 FloatMaxOutOfLineHelper(T result, T left, T right) CallRecordWriteStub() argument 2332 FloatMinHelper(T result, T left, T right, Label* out_of_line) CallRecordWriteStub() argument 2378 FloatMinOutOfLineHelper(T result, T left, T right) CallRecordWriteStub() argument 2386 FloatMax(SwVfpRegister result, SwVfpRegister left, SwVfpRegister right, Label* out_of_line) CallRecordWriteStub() argument 2391 FloatMin(SwVfpRegister result, SwVfpRegister left, SwVfpRegister right, Label* out_of_line) CallRecordWriteStub() argument 2396 FloatMax(DwVfpRegister result, DwVfpRegister left, DwVfpRegister right, Label* out_of_line) CallRecordWriteStub() argument 2401 FloatMin(DwVfpRegister result, DwVfpRegister left, DwVfpRegister right, Label* out_of_line) CallRecordWriteStub() argument 2406 FloatMaxOutOfLine(SwVfpRegister result, SwVfpRegister left, SwVfpRegister right) CallRecordWriteStub() argument 2411 FloatMinOutOfLine(SwVfpRegister result, SwVfpRegister left, SwVfpRegister right) CallRecordWriteStub() argument 2416 FloatMaxOutOfLine(DwVfpRegister result, DwVfpRegister left, DwVfpRegister right) CallRecordWriteStub() argument 2421 FloatMinOutOfLine(DwVfpRegister result, DwVfpRegister left, DwVfpRegister right) CallRecordWriteStub() argument [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | huffyuvdec.c | 862 static void add_median_prediction(HYuvContext *s, uint8_t *dst, const uint8_t *src, const uint8_t *diff, int w, int *left, int *left_top) in add_median_prediction() argument 865 s->llviddsp.add_median_pred(dst, src, diff, w, left, left_top); in add_median_prediction() 867 s->hdsp.add_hfyu_median_pred_int16((uint16_t *)dst, (const uint16_t *)src, (const uint16_t *)diff, s->n-1, w, left, left_top); in add_median_prediction() 890 int left, lefttop, y; in decode_slice() local 905 left = left_prediction(s, p->data[plane], s->temp[0], w, 0); in decode_slice() 911 left = left_prediction(s, dst, s->temp[0], w, left); in decode_slice() 922 left= left_prediction(s, p->data[plane], s->temp[0], w, 0); in decode_slice() 928 /* second line is left predicted for interlaced case */ in decode_slice() 931 left in decode_slice() 1126 uint8_t left[4]; decode_slice() local [all...] |
/third_party/node/tools/ |
H A D | test.py | 1027 def __init__(self, left, op, right): 1028 self.left = left 1034 return self.left.Evaluate(env, defs) or self.right.Evaluate(env, defs) 1038 inter = self.left.GetOutcomes(env, defs) & self.right.GetOutcomes(env, defs) 1042 return self.left.Evaluate(env, defs) and self.right.Evaluate(env, defs) 1046 return self.left.GetOutcomes(env, defs) | self.right.GetOutcomes(env, defs) 1049 return self.left.GetOutcomes(env, defs) 1054 return self.left.GetOutcomes(env, defs) & self.right.GetOutcomes(env, defs) 1178 left [all...] |
/third_party/skia/third_party/externals/freetype/src/raster/ |
H A D | ftraster.c | 417 PProfile left, 479 PByte bOrigin; /* target bitmap bottom-left origin */ 2206 PProfile left, in Vertical_Sweep_Span() 2211 Int dropOutControl = left->flags & 7; in Vertical_Sweep_Span() 2214 FT_UNUSED( left ); in Vertical_Sweep_Span() 2230 /* take care of the special case where both the left */ in Vertical_Sweep_Span() 2288 PProfile left, in Vertical_Sweep_Drop() 2329 Int dropOutControl = left->flags & 7; in Vertical_Sweep_Drop() 2374 if ( left->next == right && in Vertical_Sweep_Drop() 2375 left in Vertical_Sweep_Drop() 2203 Vertical_Sweep_Span( RAS_ARGS Short y, FT_F26Dot6 x1, FT_F26Dot6 x2, PProfile left, PProfile right ) Vertical_Sweep_Span() argument 2285 Vertical_Sweep_Drop( RAS_ARGS Short y, FT_F26Dot6 x1, FT_F26Dot6 x2, PProfile left, PProfile right ) Vertical_Sweep_Drop() argument 2466 Horizontal_Sweep_Span( RAS_ARGS Short y, FT_F26Dot6 x1, FT_F26Dot6 x2, PProfile left, PProfile right ) Horizontal_Sweep_Span() argument 2538 Horizontal_Sweep_Drop( RAS_ARGS Short y, FT_F26Dot6 x1, FT_F26Dot6 x2, PProfile left, PProfile right ) Horizontal_Sweep_Drop() argument [all...] |
/third_party/python/Lib/test/ |
H A D | test_fstring.py | 107 self.assertEqual(type(binop.left), ast.Name) 111 self.assertEqual(binop.left.lineno, 3) 114 self.assertEqual(binop.left.col_offset, 3) 147 self.assertEqual(type(binop1.left), ast.Name) 151 self.assertEqual(binop1.left.lineno, 3) 154 self.assertEqual(binop1.left.col_offset, 8) 159 self.assertEqual(type(binop2.left), ast.Name) 163 self.assertEqual(binop2.left.lineno, 3) 166 self.assertEqual(binop2.left.col_offset, 23) 190 self.assertEqual(type(binop.left), as [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/menu/menu_item_group/ |
H A D | menu_item_group_layout_algorithm.cpp | 184 // Need head padding if left brother is menu item group 222 // get the left brother node 264 margin.left = CalcLength(iconWidth + iconContentPadding); in UpdateHeaderAndFooterMargin() 271 margin.left = CalcLength(iconWidth * 2.0 + iconContentPadding * 2.0); in UpdateHeaderAndFooterMargin() 273 margin.left = CalcLength(iconWidth + iconContentPadding); in UpdateHeaderAndFooterMargin() 282 margin.right = margin.left; in UpdateHeaderAndFooterMargin() 283 margin.left = margin.right; in UpdateHeaderAndFooterMargin()
|
/foundation/arkui/ace_engine/advanced_ui_component/exceptionprompt/interfaces/ |
H A D | exceptionprompt.js | 105 left: { 190 left: { 231 left: { 336 left: { 351 left: {
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/render/ |
H A D | rs_color_extract.cpp | 50 uint32_t left = static_cast<uint32_t>(pixmap->GetWidth() * coordinates[0]); // 0 is index of left
in RSColorExtract() local 54 colorValLen_ = (right - left) * (bottom -top);
in RSColorExtract() 64 for (uint32_t j = left; j < right; j++) {
in RSColorExtract() 65 colorVal[(i - top) * (right - left) + (j - left)] = pixmap->GetColor(j, i);
in RSColorExtract() 259 uint32_t histLen = (1 << (QUANTIZE_WORD_WIDTH * 3)); // 3 means left shift flag
in GetNFeatureColors()
|
/kernel/linux/linux-5.10/tools/testing/selftests/kvm/x86_64/ |
H A D | sync_regs_test.c | 40 static void compare_regs(struct kvm_regs *left, struct kvm_regs *right) in compare_regs() argument 43 TEST_ASSERT(left->reg == right->reg, \ in compare_regs() 46 left->reg, right->reg) in compare_regs() 68 static void compare_sregs(struct kvm_sregs *left, struct kvm_sregs *right) in compare_sregs() argument 72 static void compare_vcpu_events(struct kvm_vcpu_events *left, in compare_vcpu_events() argument
|