Home
last modified time | relevance | path

Searched refs:left (Results 876 - 900 of 2937) sorted by relevance

1...<<31323334353637383940>>...118

/third_party/rust/crates/clap/tests/derive/
H A Dgroups.rs77 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 DSkMergeImageFilter.cpp97 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 DWindow.cpp65 windowRect.left = 0L; in Window()
77 windowRect.right - windowRect.left, in Window()
/third_party/skia/third_party/externals/brotli/c/enc/
H A Dentropy_encode.h27 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 Dpfrdrivr.c31 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 DRasterWindowContext_win.cpp44 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 DparameterInitializersForwardReferencing.js2 function left(a, b = a, c = b) { function
45 function left(a, b, c) {
/third_party/python/Lib/turtledemo/
H A Dfractalcurves.py26 self.left(parity * 90)
41 self.left(parity * 90)
/third_party/skia/third_party/externals/abseil-cpp/absl/random/
H A Dbernoulli_distribution.h180 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 Dskia-c-example.c42 rect.left = 100.0f; in draw()
65 rect2.left = 120.0f; in draw()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_calendar_picker.cpp318 if (commonCalcDimension.left.has_value() || commonCalcDimension.right.has_value() || in JsPadding()
320 padding = SetPaddings(commonCalcDimension.top, commonCalcDimension.bottom, commonCalcDimension.left, in JsPadding()
370 const std::optional<CalcDimension>& bottom, const std::optional<CalcDimension>& left, in SetPaddings()
390 if (left.has_value()) { in SetPaddings()
391 if (left.value().Unit() == DimensionUnit::CALC) { in SetPaddings()
392 paddings.left = in SetPaddings()
393 NG::CalcLength(left.value().IsNonNegative() ? left.value().CalcValue() : CalcDimension().CalcValue()); in SetPaddings()
395 paddings.left = NG::CalcLength(left in SetPaddings()
369 SetPaddings(const std::optional<CalcDimension>& top, const std::optional<CalcDimension>& bottom, const std::optional<CalcDimension>& left, const std::optional<CalcDimension>& right) SetPaddings() argument
[all...]
/third_party/ffmpeg/libavformat/
H A Dconcatdec.c844 int ret, left, right; in real_seek() local
853 left = 0; in real_seek()
862 while (right - left > 1) { in real_seek()
863 int mid = (left + right) / 2; in real_seek()
867 left = mid; in real_seek()
870 if (cat->cur_file != &cat->files[left]) { in real_seek()
871 if ((ret = open_file(avf, left)) < 0) in real_seek()
879 left < cat->nb_files - 1 && in real_seek()
880 cat->files[left + 1].start_time < max_ts) { in real_seek()
881 if (cat->cur_file == &cat->files[left]) in real_seek()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A Dcord_rep_btree.cc193 // StackOperations contains the logic to build a left-most or right-most stack
756 CordRep* left = node->edges_[front.index]; in SubTree() local
757 while (front.n + n <= left->length) { in SubTree()
758 if (--height < 0) return MakeSubstring(CordRep::Ref(left), front.n, n); in SubTree()
759 node = left->btree(); in SubTree()
761 left = node->edges_[front.index]; in SubTree()
773 prefix = left->btree()->CopySuffix(front.n); in SubTree()
793 prefix = CopyResult{MakeSubstring(CordRep::Ref(left), front.n), -1}; in SubTree()
810 CordRepBtree* CordRepBtree::MergeTrees(CordRepBtree* left, in MergeTrees() argument
812 return left in MergeTrees()
[all...]
/foundation/arkui/ace_engine/test/unittest/core/pattern/image/
H A Dimage_testthree_ng.cpp61 imageProperties.left = IMAGE_LEFT; in HWTEST_F()
113 imageProperties.left = IMAGE_LEFT; in HWTEST_F()
165 imageProperties.left = IMAGE_LEFT; in HWTEST_F()
217 imageProperties.left = IMAGE_LEFT; in HWTEST_F()
269 imageProperties.left = IMAGE_LEFT; in HWTEST_F()
321 imageProperties.left = IMAGE_LEFT; in HWTEST_F()
373 imageProperties.left = IMAGE_LEFT; in HWTEST_F()
405 imageProperties.left = IMAGE_LEFT; in HWTEST_F()
457 imageProperties.left = IMAGE_LEFT; in HWTEST_F()
509 imageProperties.left in HWTEST_F()
[all...]
/foundation/ability/idl_tool/codegen/
H A Drust_code_emitter.cpp135 int left = 0; in TrimDot() local
137 while (fpnp[left] == ' ' || fpnp[left] == '.') { in TrimDot()
138 left++; in TrimDot()
145 if (left >= right) { in TrimDot()
149 return fpnp.Substring(left, right + 1); in TrimDot()
/foundation/arkui/ace_engine/frameworks/core/components/common/properties/
H A Ddecoration.h203 Dimension left; member
209 return left == other.left && top == other.top && right == other.right && bottom == other.bottom; in operator ==()
214 return (left.Unit() == DimensionUnit::PERCENT && top.Unit() == DimensionUnit::PERCENT && in IsPercentOption()
220 left = Dimension(0.0f); in ResetValue()
229 .append(left.ToString()) in ToString()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H A Dview_abstract_model_impl.h52 const std::optional<CalcDimension>& left, const std::optional<CalcDimension>& right) override;
56 const std::optional<CalcDimension>& left, const std::optional<CalcDimension>& right) override
61 const std::optional<CalcDimension>& left, const std::optional<CalcDimension>& right) override;
69 void SetBorderWidth(const std::optional<Dimension>& left, const std::optional<Dimension>& right,
87 void SetOuterBorderWidth(const std::optional<Dimension>& left, const std::optional<Dimension>& right,
117 void SetBorderWidth(const std::optional<Dimension>& left, const std::optional<Dimension>& right,
/test/xts/acts/graphic/acts_drawing_native/
H A DDrawingNativeTextBlobTest.cpp517 float left = OH_Drawing_RectGetLeft(rect); in HWTEST_F() local
519 EXPECT_EQ(right - left > 0, true); in HWTEST_F()
581 float left = OH_Drawing_RectGetLeft(rect); in HWTEST_F() local
583 EXPECT_EQ(right - left > 0, true); in HWTEST_F()
610 float left = OH_Drawing_RectGetLeft(rect); in HWTEST_F() local
612 EXPECT_EQ(right - left > 0, true); in HWTEST_F()
/third_party/skia/third_party/externals/libwebp/src/dec/
H A Dvp8_dec.c606 VP8MB* const left = dec->mb_info_ - 1; in VP8DecodeMB() local
614 left->nz_ = mb->nz_ = 0; in VP8DecodeMB()
616 left->nz_dc_ = mb->nz_dc_ = 0; in VP8DecodeMB()
633 VP8MB* const left = dec->mb_info_ - 1; in VP8InitScanline() local
634 left->nz_ = 0; in VP8InitScanline()
635 left->nz_dc_ = 0; in VP8InitScanline()
/third_party/skia/third_party/externals/tint/src/writer/glsl/
H A Dgenerator_impl_binary_test.cc47 Global("left", ty.f32(), ast::StorageClass::kPrivate); in TEST_P()
50 auto* left = Expr("left"); in TEST_P() local
53 auto* expr = create<ast::BinaryExpression>(params.op, left, right); in TEST_P()
66 Global("left", ty.u32(), ast::StorageClass::kPrivate); in TEST_P()
69 auto* left = Expr("left"); in TEST_P() local
72 auto* expr = create<ast::BinaryExpression>(params.op, left, right); in TEST_P()
91 Global("left", ty.i32(), ast::StorageClass::kPrivate); in TEST_P()
94 auto* left in TEST_P() local
[all...]
/third_party/skia/third_party/externals/tint/src/writer/hlsl/
H A Dgenerator_impl_binary_test.cc47 Global("left", ty.f32(), ast::StorageClass::kPrivate); in TEST_P()
50 auto* left = Expr("left"); in TEST_P() local
53 auto* expr = create<ast::BinaryExpression>(params.op, left, right); in TEST_P()
66 Global("left", ty.u32(), ast::StorageClass::kPrivate); in TEST_P()
69 auto* left = Expr("left"); in TEST_P() local
72 auto* expr = create<ast::BinaryExpression>(params.op, left, right); in TEST_P()
91 Global("left", ty.i32(), ast::StorageClass::kPrivate); in TEST_P()
94 auto* left in TEST_P() local
[all...]
/third_party/node/deps/v8/src/compiler/backend/arm/
H A Dcode-generator-arm.cc244 OutOfLineFloatMin(CodeGenerator* gen, T result, T left, T right) in OutOfLineFloatMin() argument
245 : OutOfLineCode(gen), result_(result), left_(left), right_(right) {} in OutOfLineFloatMin()
260 OutOfLineFloatMax(CodeGenerator* gen, T result, T left, T right) in OutOfLineFloatMax() argument
261 : OutOfLineCode(gen), result_(result), left_(left), right_(right) {} in OutOfLineFloatMax()
1222 // i.InputRegister(0) ... left low word. in AssembleArchInstruction()
1223 // i.InputRegister(1) ... left high word. in AssembleArchInstruction()
1233 // i.InputRegister(0) ... left low word. in AssembleArchInstruction()
1234 // i.InputRegister(1) ... left high word. in AssembleArchInstruction()
1244 // i.InputRegister(0) ... left low word. in AssembleArchInstruction()
1245 // i.InputRegister(1) ... left hig in AssembleArchInstruction()
1665 SwVfpRegister left = i.InputFloatRegister(0); AssembleArchInstruction() local
1679 DwVfpRegister left = i.InputDoubleRegister(0); AssembleArchInstruction() local
1693 SwVfpRegister left = i.InputFloatRegister(0); AssembleArchInstruction() local
1707 DwVfpRegister left = i.InputDoubleRegister(0); AssembleArchInstruction() local
1868 Simd128Register left = i.InputSimd128Register(0); AssembleArchInstruction() local
1888 Simd128Register left = i.InputSimd128Register(0); AssembleArchInstruction() local
2071 QwNeonRegister left = i.InputSimd128Register(0); AssembleArchInstruction() local
[all...]
/third_party/node/deps/ngtcp2/ngtcp2/lib/
H A Dngtcp2_pkt.c2407 uint64_t len, size_t left) { in ngtcp2_pkt_stream_max_datalen()
2411 if (left <= n) { in ngtcp2_pkt_stream_max_datalen()
2415 left -= n; in ngtcp2_pkt_stream_max_datalen()
2417 if (left > 8 + 1073741823 && len > 1073741823) { in ngtcp2_pkt_stream_max_datalen()
2421 return (size_t)ngtcp2_min(len, (uint64_t)(left - 8)); in ngtcp2_pkt_stream_max_datalen()
2424 if (left > 4 + 16383 && len > 16383) { in ngtcp2_pkt_stream_max_datalen()
2426 return (size_t)ngtcp2_min(len, (uint64_t)(left - 4)); in ngtcp2_pkt_stream_max_datalen()
2429 if (left > 2 + 63 && len > 63) { in ngtcp2_pkt_stream_max_datalen()
2431 return (size_t)ngtcp2_min(len, (uint64_t)(left - 2)); in ngtcp2_pkt_stream_max_datalen()
2435 return (size_t)ngtcp2_min(len, (uint64_t)(left in ngtcp2_pkt_stream_max_datalen()
2406 ngtcp2_pkt_stream_max_datalen(int64_t stream_id, uint64_t offset, uint64_t len, size_t left) ngtcp2_pkt_stream_max_datalen() argument
2438 ngtcp2_pkt_crypto_max_datalen(uint64_t offset, size_t len, size_t left) ngtcp2_pkt_crypto_max_datalen() argument
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/glesext/texture_cube_map_array/
H A DesextcTextureCubeMapArraySampling.cpp472 * @param pixel_index Index of pixel, identifies pixel at face <0:8> <left-top:rigth-bottom>. Ignored.
488 * @param pixel_index Index of pixel, identifies pixel at face <0:8> <left-top:rigth-bottom>.
513 * @param pixel_index Index of pixel, identifies pixel at face <0:8> <left-top:rigth-bottom>. Ignored.
532 * @param pixel_index Index of pixel, identifies pixel at face <0:8> <left-top:rigth-bottom>.
555 * @param pixel_index Index of pixel, identifies pixel at face <0:8> <left-top:rigth-bottom>. Ignored.
572 * @param pixel_index Index of pixel, identifies pixel at face <0:8> <left-top:rigth-bottom>.
596 * @param pixel_index Index of pixel, identifies pixel at face <0:8> <left-top:rigth-bottom>
614 * @param pixel_index Index of pixel, identifies pixel at face <0:8> <left-top:rigth-bottom>.
656 * @param pixel_index Index of pixel, identifies pixel at face <0:8> <left-top:rigth-bottom>. Ignored.
676 * @param pixel_index Index of pixel, identifies pixel at face <0:8> <left
1331 const glw::GLfloat left = -1.0f + x_mid_step; prepareTextureCoordinatesForFace() local
1440 const glw::GLfloat left = -1.0f + x_mid_step + x_step; prepareTextureCoordinatesForGatherForFace() local
[all...]
/third_party/zlib/contrib/blast/
H A Dblast.h46 unsigned *left, unsigned char **in);
59 * If left and in are not NULL and *left is not zero when blast() is called,
60 * then the *left bytes at *in are consumed for input before infun() is used.
68 * If there is any unused input, *left is set to the number of bytes that were
69 * read and *in points to them. Otherwise *left is set to zero and *in is set
70 * to NULL. If left or in are NULL, then they are not set.

Completed in 30 milliseconds

1...<<31323334353637383940>>...118