/third_party/openssl/test/ |
H A D | dtlstest.c | 88 goto end; in test_dtls_unprocessed() 94 goto end; in test_dtls_unprocessed() 99 goto end; in test_dtls_unprocessed() 104 goto end; in test_dtls_unprocessed() 129 goto end; in test_dtls_unprocessed() 133 goto end; in test_dtls_unprocessed() 137 end: in test_dtls_unprocessed() 213 goto end; in test_dtls_drop_records() 217 goto end; in test_dtls_drop_records() 230 goto end; in test_dtls_drop_records() [all...] |
H A D | servername_test.c | 72 goto end; in get_sni_from_client_hello() 78 goto end; in get_sni_from_client_hello() 88 goto end; in get_sni_from_client_hello() 90 goto end; in get_sni_from_client_hello() 93 end: in get_sni_from_client_hello() 109 goto end; in client_setup_sni_before_state() 113 goto end; in client_setup_sni_before_state() 117 goto end; in client_setup_sni_before_state() 127 goto end; in client_setup_sni_before_state() 134 goto end; in client_setup_sni_before_state() [all...] |
/third_party/skia/modules/skparagraph/src/ |
H A D | OneLineShaper.cpp | 16 static inline SkUnichar nextUtf8Unit(const char** ptr, const char* end) { in nextUtf8Unit() argument 17 SkUnichar val = SkUTF::NextUTF8(ptr, end); in nextUtf8Unit() 30 SkDebugf("Run [%zu:%zu)\n", fCurrentRun->fTextRange.start, fCurrentRun->fTextRange.end); in commitRunBuffer() 70 resolved.fText.start, resolved.fText.end); in printState() 77 SkDebugf("[%zu:%zu) ", resolved.fGlyphs.start, resolved.fGlyphs.end); in printState() 79 resolved.fText.start, resolved.fText.end, in printState() 86 SkDebugf("[%zu:%zu)\n", unresolved.fText.start, unresolved.fText.end); in printState() 95 std::swap(resolvedTextLimits.start, resolvedTextLimits.end); in fillGaps() 101 auto end = fUnresolvedBlocks.end(); in fillGaps() local 372 size_t end = std::min(block.fRange.end, textRange.end); generateBlockRange() local 576 auto end = std::min(bidiRegion.end, placeholder.fTextBefore.end); global() local [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | StringCharacterIterator.java | 37 private int end; field in StringCharacterIterator 38 // invariant: begin <= pos <= end 70 * @param end Index of the character following the last character 75 public StringCharacterIterator(String text, int begin, int end, int pos) { in StringCharacterIterator() argument 81 if (begin < 0 || begin > end || end > text.length()) { in StringCharacterIterator() 85 if (pos < begin || pos > end) { in StringCharacterIterator() 90 this.end = end; in StringCharacterIterator() 110 this.end in setText() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | StringCharacterIterator.java | 39 private int end; field in StringCharacterIterator 40 // invariant: begin <= pos <= end 72 * @param end Index of the character following the last character 77 public StringCharacterIterator(String text, int begin, int end, int pos) { in StringCharacterIterator() argument 83 if (begin < 0 || begin > end || end > text.length()) { in StringCharacterIterator() 87 if (pos < begin || pos > end) { in StringCharacterIterator() 92 this.end = end; in StringCharacterIterator() 112 this.end in setText() [all...] |
/third_party/node/deps/icu-small/source/tools/toolutil/ |
H A D | pkg_icu.cpp | 81 char *end; in readList() local 93 end=strchr(line, '#'); in readList() 94 if(end!=nullptr) { in readList() 95 *end=0; in readList() 98 end=strchr(line, 0); in readList() 99 while(line<end && (*(end-1)=='\r' || *(end-1)=='\n')) { in readList() 100 *--end=0; in readList() 114 // find whitespace after the item or the end o in readList() [all...] |
/third_party/icu/icu4c/source/tools/toolutil/ |
H A D | pkg_icu.cpp | 81 char *end; in readList() local 93 end=strchr(line, '#'); in readList() 94 if(end!=NULL) { in readList() 95 *end=0; in readList() 98 end=strchr(line, 0); in readList() 99 while(line<end && (*(end-1)=='\r' || *(end-1)=='\n')) { in readList() 100 *--end=0; in readList() 114 // find whitespace after the item or the end o in readList() [all...] |
/third_party/skia/third_party/externals/icu/source/tools/toolutil/ |
H A D | pkg_icu.cpp | 81 char *end; in readList() local 93 end=strchr(line, '#'); in readList() 94 if(end!=NULL) { in readList() 95 *end=0; in readList() 98 end=strchr(line, 0); in readList() 99 while(line<end && (*(end-1)=='\r' || *(end-1)=='\n')) { in readList() 100 *--end=0; in readList() 114 // find whitespace after the item or the end o in readList() [all...] |
/kernel/linux/linux-5.10/arch/arm/mm/ |
H A D | cache-feroceon-l2.c | 34 * end addresses to successive cp15 registers, and process every 36 * [start:end]. 73 static inline void l2_clean_pa_range(unsigned long start, unsigned long end) in l2_clean_pa_range() argument 78 * Make sure 'start' and 'end' reference the same page, as in l2_clean_pa_range() 82 BUG_ON((start ^ end) >> PAGE_SHIFT); in l2_clean_pa_range() 85 va_end = va_start + (end - start); in l2_clean_pa_range() 104 static inline void l2_inv_pa_range(unsigned long start, unsigned long end) in l2_inv_pa_range() argument 109 * Make sure 'start' and 'end' reference the same page, as in l2_inv_pa_range() 113 BUG_ON((start ^ end) >> PAGE_SHIFT); in l2_inv_pa_range() 116 va_end = va_start + (end in l2_inv_pa_range() 142 calc_range_end(unsigned long start, unsigned long end) calc_range_end() argument 171 feroceon_l2_inv_range(unsigned long start, unsigned long end) feroceon_l2_inv_range() argument 201 feroceon_l2_clean_range(unsigned long start, unsigned long end) feroceon_l2_clean_range() argument 220 feroceon_l2_flush_range(unsigned long start, unsigned long end) feroceon_l2_flush_range() argument [all...] |
/kernel/linux/linux-6.6/arch/arm/mm/ |
H A D | cache-feroceon-l2.c | 31 * end addresses to successive cp15 registers, and process every 33 * [start:end]. 70 static inline void l2_clean_pa_range(unsigned long start, unsigned long end) in l2_clean_pa_range() argument 75 * Make sure 'start' and 'end' reference the same page, as in l2_clean_pa_range() 79 BUG_ON((start ^ end) >> PAGE_SHIFT); in l2_clean_pa_range() 82 va_end = va_start + (end - start); in l2_clean_pa_range() 101 static inline void l2_inv_pa_range(unsigned long start, unsigned long end) in l2_inv_pa_range() argument 106 * Make sure 'start' and 'end' reference the same page, as in l2_inv_pa_range() 110 BUG_ON((start ^ end) >> PAGE_SHIFT); in l2_inv_pa_range() 113 va_end = va_start + (end in l2_inv_pa_range() 139 calc_range_end(unsigned long start, unsigned long end) calc_range_end() argument 168 feroceon_l2_inv_range(unsigned long start, unsigned long end) feroceon_l2_inv_range() argument 198 feroceon_l2_clean_range(unsigned long start, unsigned long end) feroceon_l2_clean_range() argument 217 feroceon_l2_flush_range(unsigned long start, unsigned long end) feroceon_l2_flush_range() argument [all...] |
/kernel/linux/linux-6.6/mm/damon/ |
H A D | vaddr-test.h | 52 * first identifies the start of mappings, end of mappings, and the two biggest 61 * and end with 305. The process also has three unmapped areas, 25-200, 87 KUNIT_EXPECT_EQ(test, 25ul, regions[0].end); in damon_test_three_regions_in_vmas() 89 KUNIT_EXPECT_EQ(test, 220ul, regions[1].end); in damon_test_three_regions_in_vmas() 91 KUNIT_EXPECT_EQ(test, 330ul, regions[2].end); in damon_test_three_regions_in_vmas() 111 * regions an array containing start/end addresses of current 115 * expected start/end addresses of monitoring target regions that 149 KUNIT_EXPECT_EQ(test, r->ar.end, expected[i * 2 + 1]); in damon_do_test_apply_three_regions() 168 (struct damon_addr_range){.start = 5, .end = 27}, in damon_test_apply_three_regions1() 169 (struct damon_addr_range){.start = 45, .end in damon_test_apply_three_regions1() 249 damon_test_split_evenly_fail(struct kunit *test, unsigned long start, unsigned long end, unsigned int nr_pieces) damon_test_split_evenly_fail() argument 268 damon_test_split_evenly_succ(struct kunit *test, unsigned long start, unsigned long end, unsigned int nr_pieces) damon_test_split_evenly_succ() argument [all...] |
/third_party/skia/third_party/externals/expat/expat/lib/ |
H A D | xmltok.h | 46 -5 /* ] or ]] at the end of the scan; might be \ 53 -3 /* A CR at the end of the scan; \ 185 const char *end, POSITION *); 187 const char *end, const char **badPtr); 202 /* Scan the string starting at ptr until the end of the next complete 216 set to point to the character following the end of that token. 223 #define XmlTok(enc, state, ptr, end, nextTokPtr) \ 224 (((enc)->scanners[state])(enc, ptr, end, nextTokPtr)) 226 #define XmlPrologTok(enc, ptr, end, nextTokPtr) \ 227 XmlTok(enc, XML_PROLOG_STATE, ptr, end, nextTokPt [all...] |
/third_party/python/Modules/expat/ |
H A D | xmltok.h | 46 -5 /* ] or ]] at the end of the scan; might be \ 53 -3 /* A CR at the end of the scan; \ 185 const char *end, POSITION *); 187 const char *end, const char **badPtr); 202 /* Scan the string starting at ptr until the end of the next complete 216 set to point to the character following the end of that token. 223 #define XmlTok(enc, state, ptr, end, nextTokPtr) \ 224 (((enc)->scanners[state])(enc, ptr, end, nextTokPtr)) 226 #define XmlPrologTok(enc, ptr, end, nextTokPtr) \ 227 XmlTok(enc, XML_PROLOG_STATE, ptr, end, nextTokPt [all...] |
/kernel/linux/linux-5.10/arch/s390/mm/ |
H A D | vmem.c | 92 static void __vmemmap_use_sub_pmd(unsigned long start, unsigned long end) in __vmemmap_use_sub_pmd() argument 103 static void vmemmap_use_sub_pmd(unsigned long start, unsigned long end) in vmemmap_use_sub_pmd() argument 110 unused_pmd_start = end; in vmemmap_use_sub_pmd() 116 __vmemmap_use_sub_pmd(start, end); in vmemmap_use_sub_pmd() 119 static void vmemmap_use_new_sub_pmd(unsigned long start, unsigned long end) in vmemmap_use_new_sub_pmd() argument 126 __vmemmap_use_sub_pmd(start, end); in vmemmap_use_new_sub_pmd() 136 if (!IS_ALIGNED(end, PMD_SIZE)) in vmemmap_use_new_sub_pmd() 137 unused_pmd_start = end; in vmemmap_use_new_sub_pmd() 141 static bool vmemmap_unuse_sub_pmd(unsigned long start, unsigned long end) in vmemmap_unuse_sub_pmd() argument 146 memset(__va(start), PAGE_UNUSED, end in vmemmap_unuse_sub_pmd() 151 modify_pte_table(pmd_t *pmd, unsigned long addr, unsigned long end, bool add, bool direct) modify_pte_table() argument 208 modify_pmd_table(pud_t *pud, unsigned long addr, unsigned long end, bool add, bool direct) modify_pmd_table() argument 291 const unsigned long end = start + PUD_SIZE; try_free_pmd_table() local 310 modify_pud_table(p4d_t *p4d, unsigned long addr, unsigned long end, bool add, bool direct) modify_pud_table() argument 366 const unsigned long end = start + P4D_SIZE; try_free_pud_table() local 387 modify_p4d_table(pgd_t *pgd, unsigned long addr, unsigned long end, bool add, bool direct) modify_p4d_table() argument 420 const unsigned long end = start + PGDIR_SIZE; try_free_p4d_table() local 441 modify_pagetable(unsigned long start, unsigned long end, bool add, bool direct) modify_pagetable() argument 477 add_pagetable(unsigned long start, unsigned long end, bool direct) add_pagetable() argument 482 remove_pagetable(unsigned long start, unsigned long end, bool direct) remove_pagetable() argument 506 vmemmap_populate(unsigned long start, unsigned long end, int node, struct vmem_altmap *altmap) vmemmap_populate() argument 520 vmemmap_free(unsigned long start, unsigned long end, struct vmem_altmap *altmap) vmemmap_free() argument 558 phys_addr_t base, end; vmem_map_init() local [all...] |
/third_party/elfutils/libdw/ |
H A D | cfi.c | 105 const uint8_t *program, const uint8_t *const end, bool abi_cfi, in execute_cfi() 128 while (program < end) in execute_cfi() 148 cfi_assert (program + 2 <= end); in execute_cfi() 152 cfi_assert (program + 4 <= end); in execute_cfi() 156 cfi_assert (program + 8 <= end); in execute_cfi() 168 These cases end with 'continue'. We only get out of the in execute_cfi() 172 get_uleb128 (operand, program, end); in execute_cfi() 173 cfi_assert (program < end); in execute_cfi() 174 get_uleb128 (offset, program, end); in execute_cfi() 185 get_uleb128 (regno, program, end); in execute_cfi() 102 execute_cfi(Dwarf_CFI *cache, const struct dwarf_cie *cie, Dwarf_Frame **state, const uint8_t *program, const uint8_t *const end, bool abi_cfi, Dwarf_Addr loc, Dwarf_Addr find_pc) execute_cfi() argument [all...] |
/foundation/arkui/ace_engine/frameworks/core/common/ime/ |
H A D | text_editing_value.cpp | 122 void TextEditingValue::UpdateSelection(int32_t start, int32_t end) in UpdateSelection() argument 127 if (static_cast<size_t>(end) > GetWideText().length()) { in UpdateSelection() 128 end = static_cast<int32_t>(GetWideText().length()); in UpdateSelection() 130 selection.Update(start, end); in UpdateSelection() 134 void TextEditingValue::UpdateCompose(int32_t start, int32_t end) in UpdateCompose() argument 136 compose.Update(start, end); in UpdateCompose() 149 int32_t end = selection.GetEnd(); in SelectionAwareTextManipulation() local 150 if (static_cast<size_t>(end) > wideText.length() || start > end) { in SelectionAwareTextManipulation() 154 if ((start <= 0) && (end < in SelectionAwareTextManipulation() 207 int32_t end = selection.GetEnd(); GetSelectedText() local 227 int32_t end = textSelection.GetEnd(); GetSelectedText() local 246 int32_t end = selection.GetEnd(); GetAfterSelection() local 261 Delete(int32_t start, int32_t end) Delete() argument [all...] |
/kernel/linux/linux-6.6/arch/nios2/mm/ |
H A D | cacheflush.c | 19 static void __flush_dcache(unsigned long start, unsigned long end) in __flush_dcache() argument 24 end += (cpuinfo.dcache_line_size - 1); in __flush_dcache() 25 end &= ~(cpuinfo.dcache_line_size - 1); in __flush_dcache() 27 if (end > start + cpuinfo.dcache_size) in __flush_dcache() 28 end = start + cpuinfo.dcache_size; in __flush_dcache() 30 for (addr = start; addr < end; addr += cpuinfo.dcache_line_size) { in __flush_dcache() 38 static void __invalidate_dcache(unsigned long start, unsigned long end) in __invalidate_dcache() argument 43 end += (cpuinfo.dcache_line_size - 1); in __invalidate_dcache() 44 end &= ~(cpuinfo.dcache_line_size - 1); in __invalidate_dcache() 46 for (addr = start; addr < end; add in __invalidate_dcache() 54 __flush_icache(unsigned long start, unsigned long end) __flush_icache() argument 115 flush_icache_range(unsigned long start, unsigned long end) flush_icache_range() argument 121 flush_dcache_range(unsigned long start, unsigned long end) flush_dcache_range() argument 128 invalidate_dcache_range(unsigned long start, unsigned long end) invalidate_dcache_range() argument 134 flush_cache_range(struct vm_area_struct *vma, unsigned long start, unsigned long end) flush_cache_range() argument 146 unsigned long end = start + nr * PAGE_SIZE; flush_icache_pages() local 156 unsigned long end = start + PAGE_SIZE; flush_cache_page() local [all...] |
/third_party/musl/libc-test/src/functionalext/supplement/stdlib/ |
H A D | wcstod.c | 38 wchar_t *end = NULL; in wcstod_0100() local 41 double val = wcstod(str0, &end); in wcstod_0100() 43 if (wcscmp(end, str1)) { in wcstod_0100() 50 * @tc.desc : Convert wide string to dobule type with no end string characters 56 wchar_t *end = NULL; in wcstod_0200() local 58 double val = wcstod(str, &end); in wcstod_0200() 70 wchar_t *end = NULL; in wcstod_0300() local 72 double val = wcstod(str, &end); in wcstod_0300() 84 wchar_t *end = NULL; in wcstod_0400() local 86 double val = wcstod(str, &end); in wcstod_0400() 100 wchar_t *end = NULL; wcstod_0500() local 114 wchar_t *end = NULL; wcstod_0600() local 128 wchar_t *end = NULL; wcstod_0700() local [all...] |
H A D | wcstof.c | 38 wchar_t *end = NULL; in wcstof_0100() local 41 float val = wcstof(str0, &end); in wcstof_0100() 43 if (wcscmp(end, str1)) { in wcstof_0100() 50 * @tc.desc : Convert wide string to float type with no end string characters 56 wchar_t *end = NULL; in wcstof_0200() local 58 float val = wcstof(str, &end); in wcstof_0200() 70 wchar_t *end = NULL; in wcstof_0300() local 72 float val = wcstof(str, &end); in wcstof_0300() 84 wchar_t *end = NULL; in wcstof_0400() local 86 float val = wcstof(str, &end); in wcstof_0400() 100 wchar_t *end = NULL; wcstof_0500() local 114 wchar_t *end = NULL; wcstof_0600() local 128 wchar_t *end = NULL; wcstof_0700() local [all...] |
/foundation/arkui/ace_engine/interfaces/napi/kits/observer/ |
H A D | ui_observer.cpp | 65 if (std::find(unspecifiedNavigationListeners_.begin(), unspecifiedNavigationListeners_.end(), listener) != in RegisterNavigationCallback() 66 unspecifiedNavigationListeners_.end()) { in RegisterNavigationCallback() 78 if (iter == specifiedCNavigationListeners_.end()) { in RegisterNavigationCallback() 84 if (std::find(holder.begin(), holder.end(), listener) != holder.end()) { in RegisterNavigationCallback() 101 unspecifiedNavigationListeners_.end(), in UnRegisterNavigationCallback() 106 unspecifiedNavigationListeners_.end() in UnRegisterNavigationCallback() 114 if (iter == specifiedCNavigationListeners_.end()) { in UnRegisterNavigationCallback() 125 holder.end(), in UnRegisterNavigationCallback() 130 holder.end() in UnRegisterNavigationCallback() [all...] |
/kernel/linux/linux-6.6/drivers/firmware/efi/libstub/ |
H A D | unaccepted_memory.c | 91 * unaligned start/end addresses and either: 97 void process_unaccepted_memory(u64 start, u64 end) in process_unaccepted_memory() argument 120 if (end - start < 2 * unit_size) { in process_unaccepted_memory() 121 arch_accept_memory(start, end); in process_unaccepted_memory() 126 * No matter how the start and end are aligned, at least one unaccepted in process_unaccepted_memory() 136 /* Immediately accept a <unit_size piece at the end: */ in process_unaccepted_memory() 137 if (end & unit_mask) { in process_unaccepted_memory() 138 arch_accept_memory(round_down(end, unit_size), end); in process_unaccepted_memory() local 139 end in process_unaccepted_memory() 180 accept_memory(phys_addr_t start, phys_addr_t end) accept_memory() argument [all...] |
/third_party/icu/icu4c/source/samples/break/ |
H A D | break.cpp | 33 int32_t start, int32_t end ) in printTextRange() 39 printf(" %ld %ld\t", (long)start, (long)end); in printTextRange() 42 printUnicodeString(UnicodeString(s, start, end-start)); in printTextRange() 44 printUnicodeString(UnicodeString(s, end)); in printTextRange() 54 for (int32_t end = boundary.next(); in printEachForward() 55 end != BreakIterator::DONE; in printEachForward() 56 start = end, end = boundary.next()) in printEachForward() 58 printTextRange( boundary, start, end ); in printEachForward() 65 int32_t end in printEachBackward() local 78 int32_t end = boundary.next(); printFirst() local 85 int32_t end = boundary.last(); printLast() local 93 int32_t end = boundary.following(pos); printAt() local [all...] |
/third_party/skia/third_party/externals/icu/source/samples/break/ |
H A D | break.cpp | 33 int32_t start, int32_t end ) in printTextRange() 39 printf(" %ld %ld\t", (long)start, (long)end); in printTextRange() 42 printUnicodeString(UnicodeString(s, start, end-start)); in printTextRange() 44 printUnicodeString(UnicodeString(s, end)); in printTextRange() 54 for (int32_t end = boundary.next(); in printEachForward() 55 end != BreakIterator::DONE; in printEachForward() 56 start = end, end = boundary.next()) in printEachForward() 58 printTextRange( boundary, start, end ); in printEachForward() 65 int32_t end in printEachBackward() local 78 int32_t end = boundary.next(); printFirst() local 85 int32_t end = boundary.last(); printLast() local 93 int32_t end = boundary.following(pos); printAt() local [all...] |
/foundation/ability/ability_runtime/test/unittest/extension_config_mgr_test/ |
H A D | extension_config_mgr_test.cpp | 88 result = (mgr.blocklistConfig_.find(BLOCK_LIST_ITEM_SERVICE_EXTENSION) != mgr.blocklistConfig_.end()); in HWTEST_F() 90 result = (mgr.blocklistConfig_.find(BLOCK_LIST_ITEM_FORM_EXTENSION) != mgr.blocklistConfig_.end()); in HWTEST_F() 92 result = (mgr.blocklistConfig_.find(BLOCK_LIST_ITEM_FILE_ACCESS_EXTENSION) != mgr.blocklistConfig_.end()); in HWTEST_F() 94 result = (mgr.blocklistConfig_.find(BLOCK_LIST_ITEM_BACKUP_EXTENSION) != mgr.blocklistConfig_.end()); in HWTEST_F() 96 result = (mgr.blocklistConfig_.find(BLOCK_LIST_ITEM_ENTERPRISE_ADMIN_EXTENSION) != mgr.blocklistConfig_.end()); in HWTEST_F() 98 result = (mgr.blocklistConfig_.find(BLOCK_LIST_ITEM_WINDOW_EXTENSION_EXTENSION) != mgr.blocklistConfig_.end()); in HWTEST_F() 100 result = (mgr.blocklistConfig_.find(BLOCK_LIST_ITEM_WALLPAPER_EXTENSION) != mgr.blocklistConfig_.end()); in HWTEST_F() 102 result = (mgr.blocklistConfig_.find(BLOCK_LIST_ITEM_STATIC_SUBSCRIBER_EXTENSION) != mgr.blocklistConfig_.end()); in HWTEST_F() 104 result = (mgr.blocklistConfig_.find(BLOCK_LIST_ITEM_ACCESSIBILITY_EXTENSION) != mgr.blocklistConfig_.end()); in HWTEST_F() 106 result = (mgr.blocklistConfig_.find(BLOCK_LIST_ITEM_INPUT_METHOD_EXTENSION_ABILITY) != mgr.blocklistConfig_.end()); in HWTEST_F() [all...] |
/kernel/linux/linux-6.6/kernel/ |
H A D | resource.c | 36 .end = IO_SPACE_LIMIT, 44 .end = -1, 112 unsigned long long start, end; in r_show() local 113 int width = root->end < 0x10000 ? 4 : 8; in r_show() 122 end = r->end; in r_show() 124 start = end = 0; in r_show() 130 width, end, in r_show() 174 resource_size_t end = new->end; in __request_resource() local 325 find_next_iomem_res(resource_size_t start, resource_size_t end, unsigned long flags, unsigned long desc, struct resource *res) find_next_iomem_res() argument 374 __walk_iomem_res_desc(resource_size_t start, resource_size_t end, unsigned long flags, unsigned long desc, void *arg, int (*func)(struct resource *, void *)) __walk_iomem_res_desc() argument 411 walk_iomem_res_desc(unsigned long desc, unsigned long flags, u64 start, u64 end, void *arg, int (*func)(struct resource *, void *)) walk_iomem_res_desc() argument 425 walk_system_ram_res(u64 start, u64 end, void *arg, int (*func)(struct resource *, void *)) walk_system_ram_res() argument 438 walk_mem_res(u64 start, u64 end, void *arg, int (*func)(struct resource *, void *)) walk_mem_res() argument 455 resource_size_t start, end; walk_system_ram_range() local 933 resource_size_t end = start + size - 1; __adjust_resource() local 989 __reserve_region_with_split(struct resource *root, resource_size_t start, resource_size_t end, const char *name) __reserve_region_with_split() argument 1050 reserve_region_with_split(struct resource *root, resource_size_t start, resource_size_t end, const char *name) reserve_region_with_split() argument 1255 resource_size_t end; __release_region() local 1317 resource_size_t end; release_mem_region_adjustable() local 1645 resource_size_t end = addr + size - 1; iomem_map_sanity_check() local 1779 resource_size_t end; gfr_start() local [all...] |