/kernel/linux/linux-6.6/include/trace/events/ |
H A D | mmap.h | 47 TP_PROTO(struct maple_tree *mt, unsigned long start, 50 TP_ARGS(mt, start, end), 54 __field(unsigned long, start) 60 __entry->start = start; 66 (unsigned long) __entry->start,
|
/kernel/linux/linux-6.6/drivers/infiniband/hw/hfi1/ |
H A D | trace_rx.h | 81 unsigned long start, unsigned long end), 82 TP_ARGS(ctxt, subctxt, type, start, end), 87 __field(unsigned long, start) 94 __entry->start = start; 101 __entry->start,
|
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvkm/subdev/bios/ |
H A D | shadowacpi.c | 67 u32 start = offset & ~0x00000fff; in acpi_read_fast() local 68 u32 fetch = limit - start; in acpi_read_fast() 71 int ret = acpi_read_bios(data, bios->data, start, fetch); in acpi_read_fast() 88 u32 start = offset & ~0xfff; in acpi_read_slow() local 92 while (start + fetch < limit) { in acpi_read_slow() 94 start + fetch, 0x1000); in acpi_read_slow()
|
/kernel/linux/linux-6.6/scripts/ |
H A D | extract-sys-certs.pl | 98 my $start = Math::BigInt->new($symbols{"__cert_list_start"}); 114 next unless ($start >= $s_vma); 115 next if ($start >= $s_vend); 128 $end = $start + $size; 130 printf "Have %u bytes of certs at VMA 0x%x\n", $size, $start; 143 my $foff = $start - $s->{vma} + $s->{foff};
|
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/mtd/ |
H A D | mtd-abi.h | 23 __u32 start; member 27 __u64 start; member 31 __u32 start; member 36 __u64 start; member 47 __u64 start; member 97 __u32 start; member
|
/kernel/linux/linux-6.6/lib/ |
H A D | interval_tree_test.c | 30 search(struct rb_root_cached *root, unsigned long start, unsigned long last) in search() argument 35 for (node = interval_tree_iter_first(root, start, last); node; in search() 36 node = interval_tree_iter_next(node, start, last)) in search() 49 nodes[i].start = a; in init() 109 unsigned long start = search_all ? 0 : queries[j]; in interval_tree_test_init() local 112 results += search(&root, start, last); in interval_tree_test_init()
|
H A D | interval_tree.c | 7 #define START(node) ((node)->start) 23 * indexes that started at the original nodes[1]->start. nodes[1] is now the 25 * and nodes[1]->start. nodes[1] must be !NULL. 38 } while (cur && (state->nodes[0]->last >= cur->start || in interval_tree_span_iter_next_gap() 39 state->nodes[0]->last + 1 == cur->start)); in interval_tree_span_iter_next_gap() 60 if (iter->nodes[1]->start > first_index) { in interval_tree_span_iter_first() 63 iter->last_hole = iter->nodes[1]->start - 1; in interval_tree_span_iter_first() 112 iter->last_hole = iter->nodes[1]->start - 1; in interval_tree_span_iter_next() 120 * updated to start at new_index. This is faster than calling
|
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/mtd/ |
H A D | mtd-abi.h | 10 __u32 start; member 14 __u64 start; member 18 __u32 start; member 23 __u64 start; member 34 __u64 start; member 83 __u32 start; member
|
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/mtd/ |
H A D | mtd-abi.h | 23 __u32 start; member 27 __u64 start; member 31 __u32 start; member 36 __u64 start; member 47 __u64 start; member 97 __u32 start; member
|
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/ |
H A D | TransliteratingTextComponent.java | 36 // Index into getText() where the start of transliteration is. 39 //private int start = 0; 41 // Index into getText() where the cursor is; cursor >= start 90 // start and cursor below. in transliterate() 97 // start 3, cursor 5, sel 6 -> { 0, 3, 2 } in transliterate() 98 // : new int[] { 0, sel - start, cursor - start }; in transliterate() 107 // { 3, 5, 4 } -> start 6, cursor 7, sel 8 in transliterate() 108 // : start += index[0]; in transliterate() 109 // : cursor = start in transliterate() [all...] |
/third_party/FreeBSD/sys/dev/usb/ |
H A D | usb_parse.c | 47 uint8_t *start; in usb_desc_foreach() local 56 start = (uint8_t *)cd; in usb_desc_foreach() 57 end = start + UGETW(cd->wTotalLength); in usb_desc_foreach() 60 /* Get start of next USB descriptor. */ in usb_desc_foreach() 62 desc = start; in usb_desc_foreach() 67 if ((desc < start) || (desc >= end)) in usb_desc_foreach() 72 if ((desc_next < start) || (desc_next > end)) in usb_desc_foreach() 79 /* Return start of next descriptor. */ in usb_desc_foreach() 103 /* default is to start a new interface */ in usb_idesc_foreach()
|
/third_party/icu/icu4c/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/jerryscript/jerry-ext/handle-scope/ |
H A D | handle-scope-allocator.c | 28 .start = NULL, 85 if (dy_scope == jerryx_handle_scope_pool.start) in jerryx_handle_scope_get_parent() 126 return (jerryx_handle_scope_t *) jerryx_handle_scope_pool.start; in jerryx_handle_scope_get_child() 145 * and link it to previously dynamically allocated scope, or link it to pool's start pointer. 171 jerryx_handle_scope_pool.start = dy_scope; in jerryx_handle_scope_alloc() 210 if (dy_scope == jerryx_handle_scope_pool.start) in jerryx_handle_scope_free() 212 jerryx_handle_scope_pool.start = dy_scope->child; in jerryx_handle_scope_free()
|
/third_party/node/test/sequential/ |
H A D | test-util-debug.js | 77 const start = `${section.toUpperCase()} ${num[0]}${child.pid}${num[1]}`; 80 `${start}: this { is: ${str[0]}'a'${str[1]} } ${debugging}\n` + 81 `${start}: num=1 str=a obj={"foo":"bar"}\n`; 83 const start = `${section.toUpperCase()} ${child.pid}`; 85 `${start}: this { is: 'a' } /debugging/\n` + 86 `${start}: num=1 str=a obj={"foo":"bar"}\n`;
|
/third_party/ninja/src/ |
H A D | clparser.cc | 86 size_t start = 0; in Parse() local 92 while (start < output.size()) { in Parse() 93 size_t end = output.find_first_of("\r\n", start); in Parse() 96 string line = output.substr(start, end - start); in Parse() 126 start = end; in Parse()
|
/third_party/node/deps/icu-small/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/ltp/testcases/kernel/syscalls/remap_file_pages/ |
H A D | remap_file_pages02.c | 21 * 2. Test with a invalid start argument 64 void *start; member 70 {"start is not valid MAP_SHARED mapping", 72 {"start is invalid", EINVAL, setup02, NULL, 0, 0, 2, 0}, 80 tcases[i].start, tcases[i].size, in run() 97 tcases[test].start = data01; in setup01() 103 tcases[test].start = data + page_sz; in setup02() 109 tcases[test].start = data; in setup03() 115 tcases[test].start = data; in setup04()
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-sse/ |
H A D | minimal-http-server-sse.c | 48 uint8_t buf[LWS_PRE + LWS_RECOMMENDED_MIN_HEADER_SPACE], *start = &buf[LWS_PRE], in callback_sse() local 49 *p = start, *end = &buf[sizeof(buf) - 1]; in callback_sse() 71 if (lws_finalize_write_http_header(wsi, start, &p, end)) in callback_sse() 106 if (lws_write(wsi, (uint8_t *)start, lws_ptr_diff_size_t(p, start), in callback_sse() 107 LWS_WRITE_HTTP) != lws_ptr_diff(p, start)) in callback_sse()
|
/third_party/libexif/test/ |
H A D | test-parse.c | 129 const char *start = string; in split_ws_string() local 130 const char *p = start; in split_ws_string() 133 size_t len = p-start; in split_ws_string() 138 memcpy(str, start, len); in split_ws_string() 142 start = p+1; in split_ws_string() 145 start = p+1; in split_ws_string()
|
/third_party/libphonenumber/cpp/src/phonenumbers/ |
H A D | unicodestring.cc | 60 void UnicodeString::replace(int start, int length, const UnicodeString& src) { in replace() argument 64 advance(start_it, start); in replace() 86 UnicodeString UnicodeString::tempSubString(int start, int length) const { 89 length = unicodestring_length - start; 91 if (start > unicodestring_length || length > unicodestring_length) { 95 advance(start_it, start);
|
/third_party/ltp/testcases/realtime/func/prio-wake/ |
H A D | prio-wake.c | 31 * - Once all the threads finish execution, the start and wakeup times 107 nsec_t start; in master_thread() local 116 start = rt_gettime() - beginrun; in master_thread() 119 start / NS_PER_US); in master_thread() 120 /* start the children threads */ in master_thread() 137 nsec_t start, wake; in worker_thread() local 148 start = rt_gettime() - beginrun; in worker_thread() 150 start / NS_PER_US, j, mypri); in worker_thread() 204 /* start the worker threads */ in main() 212 /* start th in main() [all...] |
/third_party/node/deps/v8/src/profiler/ |
H A D | allocation-tracker.h | 86 RangeStack(Address start, unsigned node_id) in RangeStack() 87 : start(start), trace_node_id(node_id) {} in RangeStack() 88 Address start; member 91 // [start, end) -> trace 94 void RemoveRange(Address start, Address end); 131 UnresolvedLocation(Script script, int start, FunctionInfo* info);
|
/third_party/node/deps/v8/src/snapshot/ |
H A D | snapshot-source-sink.h | 60 base::AtomicWord* start = reinterpret_cast<base::AtomicWord*>(dest); 61 base::AtomicWord* end = start + number_of_slots; 62 for (base::AtomicWord* p = start; p < end; 72 AtomicTagged_t* start = reinterpret_cast<AtomicTagged_t*>(dest); 73 AtomicTagged_t* end = start + number_of_slots; 74 for (AtomicTagged_t* p = start; p < end;
|
/third_party/mesa3d/src/gallium/drivers/freedreno/a3xx/ |
H A D | fd3_query.c | 84 count_samples(const struct fd_rb_samp_ctrs *start, in count_samples() argument 94 n += end->ctr[i] - start->ctr[i]; in count_samples() 100 occlusion_counter_accumulate_result(struct fd_context *ctx, const void *start, in occlusion_counter_accumulate_result() argument 104 uint64_t n = count_samples(start, end); in occlusion_counter_accumulate_result() 109 occlusion_predicate_accumulate_result(struct fd_context *ctx, const void *start, in occlusion_predicate_accumulate_result() argument 113 uint64_t n = count_samples(start, end); in occlusion_predicate_accumulate_result()
|
/third_party/python/Tools/scripts/ |
H A D | abitype.py | 37 def get_fields(start, real_end): 38 pos = start 195 start = m.start() variable 197 name, fields = get_fields(start, end) 198 tokens[start:end] = [('',make_slots(name, fields))]
|