/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | BlobCache_unittest.cpp | 23 void MakeSequence(T &seq, uint8_t start) in MakeSequence() argument 27 seq[i] = i + start; in MakeSequence() 31 BlobPut MakeBlob(size_t size, uint8_t start = 0) in MakeBlob() 35 MakeSequence(blob, start); in MakeBlob() 39 Key MakeKey(uint8_t start = 0) in MakeKey() 42 MakeSequence(key, start); in MakeKey()
|
/third_party/skia/src/effects/ |
H A D | SkTrimPathEffect.cpp | 18 static size_t add_segments(const SkPath& src, SkScalar start, SkScalar stop, SkPath* dst, in add_segments() argument 20 SkASSERT(start < stop); in add_segments() 30 if (start < next_offset) { in add_segments() 31 measure.getSegment(start - current_segment_offset, in add_segments() 108 const auto start = buffer.readScalar(), 112 return SkTrimPathEffect::Make(start, stop,
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | collationsets.h | 57 UBool handleCE32(UChar32 start, UChar32 end, uint32_t ce32); 110 void handleCE32(UChar32 start, UChar32 end, uint32_t ce32); 112 void handlePrefixes(UChar32 start, UChar32 end, uint32_t ce32); 113 void handleContractions(UChar32 start, UChar32 end, uint32_t ce32); 115 void addExpansions(UChar32 start, UChar32 end); 116 void addStrings(UChar32 start, UChar32 end, UnicodeSet *set);
|
/third_party/skia/third_party/externals/freetype/src/base/ |
H A D | ftadvanc.c | 113 FT_UInt start, in FT_EXPORT_DEF() 133 end = start + count; in FT_EXPORT_DEF() 134 if ( start >= num || end < start || end > num ) in FT_EXPORT_DEF() 143 error = func( face, start, count, flags, padvances ); in FT_EXPORT_DEF() 160 error = FT_Load_Glyph( face, start + nn, flags ); in FT_EXPORT_DEF()
|
/third_party/skia/third_party/externals/sfntly/cpp/src/sample/chromium/ |
H A D | chrome_subsetter.cc | 85 size_t start = 0; in StringToGlyphId() local 89 HexTo<unsigned int>(hex_csv.substr(start, end - start).c_str())); in StringToGlyphId() 90 start = end + 1; in StringToGlyphId() 91 end = hex_csv.find_first_of(",", start); in StringToGlyphId() 93 glyph_ids->push_back(HexTo<unsigned int>(hex_csv.substr(start).c_str())); in StringToGlyphId()
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/list/ |
H A D | list_scroller_visible_content_change_test_ng.cpp | 37 auto onVisibleChange = [&startInfo, &endInfo](ListItemIndex start, ListItemIndex end) { in HWTEST_F() 38 startInfo = start; in HWTEST_F() 107 auto onVisibleChange = [&startInfo, &endInfo](ListItemIndex start, ListItemIndex end) { in HWTEST_F() 108 startInfo = start; in HWTEST_F() 179 auto onVisibleChange = [&startInfo, &endInfo](ListItemIndex start, ListItemIndex end) { in HWTEST_F() 180 startInfo = start; in HWTEST_F() 251 auto onVisibleChange = [&startInfo, &endInfo](ListItemIndex start, ListItemIndex end) { in HWTEST_F() 252 startInfo = start; in HWTEST_F() 323 auto onVisibleChange = [&startInfo, &endInfo](ListItemIndex start, ListItemIndex end) { in HWTEST_F() 324 startInfo = start; in HWTEST_F() [all...] |
/kernel/linux/linux-5.10/drivers/pcmcia/ |
H A D | pcmcia_resource.c | 70 if ((s->io[i].res->start <= res->start) && in release_io_space() 75 res->start = res->end = 0; in release_io_space() 100 unsigned int base = res->start; in alloc_io_space() 130 res->start = base; in alloc_io_space() 131 res->end = res->start + num - 1; in alloc_io_space() 279 io_on.start = s->io[i].res->start; in pcmcia_fixup_iowidth() 461 res->start = res->end = 0; in pcmcia_release_window() 576 u8 b = c->io[0].start in pcmcia_enable_device() [all...] |
/kernel/linux/linux-6.6/drivers/pcmcia/ |
H A D | pcmcia_resource.c | 70 if ((s->io[i].res->start <= res->start) && in release_io_space() 75 res->start = res->end = 0; in release_io_space() 100 unsigned int base = res->start; in alloc_io_space() 130 res->start = base; in alloc_io_space() 131 res->end = res->start + num - 1; in alloc_io_space() 279 io_on.start = s->io[i].res->start; in pcmcia_fixup_iowidth() 458 res->start = res->end = 0; in pcmcia_release_window() 573 u8 b = c->io[0].start in pcmcia_enable_device() [all...] |
/third_party/skia/modules/skparagraph/src/ |
H A D | Run.h | 47 // LTR: [start: end) where start <= end 48 // RTL: [end: start) where start >= end 50 DirText(bool dir, size_t s, size_t e) : start(s), end(e) { } in DirText() 51 bool isLeftToRight() const { return start <= end; } in isLeftToRight() 52 size_t start; member in skia::textlayout::DirText 169 SkScalar calculateWidth(size_t start, size_t end, bool clip) const; 306 size_t start = 0; in iterateThroughClustersInTextOrder() local 307 size_t cluster = this->clusterIndex(start); in iterateThroughClustersInTextOrder() [all...] |
/foundation/arkui/ui_lite/frameworks/draw/ |
H A D | draw_curve.cpp | 21 void DrawCurve::DrawCubicBezier(BufferInfo& gfxDstBuffer, const Point& start, const Point& control1, in DrawCubicBezier() argument 29 Point prePoint = start; in DrawCubicBezier() 32 point.x = Interpolation::GetBezierInterpolation(t, start.x, control1.x, control2.x, end.x); in DrawCubicBezier() 33 point.y = Interpolation::GetBezierInterpolation(t, start.y, control1.y, control2.y, end.y); in DrawCubicBezier()
|
/kernel/linux/linux-5.10/arch/x86/kvm/mmu/ |
H A D | tdp_iter.h | 47 * Iterates over every SPTE mapping the GFN range [start, end) in a 50 #define for_each_tdp_pte_min_level(iter, root, root_level, min_level, start, end) \ 51 for (tdp_iter_start(&iter, root, root_level, min_level, start); \ 55 #define for_each_tdp_pte(iter, root, root_level, start, end) \ 56 for_each_tdp_pte_min_level(iter, root, root_level, PG_LEVEL_4K, start, end)
|
/kernel/linux/linux-5.10/arch/xtensa/include/asm/ |
H A D | pci-bridge.h | 24 unsigned long start; member 65 unsigned long start, unsigned long end, int flags, char *name) in pcibios_init_resource() 67 res->start = start; in pcibios_init_resource() 64 pcibios_init_resource(struct resource *res, unsigned long start, unsigned long end, int flags, char *name) pcibios_init_resource() argument
|
/kernel/linux/linux-5.10/arch/mips/pci/ |
H A D | pci.c | 48 const struct resource *rsrc, resource_size_t *start, in pci_resource_to_user() 53 *start = fixup_bigphys_addr(rsrc->start, size); in pci_resource_to_user() 54 *end = rsrc->start + size - 1; in pci_resource_to_user() 47 pci_resource_to_user(const struct pci_dev *dev, int bar, const struct resource *rsrc, resource_size_t *start, resource_size_t *end) pci_resource_to_user() argument
|
/kernel/linux/linux-6.6/arch/hexagon/include/asm/ |
H A D | cacheflush.h | 18 * - flush_cache_range(vma, start, end) flushes a range of pages 19 * - flush_icache_range(start, end) flush a range of instructions 31 extern void flush_dcache_range(unsigned long start, unsigned long end); 37 extern void flush_icache_range(unsigned long start, unsigned long end); 78 extern void hexagon_inv_dcache_range(unsigned long start, unsigned long end); 79 extern void hexagon_clean_dcache_range(unsigned long start, unsigned long end);
|
/kernel/linux/linux-6.6/arch/powerpc/include/asm/ |
H A D | sections.h | 60 static inline int overlaps_interrupt_vector_text(unsigned long start, in overlaps_interrupt_vector_text() argument 67 return start < (unsigned long)__va(real_end) && in overlaps_interrupt_vector_text() 71 static inline int overlaps_kernel_text(unsigned long start, unsigned long end) in overlaps_kernel_text() argument 73 return start < (unsigned long)__init_end && in overlaps_kernel_text()
|
/kernel/linux/linux-6.6/arch/mips/pci/ |
H A D | pci.c | 48 const struct resource *rsrc, resource_size_t *start, in pci_resource_to_user() 53 *start = fixup_bigphys_addr(rsrc->start, size); in pci_resource_to_user() 54 *end = rsrc->start + size - 1; in pci_resource_to_user() 47 pci_resource_to_user(const struct pci_dev *dev, int bar, const struct resource *rsrc, resource_size_t *start, resource_size_t *end) pci_resource_to_user() argument
|
/kernel/linux/linux-5.10/fs/xfs/scrub/ |
H A D | bitmap.h | 11 uint64_t start; member 27 for ((b) = (bex)->start; (b) < (bex)->start + (bex)->len; (b)++) 29 int xbitmap_set(struct xbitmap *bitmap, uint64_t start, uint64_t len);
|
/kernel/linux/linux-5.10/include/linux/hck/ |
H A D | lite_hck_jit_memory.h | 23 TP_PROTO(struct task_struct *task, unsigned long start, unsigned long size, int *err), 24 TP_ARGS(task, start, size, err)); 32 TP_PROTO(struct task_struct *task, unsigned long start, unsigned long size, int *err), 33 TP_ARGS(task, start, size, err));
|
/kernel/linux/linux-6.6/fs/btrfs/ |
H A D | delalloc-space.h | 10 struct extent_changeset **reserved, u64 start, u64 len, 13 struct extent_changeset *reserved, u64 start, u64 len); 16 u64 start, u64 len, bool qgroup_free); 22 struct extent_changeset **reserved, u64 start, u64 len);
|
/kernel/linux/linux-6.6/include/linux/hck/ |
H A D | lite_hck_jit_memory.h | 23 TP_PROTO(struct task_struct *task, unsigned long start, unsigned long size, int *err), 24 TP_ARGS(task, start, size, err)); 32 TP_PROTO(struct task_struct *task, unsigned long start, unsigned long size, int *err), 33 TP_ARGS(task, start, size, err));
|
/kernel/linux/linux-6.6/include/trace/events/ |
H A D | intel_ifs.h | 20 __field( u8, start ) 26 __entry->start = activate.start; 31 TP_printk("cpu: %d, start: %.2x, stop: %.2x, status: %llx", 33 __entry->start,
|
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/display/ |
H A D | intel_wm_types.h | 59 u16 start, end; /* in number of blocks, 'end' is exclusive */ member 64 return entry->end - entry->start; in skl_ddb_entry_size() 70 if (e1->start == e2->start && e1->end == e2->end) in skl_ddb_entry_equal()
|
/kernel/linux/linux-6.6/tools/testing/selftests/powerpc/security/ |
H A D | mitigation-patching.sh | 11 local start 16 start=$(date +%s) 17 now=$start 19 while [[ $((now-start)) -lt "$TIMEOUT" ]]
|
/third_party/libabigail/tests/ |
H A D | test-dot.cc | 16 obj.start(); in main() 27 obj.start(); in main() 38 obj.start(); in main() 50 obj.start(); in main()
|
/third_party/musl/porting/linux/user/src/linux/ |
H A D | cache.c | 42 static int flush_icache_init(void *start, void *end, unsigned long int flags) in flush_icache_init() argument 49 return f ? f(start, end, flags) : -ENOSYS; in flush_icache_init() 54 int __riscv_flush_icache(void *start, void *end, unsigned long int flags) in __riscv_flush_icache() argument 59 int r = f(start, end, flags); in __riscv_flush_icache()
|