/third_party/skia/modules/skparagraph/src/ |
H A D | ParagraphImpl.h | 55 StyleBlock(size_t start, size_t end, const TStyle& style) : fRange(start, end), fStyle(style) {} in StyleBlock() 58 SkASSERT(fRange.end == tail.start); in add() 59 fRange = TextRange(fRange.start, fRange.start + fRange.width() + tail.width()); in add() 90 BidiRegion(size_t start, size_t end, uint8_t dir) 91 : text(start, end), direction(dir) { } 122 std::vector<TextBox> getRectsForRange(unsigned start, 288 void scanTextCutPoint(const std::vector<TextCutRecord>& rawTextSize, size_t& start, size_t& end); 346 void scanRTLTextCutPoint(const std::vector<TextCutRecord>& rawTextSize, size_t& start, size_ [all...] |
/drivers/hdf_core/framework/model/storage/include/mtd/ |
H A D | mtd_core.h | 259 * @param from Indicates the start address to read from. 273 * @param to Indicates the start address to write to. 287 * @param from Indicates the start address to erase from. 301 * @param from Indicates the start address to read from. 315 * @param to Indicates the start address to write to. 388 uintptr_t start = (uintptr_t)addr & ~(CACHE_ALIGNED_SIZE - 1); in MtdDmaCacheClean() local 392 DCacheFlushRange(start, end); in MtdDmaCacheClean() 402 uintptr_t start = (uintptr_t)addr & ~(CACHE_ALIGNED_SIZE - 1); in MtdDmaCacheInv() local 406 DCacheInvRange(start, end); in MtdDmaCacheInv()
|
/foundation/ability/ability_lite/services/abilitymgr_lite/tools/src/ |
H A D | ability_tool.cpp | 38 constexpr char CMD_START_ABILITY[] = "start"; 252 printf("ams call back, start %s.%s ret = %d\n", element.bundleName, element.abilityName, ret); in AaCallback() 265 int start = MAX_BUFFER_SIZE_PER * i; in AaCallback() local 266 int size = (len - start) < MAX_BUFFER_SIZE_PER ? (len - start) : MAX_BUFFER_SIZE_PER; in AaCallback() 267 printf("%-.*s", size, result + start); in AaCallback()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_relative_container.cpp | 155 CalcDimension start; in ParseGuideline() local 159 JSRef<JSVal> startVal = val->GetProperty("start"); in ParseGuideline() 162 if (JSViewAbstract::ParseJsDimensionVpNG(startVal, start)) { in ParseGuideline() 163 guidelineInfoItem.start = start; in ParseGuideline()
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/rich_editor/ |
H A D | rich_editor_preview_text_test_ng.cpp | 85 previewRange.start = -1; in HWTEST_F() 137 previewRange.start = -1; in HWTEST_F() 178 previewRange.start = -1; in HWTEST_F() 209 previewRange.start = -1; in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/rich_editor/ |
H A D | selection_info.h | 186 void SetSelectionStart(int32_t start) in SetSelectionStart() argument 188 selection_.selection[RichEditorSpanRange::RANGESTART] = start; in SetSelectionStart() 211 SelectionRangeInfo(int32_t start, int32_t end) : BaseEventInfo("SelectionRangeInfo"), start_(start), end_(end) {}; in SelectionRangeInfo() argument
|
/foundation/graphic/graphic_3d/lume/metaobject/src/animation/ |
H A D | track_animation_state.cpp | 225 auto start = last ? index - 1 : index; in JumpTo() local 226 auto end = start + 1; // < size - 1 ? start + 1 : start; in JumpTo() 229 keyframeArray_->GetAnyAt(start, *trackStart_); in JumpTo() 230 currentRangeStartTs_ = timestamps->GetValueAt(start); in JumpTo()
|
/foundation/multimedia/player_framework/services/services/engine_intf/ |
H A D | i_player_engine.h | 68 virtual int32_t SetPlayRange(int64_t start, int64_t end) in SetPlayRange() argument 70 (void)start; in SetPlayRange() 74 virtual int32_t SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) in SetPlayRangeWithMode() argument 76 (void)start; in SetPlayRangeWithMode()
|
/foundation/communication/netmanager_base/frameworks/native/netconnclient/src/ |
H A D | http_proxy.cpp | 196 size_t start = item.find_first_not_of(" \t"); in ParseProxyExclusionList() local 198 if (start != std::string::npos && end != std::string::npos) { in ParseProxyExclusionList() 199 item = item.substr(start, end - start + 1); in ParseProxyExclusionList()
|
/foundation/communication/netmanager_base/frameworks/native/netpolicyclient/src/ |
H A D | net_quota_policy.cpp | 200 int32_t start = CommonUtils::StrToInt(quotapolicy.periodDuration.substr(1, quotapolicy.periodDuration.size())); in GetPeriodStart() local 203 tm.tm_hour = start; in GetPeriodStart() 210 tm.tm_yday = start - 1; in GetPeriodStart() 215 tm.tm_mday = start; in GetPeriodStart()
|
/kernel/linux/linux-5.10/arch/xtensa/boot/boot-redboot/ |
H A D | bootstrap.S | 34 .section .start, "ax" 134 # a2: start address of parameter list 199 # a6 destination start 201 # a8 source start
|
/kernel/linux/linux-5.10/drivers/crypto/ |
H A D | omap-aes.h | 21 * OMAP TRM gives bitfields as start:end, where start is the higher bit 24 #define FLD_MASK(start, end) (((1 << ((start) - (end) + 1)) - 1) << (end)) 25 #define FLD_VAL(val, start, end) (((val) << (end)) & FLD_MASK(start, end))
|
/kernel/linux/linux-5.10/drivers/gpio/ |
H A D | gpio-rdc321x.c | 143 rdc321x_gpio_dev->reg1_ctrl_base = r->start; in rdc321x_gpio_probe() 144 rdc321x_gpio_dev->reg1_data_base = r->start + 0x4; in rdc321x_gpio_probe() 152 rdc321x_gpio_dev->reg2_ctrl_base = r->start; in rdc321x_gpio_probe() 153 rdc321x_gpio_dev->reg2_data_base = r->start + 0x4; in rdc321x_gpio_probe()
|
/kernel/linux/linux-5.10/arch/microblaze/mm/ |
H A D | init.c | 113 phys_addr_t start, end; in setup_memory() local 117 for_each_mem_range(i, &start, &end) { in setup_memory() 118 memory_start = start; in setup_memory() 119 lowmem_size = end - start; in setup_memory() 147 * start: base phys address of kernel - page align in setup_memory() 155 /* memory start is from the kernel end (aligned) to higher addr */ in setup_memory() 280 kstart = __pa(CONFIG_KERNEL_START); /* kernel start */ in mmu_init() 325 * Mem start + kernel_tlb -> here is limit in early_get_page()
|
/kernel/linux/linux-5.10/arch/mips/cavium-octeon/ |
H A D | dma-octeon.c | 193 phys_addr_t start, end; in plat_swiotlb_setup() local 203 for_each_mem_range(i, &start, &end) { in plat_swiotlb_setup() 205 if (start > 0x410000000ull && !OCTEON_IS_OCTEON2()) in plat_swiotlb_setup() 208 addr_size += (end - start); in plat_swiotlb_setup()
|
/kernel/linux/linux-5.10/drivers/ata/ |
H A D | pata_ixp4xx_cf.c | 161 data->cs0 = devm_ioremap(&pdev->dev, cs0->start, 0x1000); in ixp4xx_pata_probe() 162 data->cs1 = devm_ioremap(&pdev->dev, cs1->start, 0x1000); in ixp4xx_pata_probe() 185 ixp4xx_setup_port(ap, data, cs0->start, cs1->start); in ixp4xx_pata_probe()
|
/kernel/linux/linux-5.10/arch/arm/kernel/ |
H A D | dma-isa.c | 139 .start = 0x0000, 143 .start = 0x0080, 147 .start = 0x00c0, 151 .start = 0x0480,
|
/kernel/linux/linux-5.10/arch/mips/sgi-ip27/ |
H A D | ip27-xtalk.c | 47 w1_res.start = offset + (widget << SWIN_SIZE_BITS) + in bridge_platform_create() 49 w1_res.end = w1_res.start + 3; in bridge_platform_create() 90 bd->mem.start = offset + (widget << SWIN_SIZE_BITS) + BRIDGE_DEVIO0; in bridge_platform_create() 96 bd->io.start = offset + (widget << SWIN_SIZE_BITS) + BRIDGE_DEVIO0; in bridge_platform_create()
|
/kernel/linux/linux-5.10/arch/powerpc/kernel/ |
H A D | eeh_cache.c | 183 resource_size_t start = pci_resource_start(dev,i); in __eeh_addr_cache_insert_dev() local 190 if (start == 0 || ~start == 0 || end == 0 || ~end == 0) in __eeh_addr_cache_insert_dev() 192 eeh_addr_cache_insert(dev, start, end, flags); in __eeh_addr_cache_insert_dev()
|
/kernel/linux/linux-5.10/arch/powerpc/include/asm/book3s/64/ |
H A D | radix.h | 79 * +------------------------------+ Kernel IO map end/vmemap start 83 * +------------------------------+ Kernel vmap end/ IO map start 87 * +------------------------------+ Kernel virt start (0xc008000000000000) 289 extern int __meminit radix__vmemmap_create_mapping(unsigned long start, 292 extern void radix__vmemmap_remove_mapping(unsigned long start, 315 int radix__create_section_mapping(unsigned long start, unsigned long end, 317 int radix__remove_section_mapping(unsigned long start, unsigned long end);
|
/kernel/linux/linux-5.10/arch/s390/mm/ |
H A D | page-states.c | 187 unsigned long start, end, ix; in cmma_init_nodat() local 196 for_each_mem_pfn_range(i, MAX_NUMNODES, &start, &end, NULL) { in cmma_init_nodat() 197 page = pfn_to_page(start); in cmma_init_nodat() 198 for (ix = start; ix < end; ix++, page++) { in cmma_init_nodat()
|
H A D | dump_pagetables.c | 175 {.start = 0, .end = max_addr}, in ptdump_check_wx() 176 {.start = 0, .end = 0}, in ptdump_check_wx() 208 {.start = 0, .end = max_addr}, in ptdump_show() 209 {.start = 0, .end = 0}, in ptdump_show() 234 * start address.
|
/kernel/linux/linux-5.10/arch/sparc/include/asm/ |
H A D | parport.h | 111 unsigned long base = op->resource[0].start; in ecpp_probe() 112 unsigned long config = op->resource[1].start; in ecpp_probe() 113 unsigned long d_base = op->resource[2].start; in ecpp_probe() 206 unsigned long d_base = op->resource[2].start; in ecpp_remove()
|
/kernel/linux/linux-5.10/arch/sh/boards/ |
H A D | board-magicpanelr2.c | 249 .start = 0xa8000000, 254 .start = evt2irq(0x660), 279 .start = PA_LED, 328 .start = 0x00000000,
|
/kernel/linux/linux-5.10/arch/sparc/kernel/ |
H A D | central.c | 102 p->leds_resource.start = (unsigned long) in clock_board_probe() 104 p->leds_resource.end = p->leds_resource.start; in clock_board_probe() 196 p->leds_resource.start = (unsigned long) in fhc_probe() 198 p->leds_resource.end = p->leds_resource.start; in fhc_probe()
|