/third_party/rust/crates/syn/examples/dump-syntax/src/ |
H A D | main.rs | 100 let mut end = err.span().end(); in render_location() variables 107 if end.line > start.line { in render_location() 108 end.line = start.line; in render_location() 109 end.column = code_line.len(); in render_location() 138 .repeat(end.column.saturating_sub(start.column).max(1)) in render_location()
|
/third_party/rust/crates/serde/serde/src/ser/ |
H A D | impossible.rs | 83 fn end(self) -> Result<Ok, Error> { in end() functions 103 fn end(self) -> Result<Ok, Error> { in end() functions 123 fn end(self) -> Result<Ok, Error> { in end() functions 143 fn end(self) -> Result<Ok, Error> { in end() functions 171 fn end(self) -> Result<Ok, Error> { in end() functions 192 fn end(self) -> Result<Ok, Error> { in end() functions 213 fn end(self) -> Result<Ok, Error> { in end() functions
|
/third_party/skia/bench/ |
H A D | TypefaceBench.cpp | 261 const char* end = cursor + len; in convertLine() local 264 while (cursor < end) { in convertLine() 265 SkUnichar u = SkUTF::NextUTF8(&cursor, end); in convertLine() 271 result->utf.insert(bytes.end(), buffer, buffer + count); in convertLine() 277 result->utf.insert(bytes.end(), (char *)buffer, (char *)buffer + count * 2); in convertLine() 281 result->utf.insert(bytes.end(), (char*) &u, (char*) &u + 4); in convertLine()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
H A D | aes-omac1.c | 48 const u8 *pos, *end; in omac1_aes_vector() local 66 end = pos + len[0]; in omac1_aes_vector() 71 if (pos >= end) { in omac1_aes_vector() 81 end = pos + len[e]; in omac1_aes_vector() 96 if (pos >= end) { in omac1_aes_vector() 105 end = pos + len[e]; in omac1_aes_vector()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
H A D | dhcp_snoop.c | 39 const u8 *end, *pos; in handle_dhcp() local 57 end = (const u8 *) b + ip_len; in handle_dhcp() 59 while (pos < end && *pos != DHCP_OPT_END) { in handle_dhcp() 65 if (pos >= end || 1 + *pos > end - pos) in handle_dhcp() 68 if (pos >= end) in handle_dhcp()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
H A D | aes-omac1.c | 48 const u8 *pos, *end; in omac1_aes_vector() local 66 end = pos + len[0]; in omac1_aes_vector() 71 if (pos >= end) { in omac1_aes_vector() 81 end = pos + len[e]; in omac1_aes_vector() 96 if (pos >= end) { in omac1_aes_vector() 105 end = pos + len[e]; in omac1_aes_vector()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
H A D | dhcp_snoop.c | 39 const u8 *end, *pos; in handle_dhcp() local 57 end = (const u8 *) b + tot_len; in handle_dhcp() 59 while (pos < end && *pos != DHCP_OPT_END) { in handle_dhcp() 65 if (pos >= end || 1 + *pos > end - pos) in handle_dhcp() 68 if (pos >= end) in handle_dhcp()
|
/foundation/multimedia/audio_framework/services/audio_service/server/src/ |
H A D | audio_playback_engine.cpp | 32 auto it = std::find(streams_.begin(), streams_.end(), stream); in AddRenderer() 33 if (it == streams_.end()) { in AddRenderer() 41 auto it = std::find(streams_.begin(), streams_.end(), stream); in RemoveRenderer() 42 if (it != streams_.end()) { in RemoveRenderer()
|
/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_mtp_test/src/ |
H A D | mtp_test.cpp | 39 testData_.insert(testData_.end(), testData.begin(), testData.end()); in setOutBuffer() 46 outBuffer.insert(outBuffer.end(), testData_.begin(), testData_.end()); in getOutBuffer()
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/adapter/dfx/src/ |
H A D | value_hash.h | 32 std::vector<uint8_t> value(input.begin(), input.end()); in CalcValueHash() 46 res = std::string(result.begin(), result.end()); in CalcValueHash() 49 res = std::string(result.end() - LEN, result.end()); in CalcValueHash()
|
/foundation/filemanagement/storage_service/services/storage_daemon/mtpfs/src/ |
H A D | mtpfs_tmp_files_pool.cpp | 29 auto it = std::find(pool_.begin(), pool_.end(), path); in RemoveFile() 30 if (it == pool_.end()) { in RemoveFile() 38 auto it = std::find(pool_.begin(), pool_.end(), path); in GetFile() 39 if (it == pool_.end()) { in GetFile()
|
/kernel/linux/linux-5.10/arch/x86/kvm/mmu/ |
H A D | tdp_iter.h | 41 * iterator walks off the end of the paging structure. 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) \ 52 iter.valid && iter.gfn < end; \ 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 | 25 unsigned long end; member 65 unsigned long start, unsigned long end, int flags, char *name) in pcibios_init_resource() 68 res->end = end; 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/bcm63xx/ |
H A D | dev-spi.c | 24 .end = -1, /* filled at runtime */ 45 spi_resources[0].end = spi_resources[0].start; in bcm63xx_spi_register() 50 spi_resources[0].end += BCM_6348_RSET_SPI_SIZE - 1; in bcm63xx_spi_register() 56 spi_resources[0].end += BCM_6358_RSET_SPI_SIZE - 1; in bcm63xx_spi_register()
|
/kernel/linux/linux-5.10/arch/hexagon/mm/ |
H A D | vm_tlb.c | 26 unsigned long end) in flush_tlb_range() 31 __vmclrmap((void *)start, end - start); in flush_tlb_range() 49 /* should probably use that fixaddr end or whateve label */ in tlb_flush_all() 78 void flush_tlb_kernel_range(unsigned long start, unsigned long end) in flush_tlb_kernel_range() argument 80 __vmclrmap((void *)start, end - start); in flush_tlb_kernel_range() 25 flush_tlb_range(struct vm_area_struct *vma, unsigned long start, unsigned long end) flush_tlb_range() argument
|
/kernel/linux/linux-5.10/arch/sh/mm/ |
H A D | numa.c | 26 void __init setup_bootmem_node(int nid, unsigned long start, unsigned long end) in setup_bootmem_node() argument 34 end_pfn = PFN_DOWN(end); in setup_bootmem_node() 36 pmb_bolt_mapping((unsigned long)__va(start), start, end - start, in setup_bootmem_node() 39 memblock_add(start, end - start); in setup_bootmem_node()
|
/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/mips/bcm63xx/ |
H A D | dev-spi.c | 24 .end = -1, /* filled at runtime */ 45 spi_resources[0].end = spi_resources[0].start; in bcm63xx_spi_register() 50 spi_resources[0].end += BCM_6348_RSET_SPI_SIZE - 1; in bcm63xx_spi_register() 56 spi_resources[0].end += BCM_6358_RSET_SPI_SIZE - 1; in bcm63xx_spi_register()
|
/kernel/linux/linux-6.6/arch/hexagon/mm/ |
H A D | vm_tlb.c | 26 unsigned long end) in flush_tlb_range() 31 __vmclrmap((void *)start, end - start); in flush_tlb_range() 49 /* should probably use that fixaddr end or whateve label */ in tlb_flush_all() 78 void flush_tlb_kernel_range(unsigned long start, unsigned long end) in flush_tlb_kernel_range() argument 80 __vmclrmap((void *)start, end - start); in flush_tlb_kernel_range() 25 flush_tlb_range(struct vm_area_struct *vma, unsigned long start, unsigned long end) flush_tlb_range() argument
|
/kernel/linux/linux-6.6/arch/powerpc/include/asm/ |
H A D | sections.h | 61 unsigned long end) in overlaps_interrupt_vector_text() 68 (unsigned long)__va(real_start) < end; in overlaps_interrupt_vector_text() 71 static inline int overlaps_kernel_text(unsigned long start, unsigned long end) in overlaps_kernel_text() argument 74 (unsigned long)_stext < end; in overlaps_kernel_text() 60 overlaps_interrupt_vector_text(unsigned long start, unsigned long end) overlaps_interrupt_vector_text() argument
|
/kernel/linux/linux-6.6/arch/sh/mm/ |
H A D | numa.c | 26 void __init setup_bootmem_node(int nid, unsigned long start, unsigned long end) in setup_bootmem_node() argument 34 end_pfn = PFN_DOWN(end); in setup_bootmem_node() 36 pmb_bolt_mapping((unsigned long)__va(start), start, end - start, in setup_bootmem_node() 39 memblock_add(start, end - start); in setup_bootmem_node()
|
/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()
|
/third_party/ffmpeg/libavcodec/ |
H A D | vc1_common.h | 57 * @return position where next marker starts or end of buffer if no marker found 59 static av_always_inline const uint8_t* find_next_marker(const uint8_t *src, const uint8_t *end) in find_next_marker() argument 61 if (end - src >= 4) { in find_next_marker() 63 src = avpriv_find_start_code(src, end, &mrk); in find_next_marker() 67 return end; in find_next_marker()
|
/third_party/mbedtls/tests/src/ |
H A D | test_memory.c | 28 uintptr_t end = start + (uintptr_t) *p_size; in align_for_asan() local 32 * align start down to an 8-byte boundary, and end up to an 8-byte in align_for_asan() 35 end = (end + 7) & ~(uintptr_t) 7; in align_for_asan() 37 *p_size = end - start; in align_for_asan()
|
/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()
|