| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/finclude/ |
| H A D | omp_lib.f90 | 62 end module 73 end subroutine omp_init_lock 74 end interface 81 end subroutine omp_init_lock_with_hint 82 end interface 88 end subroutine omp_init_nest_lock 89 end interface 96 end subroutine omp_init_nest_lock_with_hint 97 end interface 103 end subroutine omp_destroy_lock [all …]
|
| H A D | openacc_lib.h | 80 end function 81 end interface 87 end subroutine 88 end interface 94 end function 95 end interface 102 end subroutine 103 end interface 110 end function 111 end interface [all …]
|
| H A D | openacc.f90 | 70 end module openacc_kinds 81 end function 86 end subroutine 91 end function 97 end subroutine 103 end function 113 end function 122 end subroutine 127 end function 131 end function [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/finclude/ |
| H A D | omp_lib.f90 | 62 end module 73 end subroutine omp_init_lock 74 end interface 81 end subroutine omp_init_lock_with_hint 82 end interface 88 end subroutine omp_init_nest_lock 89 end interface 96 end subroutine omp_init_nest_lock_with_hint 97 end interface 103 end subroutine omp_destroy_lock [all …]
|
| H A D | openacc_lib.h | 80 end function 81 end interface 87 end subroutine 88 end interface 94 end function 95 end interface 102 end subroutine 103 end interface 110 end function 111 end interface [all …]
|
| H A D | openacc.f90 | 70 end module openacc_kinds 81 end function 86 end subroutine 91 end function 97 end subroutine 103 end function 113 end function 122 end subroutine 127 end function 131 end function [all …]
|
| /OK3568_Linux_fs/kernel/arch/nds32/mm/ |
| H A D | proc.c | 103 unsigned long end, line_size; in cpu_icache_inval_all() local 106 end = in cpu_icache_inval_all() 110 end -= line_size; in cpu_icache_inval_all() 111 __asm__ volatile ("\n\tcctl %0, L1I_IX_INVAL"::"r" (end)); in cpu_icache_inval_all() 112 end -= line_size; in cpu_icache_inval_all() 113 __asm__ volatile ("\n\tcctl %0, L1I_IX_INVAL"::"r" (end)); in cpu_icache_inval_all() 114 end -= line_size; in cpu_icache_inval_all() 115 __asm__ volatile ("\n\tcctl %0, L1I_IX_INVAL"::"r" (end)); in cpu_icache_inval_all() 116 end -= line_size; in cpu_icache_inval_all() 117 __asm__ volatile ("\n\tcctl %0, L1I_IX_INVAL"::"r" (end)); in cpu_icache_inval_all() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/algorithm/string/detail/ |
| H A D | finder.hpp | 20 #include <boost/range/end.hpp> 33 Returns a pair <begin,end> marking the subsequence in the sequence. 34 If the find fails, functor returns <End,End> 44 m_Search(::boost::begin(Search), ::boost::end(Search)), m_Comp(Comp) {} in first_finderF() 56 ForwardIteratorT End ) const in operator ()() 63 OuterIt!=End; in operator ()() 68 return result_type( End, End ); in operator ()() 73 InnerIt!=End && SubstrIt!=m_Search.end(); in operator ()() 81 if ( SubstrIt==m_Search.end() ) in operator ()() 85 return result_type( End, End ); in operator ()() [all …]
|
| /OK3568_Linux_fs/kernel/kernel/ |
| H A D | range.c | 12 int add_range(struct range *range, int az, int nr_range, u64 start, u64 end) in add_range() argument 14 if (start >= end) in add_range() 22 range[nr_range].end = end; in add_range() 30 u64 start, u64 end) in add_range_with_merge() argument 34 if (start >= end) in add_range_with_merge() 37 /* get new start/end: */ in add_range_with_merge() 41 if (!range[i].end) in add_range_with_merge() 45 common_end = min(range[i].end, end); in add_range_with_merge() 49 /* new start/end, will add it back at last */ in add_range_with_merge() 51 end = max(range[i].end, end); in add_range_with_merge() [all …]
|
| H A D | resource.c | 33 .end = IO_SPACE_LIMIT, 41 .end = -1, 109 unsigned long long start, end; in r_show() local 110 int width = root->end < 0x10000 ? 4 : 8; in r_show() 119 end = r->end; in r_show() 121 start = end = 0; in r_show() 127 width, end, in r_show() 188 resource_size_t end = new->end; in __request_resource() local 191 if (end < start) in __request_resource() 195 if (end > root->end) in __request_resource() [all …]
|
| /OK3568_Linux_fs/kernel/include/linux/ceph/ |
| H A D | decode.h | 16 * void *end pointer to end of buffer (last byte + 1) 52 static inline bool ceph_has_room(void **p, void *end, size_t n) in ceph_has_room() argument 54 return end >= *p && n <= end - *p; in ceph_has_room() 57 #define ceph_decode_need(p, end, n, bad) \ argument 59 if (!likely(ceph_has_room(p, end, n))) \ 63 #define ceph_decode_64_safe(p, end, v, bad) \ argument 65 ceph_decode_need(p, end, sizeof(u64), bad); \ 68 #define ceph_decode_32_safe(p, end, v, bad) \ argument 70 ceph_decode_need(p, end, sizeof(u32), bad); \ 73 #define ceph_decode_16_safe(p, end, v, bad) \ argument [all …]
|
| /OK3568_Linux_fs/buildroot/package/luarocks/ |
| H A D | buildroot.lua | 26 end 30 end 35 end 37 end 46 end 51 end 52 end 55 end 62 end 67 end [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/io/wkt/ |
| H A D | read.hpp | 32 #include <boost/range/end.hpp> 73 Iterator const& end, in read_wkt_exception() 78 if (it != end) in read_wkt_exception() 121 tokenizer::iterator const& end, in apply() 127 // Stop at end of tokens, or at "," ot ")" in apply() 128 bool finished = (it == end || *it == "," || *it == ")"); in apply() 144 BOOST_THROW_EXCEPTION(read_wkt_exception(blc.what(), it, end, wkt)); in apply() 148 BOOST_THROW_EXCEPTION(read_wkt_exception(e.what(), it, end, wkt)); in apply() 152 BOOST_THROW_EXCEPTION(read_wkt_exception("", it, end, wkt)); in apply() 156 (finished ? it : ++it), end, point, wkt); in apply() [all …]
|
| /OK3568_Linux_fs/kernel/fs/btrfs/tests/ |
| H A D | extent-io-tests.c | 19 static noinline int process_page_range(struct inode *inode, u64 start, u64 end, in process_page_range() argument 25 unsigned long end_index = end >> PAGE_SHIFT; in process_page_range() 51 "stuck in a loop, start %llu, end %llu, nr_pages %lu, ret %d\n", in process_page_range() 52 start, end, nr_pages, ret); in process_page_range() 69 u64 start, end, test_start; in test_find_delalloc() local 115 end = 0; in test_find_delalloc() 117 &end); in test_find_delalloc() 122 if (start != 0 || end != (sectorsize - 1)) { in test_find_delalloc() 123 test_err("expected start 0 end %u, got start %llu end %llu", in test_find_delalloc() 124 sectorsize - 1, start, end); in test_find_delalloc() [all …]
|
| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A D | block-range.c | 26 assert(entry->start <= entry->end); /* single instruction block; jump to a jump */ in block_range__debug() 28 old = entry->end; in block_range__debug() 45 else if (addr > entry->end) in block_range__find() 77 * @end: branch ending this basic block 81 struct block_range_iter block_range__create(u64 start, u64 end) in block_range__create() argument 94 else if (start > entry->end) in block_range__create() 101 * Didn't find anything.. there's a hole at @start, however @end might in block_range__create() 112 if (entry->end < start) { in block_range__create() 119 if (next->start <= end) { /* add head: [start...][n->start...] */ in block_range__create() 126 .end = next->start - 1, in block_range__create() [all …]
|
| /OK3568_Linux_fs/kernel/arch/mips/pci/ |
| H A D | pci-malta.c | 31 .end = 0x000fffffUL, 81 resource_size_t start, end, map, start1, end1, map1, map2, map3, mask; in mips_pcibios_init() local 104 end = GT_READ(GT_PCI0M0HD_OFS); in mips_pcibios_init() 106 end = (end & GT_PCI_HD_MSK) | (start & ~GT_PCI_HD_MSK); in mips_pcibios_init() 112 if (end1 - start1 > end - start) { in mips_pcibios_init() 114 end = end1; in mips_pcibios_init() 117 mask = ~(start ^ end); in mips_pcibios_init() 122 gt64120_mem_resource.end = end; in mips_pcibios_init() 126 gt64120_mem_resource.end <<= GT_PCI_DCRM_SHF; in mips_pcibios_init() 127 gt64120_mem_resource.end |= (1 << GT_PCI_DCRM_SHF) - 1; in mips_pcibios_init() [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/admin-guide/kdump/ |
| H A D | gdbmacros.txt | 32 end 34 end 46 end 48 end 50 end 52 end 53 end 56 end 75 end 76 end [all …]
|
| /OK3568_Linux_fs/kernel/fs/btrfs/ |
| H A D | extent-io-tree.h | 70 u64 end; /* inclusive */ member 93 int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end, 96 static inline int lock_extent(struct extent_io_tree *tree, u64 start, u64 end) in lock_extent() argument 98 return lock_extent_bits(tree, start, end, NULL); in lock_extent() 101 int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end); 111 int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end, 114 int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end, 116 int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end, 119 int __clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end, 124 static inline int unlock_extent(struct extent_io_tree *tree, u64 start, u64 end) in unlock_extent() argument [all …]
|
| /OK3568_Linux_fs/u-boot/arch/nds32/lib/ |
| H A D | cache.c | 45 unsigned long end, line_size; in invalidate_icache_all() local 47 end = line_size * CACHE_WAY(ICACHE) * CACHE_SET(ICACHE); in invalidate_icache_all() 49 end -= line_size; in invalidate_icache_all() 50 __asm__ volatile ("\n\tcctl %0, L1I_IX_INVAL" : : "r" (end)); in invalidate_icache_all() 52 end -= line_size; in invalidate_icache_all() 53 __asm__ volatile ("\n\tcctl %0, L1I_IX_INVAL" : : "r" (end)); in invalidate_icache_all() 55 end -= line_size; in invalidate_icache_all() 56 __asm__ volatile ("\n\tcctl %0, L1I_IX_INVAL" : : "r" (end)); in invalidate_icache_all() 57 end -= line_size; in invalidate_icache_all() 58 __asm__ volatile ("\n\tcctl %0, L1I_IX_INVAL" : : "r" (end)); in invalidate_icache_all() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/support/detail/ |
| H A D | segmented_fold_until_impl.hpp | 50 , typename result_of::end< 76 … return type(cons<range_type, Context>(range_type(cur, fusion::end(*context.car.first)), context)); in make_segmented_iterator() 83 , typename End 93 , typename End 97 , bool IsDone = result_of::equal_to<Begin, End>::type::value 113 //auto push_context(cur, end, context) 115 // return push_back(context, segment_sequence(iterator_range(cur, end))); 118 template <typename Cur, typename End, typename Context> 121 typedef iterator_range<Cur, End> range_type; 125 static type call(Cur const& cur, End const& end, Context const& context) in call() [all …]
|
| /OK3568_Linux_fs/kernel/arch/microblaze/kernel/cpu/ |
| H A D | cache.c | 89 * End address can be unaligned which is OK for C implementation. 92 #define CACHE_LOOP_LIMITS(start, end, cache_line_length, cache_size) \ argument 96 end = min(start + cache_size, end); \ 121 * end address is not aligned, if end is aligned then I have to subtract 125 #define CACHE_RANGE_LOOP_2(start, end, line_length, op) \ argument 130 end = ((end & align) == end) ? end - line_length : end & align; \ 131 count = end - start; \ 142 #define CACHE_RANGE_LOOP_1(start, end, line_length, op) \ argument 146 end = ((end & align) == end) ? end - line_length : end & align; \ 147 WARN_ON(end < start); \ [all …]
|
| /OK3568_Linux_fs/u-boot/arch/nios2/lib/ |
| H A D | cache.c | 14 static void __flush_dcache(unsigned long start, unsigned long end) in __flush_dcache() argument 19 end += (gd->arch.dcache_line_size - 1); in __flush_dcache() 20 end &= ~(gd->arch.dcache_line_size - 1); in __flush_dcache() 22 for (addr = start; addr < end; addr += gd->arch.dcache_line_size) { in __flush_dcache() 30 static void __flush_dcache_all(unsigned long start, unsigned long end) in __flush_dcache_all() argument 35 end += (gd->arch.dcache_line_size - 1); in __flush_dcache_all() 36 end &= ~(gd->arch.dcache_line_size - 1); in __flush_dcache_all() 38 if (end > start + gd->arch.dcache_size) in __flush_dcache_all() 39 end = start + gd->arch.dcache_size; in __flush_dcache_all() 41 for (addr = start; addr < end; addr += gd->arch.dcache_line_size) { in __flush_dcache_all() [all …]
|
| /OK3568_Linux_fs/kernel/fs/ceph/ |
| H A D | mdsmap.c | 57 #define __decode_and_drop_type(p, end, type, bad) \ argument 59 if (*p + sizeof(type) > end) \ 64 #define __decode_and_drop_set(p, end, type, bad) \ argument 68 ceph_decode_32_safe(p, end, n, bad); \ 70 ceph_decode_need(p, end, need, bad); \ 74 #define __decode_and_drop_map(p, end, ktype, vtype, bad) \ argument 78 ceph_decode_32_safe(p, end, n, bad); \ 80 ceph_decode_need(p, end, need, bad); \ 85 static int __decode_and_drop_compat_set(void **p, void* end) in __decode_and_drop_compat_set() argument 91 ceph_decode_need(p, end, sizeof(u64) + sizeof(u32), bad); in __decode_and_drop_compat_set() [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-multimedia/libtiff/tiff/ |
| H A D | 0001-tiffcrop-Fix-issue-330-and-some-more-from-320-to-349.patch | 84 } /* end process_command_opts */ 88 tsample_t count, uint32_t start, uint32_t end) 100 + /* Number of extracted columns shall be kept as (end-start + 1). Otherwise buffer-overflow might… 101 + * 'start' and 'col' count from 0 to (cols-1) but 'end' is to be set one after the index of the… 103 + numcols = abs(end - start); 104 if ((start > end) || (start > cols)) 108 "Invalid end column value %"PRIu32" ignored", end); 109 end = cols; 111 + if (abs(end - start) > numcols) { 112 + end = start + numcols; [all …]
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/media_enquiry/media_enquiry/mediactl/ |
| H A D | v4l2subdev.c | 239 char *end; in v4l2_subdev_parse_format() local 246 for (end = (char *)p; in v4l2_subdev_parse_format() 247 *end != '/' && *end != ' ' && *end != '\0'; ++end); in v4l2_subdev_parse_format() 249 code = v4l2_subdev_string_to_pixelcode(p, end - p); in v4l2_subdev_parse_format() 251 media_dbg(media, "Invalid pixel code '%.*s'\n", end - p, p); in v4l2_subdev_parse_format() 255 p = end + 1; in v4l2_subdev_parse_format() 256 width = strtoul(p, &end, 10); in v4l2_subdev_parse_format() 257 if (*end != 'x') { in v4l2_subdev_parse_format() 262 p = end + 1; in v4l2_subdev_parse_format() 263 height = strtoul(p, &end, 10); in v4l2_subdev_parse_format() [all …]
|