Home
last modified time | relevance | path

Searched refs:end (Results 776 - 800 of 24020) sorted by relevance

1...<<31323334353637383940>>...961

/kernel/linux/linux-5.10/arch/mips/include/asm/
H A Dtlbflush.h13 * - flush_tlb_range(vma, start, end) flushes a range of pages
14 * - flush_tlb_kernel_range(start, end) flushes a range of kernel pages
18 unsigned long start, unsigned long end);
20 unsigned long end);
41 #define flush_tlb_range(vma, vmaddr, end) local_flush_tlb_range(vma, vmaddr, end)
42 #define flush_tlb_kernel_range(vmaddr,end) \
43 local_flush_tlb_kernel_range(vmaddr, end)
/kernel/linux/linux-6.6/arch/mips/include/asm/
H A Dtlbflush.h13 * - flush_tlb_range(vma, start, end) flushes a range of pages
14 * - flush_tlb_kernel_range(start, end) flushes a range of kernel pages
18 unsigned long start, unsigned long end);
20 unsigned long end);
41 #define flush_tlb_range(vma, vmaddr, end) local_flush_tlb_range(vma, vmaddr, end)
42 #define flush_tlb_kernel_range(vmaddr,end) \
43 local_flush_tlb_kernel_range(vmaddr, end)
/kernel/linux/linux-6.6/arch/loongarch/kernel/
H A Ddma.c11 u64 mask, end = 0; in acpi_arch_dma_setup() local
18 for (end = 0; r->size; r++) { in acpi_arch_dma_setup()
19 if (r->dma_start + r->size - 1 > end) in acpi_arch_dma_setup()
20 end = r->dma_start + r->size - 1; in acpi_arch_dma_setup()
23 mask = DMA_BIT_MASK(ilog2(end) + 1); in acpi_arch_dma_setup()
24 dev->bus_dma_limit = end; in acpi_arch_dma_setup()
/kernel/linux/linux-5.10/kernel/
H A Dcrash_dump.c31 char *end; in setup_elfcorehdr() local
34 elfcorehdr_addr = memparse(arg, &end); in setup_elfcorehdr()
35 if (*end == '@') { in setup_elfcorehdr()
37 elfcorehdr_addr = memparse(end + 1, &end); in setup_elfcorehdr()
39 return end > arg ? 0 : -EINVAL; in setup_elfcorehdr()
/kernel/linux/linux-5.10/include/linux/
H A Dfirmware-map.h17 int firmware_map_add_early(u64 start, u64 end, const char *type);
18 int firmware_map_add_hotplug(u64 start, u64 end, const char *type);
19 int firmware_map_remove(u64 start, u64 end, const char *type);
23 static inline int firmware_map_add_early(u64 start, u64 end, const char *type) in firmware_map_add_early() argument
28 static inline int firmware_map_add_hotplug(u64 start, u64 end, const char *type) in firmware_map_add_hotplug() argument
33 static inline int firmware_map_remove(u64 start, u64 end, const char *type) in firmware_map_remove() argument
/kernel/linux/linux-6.6/include/linux/
H A Dfirmware-map.h17 int firmware_map_add_early(u64 start, u64 end, const char *type);
18 int firmware_map_add_hotplug(u64 start, u64 end, const char *type);
19 int firmware_map_remove(u64 start, u64 end, const char *type);
23 static inline int firmware_map_add_early(u64 start, u64 end, const char *type) in firmware_map_add_early() argument
28 static inline int firmware_map_add_hotplug(u64 start, u64 end, const char *type) in firmware_map_add_hotplug() argument
33 static inline int firmware_map_remove(u64 start, u64 end, const char *type) in firmware_map_remove() argument
/kernel/linux/linux-6.6/kernel/
H A Dcrash_dump.c31 char *end; in setup_elfcorehdr() local
34 elfcorehdr_addr = memparse(arg, &end); in setup_elfcorehdr()
35 if (*end == '@') { in setup_elfcorehdr()
37 elfcorehdr_addr = memparse(end + 1, &end); in setup_elfcorehdr()
39 return end > arg ? 0 : -EINVAL; in setup_elfcorehdr()
/kernel/linux/linux-6.6/tools/bootconfig/include/linux/
H A Dbootconfig.h35 char *end; in strim() local
41 end = s + size - 1; in strim()
42 while (end >= s && isspace(*end)) in strim()
43 end--; in strim()
44 *(end + 1) = '\0'; in strim()
/third_party/mesa3d/src/tool/pps/
H A Dpps_algorithm.h12 #define FIND_IF(c, lambda) (std::find_if(std::begin(c), std::end(c), lambda))
13 #define FIND(c, e) (std::find(std::begin(c), std::end(c), e))
14 #define CONTAINS(c, e) (FIND(c, e) != std::end(c))
15 #define CONTAINS_IT(c, it) (it != std::end(c))
16 #define APPEND(a, b) (a.insert(std::end(a), std::begin(b), std::end(b)))
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DSparseBitVector.h274 // get the begin/end in the case where 'this' is const. To avoid duplication
281 const_cast<SparseBitVector<ElementSize> *>(this)->Elements.end();
372 if (Iter == BitVector->Elements.end()) {
397 bool end = false):BitVector(RHS) { in SparseBitVectorIterator()
402 AtEnd = end; in SparseBitVectorIterator()
427 // If they are both at the end, ignore the rest of the fields. in operator ==()
480 if (ElementIter == Elements.end() ||
495 if (ElementIter == Elements.end() ||
511 ElementIter = Elements.emplace(Elements.end(), ElementIndex);
515 if (ElementIter == Elements.end() ||
[all...]
/foundation/communication/netmanager_base/utils/napi_utils/src/
H A Devent_manager.cpp44 auto it = std::remove_if(listeners_.begin(), listeners_.end(), in AddListener()
46 if (it != listeners_.end()) { in AddListener()
47 listeners_.erase(it, listeners_.end()); in AddListener()
56 std::remove_if(listeners_.begin(), listeners_.end(), [type, callback](const EventListener &listener) -> bool { in DeleteListener()
59 listeners_.erase(it, listeners_.end()); in DeleteListener()
66 std::for_each(listeners_.begin(), listeners_.end(), [type, argv](const EventListener &listener) { in Emit()
78 auto it = std::remove_if(listeners_.begin(), listeners_.end(), in Emit()
80 listeners_.erase(it, listeners_.end()); in Emit()
103 std::for_each(listeners_.begin(), listeners_.end(), [type, handler, moduleId](const EventListener &listener) { in EmitByUvWithModuleId()
116 std::for_each(listeners_.begin(), listeners_.end(), [typ in EmitByUv()
[all...]
/kernel/linux/linux-5.10/arch/mips/sni/
H A Dpcimt.c96 .end = 0x71,
101 .end = 8,
115 .end = 0x03bfffffUL,
123 .end = 0x1f,
128 .end = 0x5f,
133 .end = 0x6f,
138 .end = 0x8f,
143 .end = 0xdf,
148 .end = 0xcff,
161 .end
[all...]
H A Dpcit.c64 .end = 0x71,
69 .end = 8,
87 .end = 0x03bfffffUL,
95 .end = 0x1f,
100 .end = 0x5f,
105 .end = 0x6f,
110 .end = 0x8f,
115 .end = 0xdf,
120 .end = 0xcfb,
125 .end
[all...]
/kernel/linux/linux-5.10/arch/x86/hyperv/
H A Dmmu.c27 unsigned long start, unsigned long end) in fill_gva_list()
33 diff = end > cur ? end - cur : 0; in fill_gva_list()
45 cur = end; in fill_gva_list()
50 } while (cur < end); in fill_gva_list()
142 if (info->end == TLB_FLUSH_ALL) { in hyperv_flush_tlb_others()
146 } else if (info->end && in hyperv_flush_tlb_others()
147 ((info->end - info->start)/HV_TLB_FLUSH_UNIT) > max_gvas) { in hyperv_flush_tlb_others()
152 info->start, info->end); in hyperv_flush_tlb_others()
215 if (info->end in hyperv_flush_tlb_others_ex()
26 fill_gva_list(u64 gva_list[], int offset, unsigned long start, unsigned long end) fill_gva_list() argument
[all...]
/kernel/linux/linux-6.6/arch/arm64/include/asm/
H A Dtlbflush.h188 * flush_tlb_range(vma, start, end)
189 * Invalidate the virtual-address range '[start, end)' on all
195 * flush_tlb_kernel_range(start, end)
196 * Same as flush_tlb_range(..., start, end), but applies to
219 * __flush_tlb_range(vma, start, end, stride, last_level)
220 * Invalidate the virtual-address range '[start, end)' on all
320 * completion at the end in arch_tlbbatch_flush(). Since we've already issued
404 unsigned long start, unsigned long end, in __flush_tlb_range()
411 end = round_up(end, strid in __flush_tlb_range()
403 __flush_tlb_range(struct vm_area_struct *vma, unsigned long start, unsigned long end, unsigned long stride, bool last_level, int tlb_level) __flush_tlb_range() argument
439 flush_tlb_range(struct vm_area_struct *vma, unsigned long start, unsigned long end) flush_tlb_range() argument
450 flush_tlb_kernel_range(unsigned long start, unsigned long end) flush_tlb_kernel_range() argument
[all...]
/kernel/linux/linux-6.6/arch/mips/sni/
H A Dpcimt.c96 .end = 0x71,
101 .end = 8,
115 .end = 0x03bfffffUL,
123 .end = 0x1f,
128 .end = 0x5f,
133 .end = 0x6f,
138 .end = 0x8f,
143 .end = 0xdf,
148 .end = 0xcff,
161 .end
[all...]
H A Dpcit.c64 .end = 0x71,
69 .end = 8,
87 .end = 0x03bfffffUL,
95 .end = 0x1f,
100 .end = 0x5f,
105 .end = 0x6f,
110 .end = 0x8f,
115 .end = 0xdf,
120 .end = 0xcfb,
125 .end
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/link/protocols/
H A Dlink_dpcd.c38 #define ADDRESS_RANGE_SIZE(start, end) (end - start + 1)
41 uint32_t end; member
108 return start_address <= range->end && end_address >= range->start; in do_addresses_intersect_with_range()
123 if (end_address < mandatory_dpcd_partitions[partition_iterator].end) in dpcd_get_next_partition_size()
125 return ADDRESS_RANGE_SIZE(address, mandatory_dpcd_partitions[partition_iterator].end); in dpcd_get_next_partition_size()
152 new_addr_range.end = end_address; in dpcd_extend_address_range()
155 if (addr_range->start <= in_address && addr_range->end >= in_address) in dpcd_extend_address_range()
158 if (addr_range->start <= end_address && addr_range->end >= end_address) in dpcd_extend_address_range()
159 new_addr_range.end in dpcd_extend_address_range()
[all...]
/kernel/linux/linux-6.6/arch/x86/hyperv/
H A Dmmu.c27 unsigned long start, unsigned long end) in fill_gva_list()
33 diff = end > cur ? end - cur : 0; in fill_gva_list()
45 cur = end; in fill_gva_list()
50 } while (cur < end); in fill_gva_list()
145 if (info->end == TLB_FLUSH_ALL) { in hyperv_flush_tlb_multi()
149 } else if (info->end && in hyperv_flush_tlb_multi()
150 ((info->end - info->start)/HV_TLB_FLUSH_UNIT) > max_gvas) { in hyperv_flush_tlb_multi()
155 info->start, info->end); in hyperv_flush_tlb_multi()
215 if (info->end in hyperv_flush_tlb_others_ex()
26 fill_gva_list(u64 gva_list[], int offset, unsigned long start, unsigned long end) fill_gva_list() argument
[all...]
/kernel/linux/linux-6.6/drivers/s390/cio/
H A Ditcw.c138 static inline void *fit_chunk(addr_t *start, addr_t end, size_t len, in fit_chunk() argument
148 if (addr + len > end) in fit_chunk()
185 addr_t end; in itcw_init() local
190 end = start + size; in itcw_init()
195 chunk = fit_chunk(&start, end, sizeof(struct itcw), 1, 0); in itcw_init()
211 chunk = fit_chunk(&start, end, sizeof(struct tcw), 64, 0); in itcw_init()
219 chunk = fit_chunk(&start, end, sizeof(struct tcw), 64, 0); in itcw_init()
228 chunk = fit_chunk(&start, end, sizeof(struct tidaw) * in itcw_init()
236 chunk = fit_chunk(&start, end, sizeof(struct tidaw) * in itcw_init()
243 chunk = fit_chunk(&start, end, sizeo in itcw_init()
[all...]
/third_party/elfutils/libdw/
H A Dfde.c46 It has end offset 0. */ in compare_fde()
47 if (fde1->end == 0) in compare_fde()
51 if (fde1->start >= fde2->end) in compare_fde()
58 if (fde2->start >= fde1->end) in compare_fde()
81 fde->instructions_end = entry->end; in intern_fde()
85 &fde->instructions, &fde->end))) in intern_fde()
91 fde->end += fde->start; in intern_fde()
94 if (fde->start >= fde->end) in intern_fde()
224 the end of the module. in binary_search_fde()
225 XXX really should be end o in binary_search_fde()
229 Dwarf_Addr end; binary_search_fde() local
[all...]
/third_party/node/deps/base64/base64/test/
H A Dbenchmark.c128 timediff_sec (base64_timespec *start, base64_timespec *end) in timediff_sec() argument
130 uint64_t diff = *end - *start; in timediff_sec()
151 timediff_sec (base64_timespec *start, base64_timespec *end) in timediff_sec() argument
154 return (end->QuadPart - start->QuadPart) / 1e7f; in timediff_sec()
166 timediff_sec (base64_timespec *start, base64_timespec *end) in timediff_sec() argument
168 return (end->tv_sec - start->tv_sec) + (end->tv_nsec - start->tv_nsec) / 1e9f; in timediff_sec()
176 base64_timespec start, end; in codec_bench_enc() local
188 base64_gettime(&end); in codec_bench_enc()
191 timediff = timediff_sec(&start, &end) / b in codec_bench_enc()
205 base64_timespec start, end; codec_bench_dec() local
[all...]
/third_party/ninja/src/
H A Dtest.cc115 e != state.edges_.end(); ++e) { in VerifyGraph()
120 in_node != (*e)->inputs_.end(); ++in_node) { in VerifyGraph()
122 EXPECT_NE(find(out_edges.begin(), out_edges.end(), *e), in VerifyGraph()
123 out_edges.end()); in VerifyGraph()
127 out_node != (*e)->outputs_.end(); ++out_node) { in VerifyGraph()
135 p != state.paths_.end(); ++p) { in VerifyGraph()
139 node_edge_set.insert(n->out_edges().begin(), n->out_edges().end()); in VerifyGraph()
141 set<const Edge*> edge_set(state.edges_.begin(), state.edges_.end()); in VerifyGraph()
154 if (i != files_.end()) { in Stat()
176 if (i != files_.end()) { in ReadFile()
[all...]
/third_party/node/deps/openssl/openssl/apps/
H A Drsautl.c95 goto end; in rsautl_main()
99 goto end; in rsautl_main()
162 goto end; in rsautl_main()
166 goto end; in rsautl_main()
177 goto end; in rsautl_main()
181 goto end; in rsautl_main()
186 goto end; in rsautl_main()
212 goto end; in rsautl_main()
215 goto end; in rsautl_main()
227 goto end; in rsautl_main()
[all...]
/third_party/openssl/apps/
H A Drsautl.c95 goto end; in rsautl_main()
99 goto end; in rsautl_main()
162 goto end; in rsautl_main()
166 goto end; in rsautl_main()
177 goto end; in rsautl_main()
181 goto end; in rsautl_main()
186 goto end; in rsautl_main()
212 goto end; in rsautl_main()
215 goto end; in rsautl_main()
227 goto end; in rsautl_main()
[all...]

Completed in 11 milliseconds

1...<<31323334353637383940>>...961