HelenOS sources
init 32 boot/arch/mips32/src/msim.h extern void init(void);
init 68 kernel/arch/arm32/src/arm32.c init.cnt = min3(bootinfo->taskmap.cnt, TASKMAP_MAX_RECORDS, CONFIG_INIT_TASKS);
init 71 kernel/arch/arm32/src/arm32.c for (i = 0; i < init.cnt; i++) {
init 72 kernel/arch/arm32/src/arm32.c init.tasks[i].paddr = KA2PA(bootinfo->taskmap.tasks[i].addr);
init 73 kernel/arch/arm32/src/arm32.c init.tasks[i].size = bootinfo->taskmap.tasks[i].size;
init 74 kernel/arch/arm32/src/arm32.c str_cpy(init.tasks[i].name, CONFIG_TASK_NAME_BUFLEN,
init 63 kernel/arch/arm64/src/arm64.c init.cnt = min3(bootinfo->taskmap.cnt, TASKMAP_MAX_RECORDS,
init 67 kernel/arch/arm64/src/arm64.c for (i = 0; i < init.cnt; i++) {
init 68 kernel/arch/arm64/src/arm64.c init.tasks[i].paddr =
init 70 kernel/arch/arm64/src/arm64.c init.tasks[i].size = bootinfo->taskmap.tasks[i].size;
init 71 kernel/arch/arm64/src/arm64.c str_cpy(init.tasks[i].name, CONFIG_TASK_NAME_BUFLEN,
init 78 kernel/arch/arm64/src/fpu_context.c static fpu_context_t init = { .vregs = { 0 }, .fpcr = 0, .fpsr = 0 };
init 79 kernel/arch/arm64/src/fpu_context.c fpu_context_restore(&init);
init 87 kernel/arch/ia64/src/ia64.c init.cnt = min3(bootinfo->taskmap.cnt, TASKMAP_MAX_RECORDS,
init 91 kernel/arch/ia64/src/ia64.c for (i = 0; i < init.cnt; i++) {
init 92 kernel/arch/ia64/src/ia64.c init.tasks[i].paddr =
init 94 kernel/arch/ia64/src/ia64.c init.tasks[i].size = bootinfo->taskmap.tasks[i].size;
init 95 kernel/arch/ia64/src/ia64.c str_cpy(init.tasks[i].name, CONFIG_TASK_NAME_BUFLEN,
init 87 kernel/arch/mips32/src/mips32.c init.cnt = min3(bootinfo->taskmap.cnt, TASKMAP_MAX_RECORDS, CONFIG_INIT_TASKS);
init 90 kernel/arch/mips32/src/mips32.c for (i = 0; i < init.cnt; i++) {
init 91 kernel/arch/mips32/src/mips32.c init.tasks[i].paddr = KA2PA(bootinfo->taskmap.tasks[i].addr);
init 92 kernel/arch/mips32/src/mips32.c init.tasks[i].size = bootinfo->taskmap.tasks[i].size;
init 93 kernel/arch/mips32/src/mips32.c str_cpy(init.tasks[i].name, CONFIG_TASK_NAME_BUFLEN,
init 123 kernel/arch/mips32/src/mm/frame.c for (i = 0; i < init.cnt; i++)
init 125 kernel/arch/mips32/src/mm/frame.c init.tasks[i].paddr, init.tasks[i].size)) {
init 83 kernel/arch/ppc32/src/ppc32.c init.cnt = min3(bootinfo->taskmap.cnt, TASKMAP_MAX_RECORDS, CONFIG_INIT_TASKS);
init 85 kernel/arch/ppc32/src/ppc32.c for (i = 0; i < init.cnt; i++) {
init 86 kernel/arch/ppc32/src/ppc32.c init.tasks[i].paddr = KA2PA(bootinfo->taskmap.tasks[i].addr);
init 87 kernel/arch/ppc32/src/ppc32.c init.tasks[i].size = bootinfo->taskmap.tasks[i].size;
init 88 kernel/arch/ppc32/src/ppc32.c str_cpy(init.tasks[i].name, CONFIG_TASK_NAME_BUFLEN,
init 75 kernel/arch/riscv64/src/riscv64.c init.cnt = min3(bootinfo->taskmap.cnt, TASKMAP_MAX_RECORDS,
init 78 kernel/arch/riscv64/src/riscv64.c for (size_t i = 0; i < init.cnt; i++) {
init 79 kernel/arch/riscv64/src/riscv64.c init.tasks[i].paddr = KA2PA(bootinfo->taskmap.tasks[i].addr);
init 80 kernel/arch/riscv64/src/riscv64.c init.tasks[i].size = bootinfo->taskmap.tasks[i].size;
init 81 kernel/arch/riscv64/src/riscv64.c str_cpy(init.tasks[i].name, CONFIG_TASK_NAME_BUFLEN,
init 74 kernel/arch/sparc64/src/sun4u/sparc64.c init.cnt = min3(bootinfo->taskmap.cnt, TASKMAP_MAX_RECORDS, CONFIG_INIT_TASKS);
init 77 kernel/arch/sparc64/src/sun4u/sparc64.c for (i = 0; i < init.cnt; i++) {
init 78 kernel/arch/sparc64/src/sun4u/sparc64.c init.tasks[i].paddr = KA2PA(bootinfo->taskmap.tasks[i].addr);
init 79 kernel/arch/sparc64/src/sun4u/sparc64.c init.tasks[i].size = bootinfo->taskmap.tasks[i].size;
init 80 kernel/arch/sparc64/src/sun4u/sparc64.c str_cpy(init.tasks[i].name, CONFIG_TASK_NAME_BUFLEN,
init 76 kernel/arch/sparc64/src/sun4v/sparc64.c init.cnt = min3(bootinfo->taskmap.cnt, TASKMAP_MAX_RECORDS, CONFIG_INIT_TASKS);
init 79 kernel/arch/sparc64/src/sun4v/sparc64.c for (i = 0; i < init.cnt; i++) {
init 80 kernel/arch/sparc64/src/sun4v/sparc64.c init.tasks[i].paddr = KA2PA(bootinfo->taskmap.tasks[i].addr);
init 81 kernel/arch/sparc64/src/sun4v/sparc64.c init.tasks[i].size = bootinfo->taskmap.tasks[i].size;
init 82 kernel/arch/sparc64/src/sun4v/sparc64.c str_cpy(init.tasks[i].name, CONFIG_TASK_NAME_BUFLEN,
init 106 kernel/genarch/src/multiboot/multiboot.c if (init.cnt >= CONFIG_INIT_TASKS)
init 109 kernel/genarch/src/multiboot/multiboot.c init.tasks[init.cnt].paddr = mods[i].start;
init 110 kernel/genarch/src/multiboot/multiboot.c init.tasks[init.cnt].size = mods[i].end - mods[i].start;
init 114 kernel/genarch/src/multiboot/multiboot.c multiboot_extract_command(init.tasks[init.cnt].name,
init 116 kernel/genarch/src/multiboot/multiboot.c multiboot_extract_argument(init.tasks[init.cnt].arguments,
init 119 kernel/genarch/src/multiboot/multiboot.c init.tasks[init.cnt].name[0] = 0;
init 120 kernel/genarch/src/multiboot/multiboot.c init.tasks[init.cnt].arguments[0] = 0;
init 123 kernel/genarch/src/multiboot/multiboot.c init.cnt++;
init 51 kernel/genarch/src/multiboot/multiboot2.c if (init.cnt < CONFIG_INIT_TASKS) {
init 52 kernel/genarch/src/multiboot/multiboot2.c init.tasks[init.cnt].paddr = module->start;
init 53 kernel/genarch/src/multiboot/multiboot2.c init.tasks[init.cnt].size = module->end - module->start;
init 54 kernel/genarch/src/multiboot/multiboot2.c multiboot_extract_command(init.tasks[init.cnt].name,
init 56 kernel/genarch/src/multiboot/multiboot2.c multiboot_extract_argument(init.tasks[init.cnt].arguments,
init 59 kernel/genarch/src/multiboot/multiboot2.c init.cnt++;
init 103 kernel/generic/include/config.h extern init_t init;
init 194 kernel/generic/src/main/kinit.c for (i = 0; i < init.cnt; i++) {
init 195 kernel/generic/src/main/kinit.c const char *arguments = init.tasks[i].arguments;
init 198 kernel/generic/src/main/kinit.c if (str_length(init.tasks[i].name) == 0)
init 209 kernel/generic/src/main/kinit.c "init_args.%s", init.tasks[i].name);
init 214 kernel/generic/src/main/kinit.c for (i = 0; i < init.cnt; i++) {
init 215 kernel/generic/src/main/kinit.c if (init.tasks[i].paddr % FRAME_SIZE) {
init 229 kernel/generic/src/main/kinit.c const char *name = init.tasks[i].name;
init 241 kernel/generic/src/main/kinit.c uintptr_t page = km_map(init.tasks[i].paddr,
init 242 kernel/generic/src/main/kinit.c init.tasks[i].size, PAGE_SIZE,
init 253 kernel/generic/src/main/kinit.c register_debug_data((void *) page, init.tasks[i].size);
init 274 kernel/generic/src/main/kinit.c errno_t rc = program_create_from_image((void *) page, init.tasks[i].size, namebuf,
init 299 kernel/generic/src/main/kinit.c init_rd((void *) init.tasks[i].paddr, init.tasks[i].size);
init 311 kernel/generic/src/main/kinit.c for (i = 0; i < init.cnt; i++) {
init 123 kernel/generic/src/main/main.c init_t init = {
init 254 kernel/generic/src/main/main.c if (init.cnt > 0) {
init 256 kernel/generic/src/main/main.c for (i = 0; i < init.cnt; i++)
init 258 kernel/generic/src/main/main.c i, (void *) init.tasks[i].paddr, i, init.tasks[i].size);
init 759 kernel/generic/src/mm/frame.c for (size_t i = 0; i < init.cnt; i++) {
init 761 kernel/generic/src/mm/frame.c init.tasks[i].paddr,
init 762 kernel/generic/src/mm/frame.c init.tasks[i].size)) {
init 1124 kernel/generic/src/mm/frame.c for (size_t i = 0; i < init.cnt; i++)
init 1125 kernel/generic/src/mm/frame.c frame_mark_unavailable(ADDR2PFN(init.tasks[i].paddr),
init 1126 kernel/generic/src/mm/frame.c SIZE2FRAMES(init.tasks[i].size));
init 52 uspace/app/bdsh/compl.c .init = compl_init,
init 301 uspace/app/stats/stats.c bool init = str_test_prefix(stats_tasks[i].name, INIT_PREFIX);
init 305 uspace/app/stats/stats.c if (init)
init 324 uspace/app/stats/stats.c } else if (init)
init 77 uspace/drv/hid/usbhid/subdrivers.c .init = usb_kbd_init,
init 90 uspace/drv/hid/usbhid/subdrivers.c .init = usb_multimedia_init,
init 103 uspace/drv/hid/usbhid/subdrivers.c .init = usb_mouse_init,
init 116 uspace/drv/hid/usbhid/subdrivers.c .init = usb_blink1_init,
init 108 uspace/drv/hid/usbhid/usbhid.c hid_dev->subdrivers[0].init = usb_generic_hid_init;
init 208 uspace/drv/hid/usbhid/usbhid.c hid_dev->subdrivers[count].init = usb_generic_hid_init;
init 493 uspace/drv/hid/usbhid/usbhid.c if (hid_dev->subdrivers[i].init != NULL) {
init 495 uspace/drv/hid/usbhid/usbhid.c const errno_t pret = hid_dev->subdrivers[i].init(hid_dev,
init 88 uspace/drv/hid/usbhid/usbhid.h usb_hid_driver_init_t init;
init 102 uspace/lib/c/generic/rtld/dynamic.c info->init = d_ptr;
init 80 uspace/lib/c/include/rtld/dynamic.h void *init; /**< Module initialization code */
init 93 uspace/lib/clui/include/tinput.h tinput_compl_init_fn init;
init 695 uspace/lib/clui/src/tinput.c rc = (*ti->compl_ops->init)(ti->buffer, ti->pos, &cstart, &state);
init 433 uspace/lib/cpp/include/__bits/adt/deque.hpp deque(initializer_list<T> init, const allocator_type& alloc = allocator_type{})
init 439 uspace/lib/cpp/include/__bits/adt/deque.hpp copy_from_range_(init.begin(), init.end());
init 466 uspace/lib/cpp/include/__bits/adt/deque.hpp deque& operator=(initializer_list<T> init)
init 471 uspace/lib/cpp/include/__bits/adt/deque.hpp copy_from_range_(init.begin(), init.end());
init 493 uspace/lib/cpp/include/__bits/adt/deque.hpp void assign(initializer_list<T> init)
init 495 uspace/lib/cpp/include/__bits/adt/deque.hpp copy_from_range_(init.begin(), init.end());
init 823 uspace/lib/cpp/include/__bits/adt/deque.hpp iterator insert(const_iterator position, initializer_list<value_type> init)
init 825 uspace/lib/cpp/include/__bits/adt/deque.hpp return insert(position, init.begin(), init.end());
init 84 uspace/lib/cpp/include/__bits/adt/initializer_list.hpp constexpr auto begin(initializer_list<T> init)
init 86 uspace/lib/cpp/include/__bits/adt/initializer_list.hpp return init.begin();
init 90 uspace/lib/cpp/include/__bits/adt/initializer_list.hpp constexpr auto end(initializer_list<T> init)
init 92 uspace/lib/cpp/include/__bits/adt/initializer_list.hpp return init.end();
init 430 uspace/lib/cpp/include/__bits/adt/list.hpp list(initializer_list<value_type> init, const allocator_type& alloc = allocator_type{})
init 433 uspace/lib/cpp/include/__bits/adt/list.hpp init_(init.begin(), init.end());
init 467 uspace/lib/cpp/include/__bits/adt/list.hpp list& operator=(initializer_list<value_type> init)
init 471 uspace/lib/cpp/include/__bits/adt/list.hpp init_(init.begin(), init.end());
init 494 uspace/lib/cpp/include/__bits/adt/list.hpp void assign(initializer_list<value_type> init)
init 498 uspace/lib/cpp/include/__bits/adt/list.hpp init_(init.begin(), init.end());
init 751 uspace/lib/cpp/include/__bits/adt/list.hpp iterator insert(const_iterator position, initializer_list<value_type> init)
init 753 uspace/lib/cpp/include/__bits/adt/list.hpp return insert(position, init.begin(), init.end());
init 141 uspace/lib/cpp/include/__bits/adt/map.hpp map(initializer_list<value_type> init,
init 146 uspace/lib/cpp/include/__bits/adt/map.hpp insert(init.begin(), init.end());
init 155 uspace/lib/cpp/include/__bits/adt/map.hpp map(initializer_list<value_type> init,
init 157 uspace/lib/cpp/include/__bits/adt/map.hpp : map{init, key_compare{}, alloc}
init 181 uspace/lib/cpp/include/__bits/adt/map.hpp map& operator=(initializer_list<value_type>& init)
init 185 uspace/lib/cpp/include/__bits/adt/map.hpp insert(init.begin(), init.end());
init 376 uspace/lib/cpp/include/__bits/adt/map.hpp void insert(initializer_list<value_type> init)
init 378 uspace/lib/cpp/include/__bits/adt/map.hpp insert(init.begin(), init.end());
init 800 uspace/lib/cpp/include/__bits/adt/map.hpp multimap(initializer_list<value_type> init,
init 805 uspace/lib/cpp/include/__bits/adt/map.hpp insert(init.begin(), init.end());
init 814 uspace/lib/cpp/include/__bits/adt/map.hpp multimap(initializer_list<value_type> init,
init 816 uspace/lib/cpp/include/__bits/adt/map.hpp : multimap{init, key_compare{}, alloc}
init 840 uspace/lib/cpp/include/__bits/adt/map.hpp multimap& operator=(initializer_list<value_type>& init)
init 844 uspace/lib/cpp/include/__bits/adt/map.hpp insert(init.begin(), init.end());
init 987 uspace/lib/cpp/include/__bits/adt/map.hpp void insert(initializer_list<value_type> init)
init 989 uspace/lib/cpp/include/__bits/adt/map.hpp insert(init.begin(), init.end());
init 117 uspace/lib/cpp/include/__bits/adt/set.hpp set(initializer_list<value_type> init,
init 122 uspace/lib/cpp/include/__bits/adt/set.hpp insert(init.begin(), init.end());
init 131 uspace/lib/cpp/include/__bits/adt/set.hpp set(initializer_list<value_type> init,
init 133 uspace/lib/cpp/include/__bits/adt/set.hpp : set{init, key_compare{}, alloc}
init 157 uspace/lib/cpp/include/__bits/adt/set.hpp set& operator=(initializer_list<value_type>& init)
init 161 uspace/lib/cpp/include/__bits/adt/set.hpp insert(init.begin(), init.end());
init 285 uspace/lib/cpp/include/__bits/adt/set.hpp void insert(initializer_list<value_type> init)
init 287 uspace/lib/cpp/include/__bits/adt/set.hpp insert(init.begin(), init.end());
init 598 uspace/lib/cpp/include/__bits/adt/set.hpp multiset(initializer_list<value_type> init,
init 603 uspace/lib/cpp/include/__bits/adt/set.hpp insert(init.begin(), init.end());
init 612 uspace/lib/cpp/include/__bits/adt/set.hpp multiset(initializer_list<value_type> init,
init 614 uspace/lib/cpp/include/__bits/adt/set.hpp : multiset{init, key_compare{}, alloc}
init 638 uspace/lib/cpp/include/__bits/adt/set.hpp multiset& operator=(initializer_list<value_type>& init)
init 642 uspace/lib/cpp/include/__bits/adt/set.hpp insert(init.begin(), init.end());
init 766 uspace/lib/cpp/include/__bits/adt/set.hpp void insert(initializer_list<value_type> init)
init 768 uspace/lib/cpp/include/__bits/adt/set.hpp insert(init.begin(), init.end());
init 122 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp unordered_map(initializer_list<value_type> init,
init 129 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp insert(init.begin(), init.end());
init 152 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp unordered_map(initializer_list<value_type> init, size_type bucket_count,
init 154 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp : unordered_map{init, bucket_count, hasher{}, key_equal{}, alloc}
init 157 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp unordered_map(initializer_list<value_type> init, size_type bucket_count,
init 159 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp : unordered_map{init, bucket_count, hf, key_equal{}, alloc}
init 184 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp unordered_map& operator=(initializer_list<value_type>& init)
init 187 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp table_.reserve(init.size());
init 189 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp insert(init.begin(), init.end());
init 302 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp void insert(initializer_list<value_type> init)
init 304 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp insert(init.begin(), init.end());
init 797 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp unordered_multimap(initializer_list<value_type> init,
init 804 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp insert(init.begin(), init.end());
init 829 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp unordered_multimap(initializer_list<value_type> init, size_type bucket_count,
init 831 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp : unordered_multimap{init, bucket_count, hasher{}, key_equal{}, alloc}
init 834 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp unordered_multimap(initializer_list<value_type> init, size_type bucket_count,
init 836 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp : unordered_multimap{init, bucket_count, hf, key_equal{}, alloc}
init 861 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp unordered_multimap& operator=(initializer_list<value_type>& init)
init 864 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp table_.reserve(init.size());
init 866 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp insert(init.begin(), init.end());
init 979 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp void insert(initializer_list<value_type> init)
init 981 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp insert(init.begin(), init.end());
init 127 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp unordered_set(initializer_list<value_type> init,
init 134 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp insert(init.begin(), init.end());
init 157 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp unordered_set(initializer_list<value_type> init, size_type bucket_count,
init 159 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp : unordered_set{init, bucket_count, hasher{}, key_equal{}, alloc}
init 162 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp unordered_set(initializer_list<value_type> init, size_type bucket_count,
init 164 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp : unordered_set{init, bucket_count, hf, key_equal{}, alloc}
init 189 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp unordered_set& operator=(initializer_list<value_type>& init)
init 192 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp table_.reserve(init.size());
init 194 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp insert(init.begin(), init.end());
init 288 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp void insert(initializer_list<value_type> init)
init 290 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp insert(init.begin(), init.end());
init 543 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp unordered_multiset(initializer_list<value_type> init,
init 550 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp insert(init.begin(), init.end());
init 573 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp unordered_multiset(initializer_list<value_type> init, size_type bucket_count,
init 575 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp : unordered_multiset{init, bucket_count, hasher{}, key_equal{}, alloc}
init 578 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp unordered_multiset(initializer_list<value_type> init, size_type bucket_count,
init 580 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp : unordered_multiset{init, bucket_count, hf, key_equal{}, alloc}
init 605 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp unordered_multiset& operator=(initializer_list<value_type>& init)
init 608 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp table_.reserve(init.size());
init 610 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp insert(init.begin(), init.end());
init 704 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp void insert(initializer_list<value_type> init)
init 706 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp insert(init.begin(), init.end());
init 125 uspace/lib/cpp/include/__bits/adt/vector.hpp vector(initializer_list<T> init, const Allocator& alloc = Allocator{})
init 126 uspace/lib/cpp/include/__bits/adt/vector.hpp : data_{nullptr}, size_{init.size()}, capacity_{init.size()},
init 131 uspace/lib/cpp/include/__bits/adt/vector.hpp auto it = init.begin();
init 132 uspace/lib/cpp/include/__bits/adt/vector.hpp for (size_type i = 0; it != init.end(); ++i, ++it)
init 171 uspace/lib/cpp/include/__bits/adt/vector.hpp vector& operator=(initializer_list<T> init)
init 173 uspace/lib/cpp/include/__bits/adt/vector.hpp vector tmp{init, allocator_};
init 194 uspace/lib/cpp/include/__bits/adt/vector.hpp void assign(initializer_list<T> init)
init 196 uspace/lib/cpp/include/__bits/adt/vector.hpp vector tmp{init};
init 460 uspace/lib/cpp/include/__bits/adt/vector.hpp iterator insert(const_iterator position, initializer_list<T> init)
init 464 uspace/lib/cpp/include/__bits/adt/vector.hpp pos = shift_(pos, init.size());
init 465 uspace/lib/cpp/include/__bits/adt/vector.hpp copy(init.begin(), init.end(), pos);
init 343 uspace/lib/cpp/include/__bits/io/ios.hpp init(sb);
init 46 uspace/lib/cpp/include/__bits/io/iostream.hpp extern ios_base::Init init;
init 64 uspace/lib/cpp/include/__bits/io/istream.hpp basic_ios<Char, Traits>::init(sb);
init 59 uspace/lib/cpp/include/__bits/io/ostream.hpp basic_ios<Char, Traits>::init(sb);
init 1112 uspace/lib/cpp/include/__bits/iterator.hpp reverse_iterator<const T*> rbegin(initializer_list<T> init)
init 1114 uspace/lib/cpp/include/__bits/iterator.hpp return reverse_iterator<const T*>{init.end()};
init 1118 uspace/lib/cpp/include/__bits/iterator.hpp reverse_iterator<const T*> rend(initializer_list<T> init)
init 1120 uspace/lib/cpp/include/__bits/iterator.hpp return reverse_iterator<const T*>{init.begin()};
init 1164 uspace/lib/cpp/include/__bits/iterator.hpp constexpr bool empty(initializer_list<T> init) noexcept
init 1166 uspace/lib/cpp/include/__bits/iterator.hpp return init.size() == 0;
init 1188 uspace/lib/cpp/include/__bits/iterator.hpp constexpr const T* data(initializer_list<T> init) noexcept
init 1190 uspace/lib/cpp/include/__bits/iterator.hpp return init.begin();
init 42 uspace/lib/cpp/include/__bits/numeric.hpp T accumulate(InputIterator first, InputIterator last, T init)
init 44 uspace/lib/cpp/include/__bits/numeric.hpp auto acc{init};
init 52 uspace/lib/cpp/include/__bits/numeric.hpp T accumulate(InputIterator first, InputIterator last, T init,
init 55 uspace/lib/cpp/include/__bits/numeric.hpp auto acc{init};
init 68 uspace/lib/cpp/include/__bits/numeric.hpp InputIterator2 first2, T init)
init 70 uspace/lib/cpp/include/__bits/numeric.hpp auto res{init};
init 80 uspace/lib/cpp/include/__bits/numeric.hpp InputIterator2 first2, T init,
init 83 uspace/lib/cpp/include/__bits/numeric.hpp auto res{init};
init 1063 uspace/lib/cpp/include/__bits/random.hpp seed_seq(initializer_list<T> init)
init 1064 uspace/lib/cpp/include/__bits/random.hpp : seed_seq(init.begin(), init.end())
init 553 uspace/lib/cpp/include/__bits/string/string.hpp basic_string(initializer_list<value_type> init, const allocator_type& alloc = allocator_type{})
init 554 uspace/lib/cpp/include/__bits/string/string.hpp : basic_string{init.begin(), init.size(), alloc}
init 611 uspace/lib/cpp/include/__bits/string/string.hpp basic_string& operator=(initializer_list<value_type> init)
init 613 uspace/lib/cpp/include/__bits/string/string.hpp *this = basic_string{init};
init 819 uspace/lib/cpp/include/__bits/string/string.hpp basic_string& operator+=(initializer_list<value_type> init)
init 821 uspace/lib/cpp/include/__bits/string/string.hpp return append(init.begin(), init.size());
init 868 uspace/lib/cpp/include/__bits/string/string.hpp basic_string& append(initializer_list<value_type> init)
init 870 uspace/lib/cpp/include/__bits/string/string.hpp return append(init.begin(), init.size());
init 934 uspace/lib/cpp/include/__bits/string/string.hpp basic_string& assign(initializer_list<value_type> init)
init 936 uspace/lib/cpp/include/__bits/string/string.hpp return assign(init.begin(), init.size());
init 1026 uspace/lib/cpp/include/__bits/string/string.hpp iterator insert(const_iterator pos, initializer_list<value_type> init)
init 1028 uspace/lib/cpp/include/__bits/string/string.hpp return insert(pos, init.begin(), init.end());
init 1145 uspace/lib/cpp/include/__bits/string/string.hpp initializer_list<value_type> init)
init 1147 uspace/lib/cpp/include/__bits/string/string.hpp return replace(i1 - begin(), i2 - i1, init.begin(), init.size());
init 48 uspace/lib/cpp/include/__bits/thread/mutex.hpp aux::threading::mutex::init(mtx_);
init 77 uspace/lib/cpp/include/__bits/thread/mutex.hpp aux::threading::mutex::init(mtx_);
init 149 uspace/lib/cpp/include/__bits/thread/mutex.hpp aux::threading::mutex::init(mtx_);
init 55 uspace/lib/cpp/include/__bits/thread/shared_state.hpp threading::mutex::init(mutex_);
init 56 uspace/lib/cpp/include/__bits/thread/shared_state.hpp threading::condvar::init(condvar_);
init 56 uspace/lib/cpp/include/__bits/thread/thread.hpp aux::threading::mutex::init(join_mtx_);
init 57 uspace/lib/cpp/include/__bits/thread/thread.hpp aux::threading::condvar::init(join_cv_);
init 206 uspace/lib/cpp/src/__bits/test/string.cpp std::initializer_list<char> init{'l', 'o'};
init 207 uspace/lib/cpp/src/__bits/test/string.cpp str5.insert(str5.begin() + 3, init);
init 37 uspace/lib/cpp/src/condition_variable.cpp aux::threading::condvar::init(cv_);
init 67 uspace/lib/cpp/src/condition_variable.cpp aux::threading::condvar::init(cv_);
init 41 uspace/lib/cpp/src/iostream.cpp ios_base::Init init{};
init 103 uspace/lib/cpp/src/mutex.cpp aux::threading::mutex::init(mtx_);
init 36 uspace/lib/cpp/src/shared_mutex.cpp aux::threading::shared_mutex::init(mtx_);
init 113 uspace/lib/pcut/src/internal.h void (*init)(pcut_item_t *);
init 172 uspace/lib/pcut/src/report/report.c REPORT_CALL(init, all_items);
init 80 uspace/lib/posix/include/libc/rtld/dynamic.h void *init; /**< Module initialization code */
init 60 uspace/srv/hid/input/ctl/kbdev.c .init = kbdev_ctl_init,
init 54 uspace/srv/hid/input/ctl/stty.c .init = stty_ctl_init,
init 51 uspace/srv/hid/input/ctl/sun.c .init = sun_ctl_init,
init 473 uspace/srv/hid/input/input.c if ((*kdev->port_ops->init)(kdev) != 0)
init 477 uspace/srv/hid/input/input.c if ((*kdev->ctl_ops->init)(kdev) != 0) {
init 511 uspace/srv/hid/input/input.c if ((*kdev->ctl_ops->init)(kdev) != 0) {
init 548 uspace/srv/hid/input/input.c if ((*mdev->proto_ops->init)(mdev) != 0) {
init 610 uspace/srv/hid/input/input.c if ((*sdev->kdev->ctl_ops->init)(sdev->kdev) != 0) {
init 46 uspace/srv/hid/input/kbd_ctl.h errno_t (*init)(struct kbd_dev *);
init 45 uspace/srv/hid/input/kbd_port.h errno_t (*init)(struct kbd_dev *);
init 45 uspace/srv/hid/input/mouse_port.h errno_t (*init)(struct mouse_dev *);
init 46 uspace/srv/hid/input/mouse_proto.h errno_t (*init)(struct mouse_dev *);
init 53 uspace/srv/hid/input/port/chardev.c .init = chardev_port_init,
init 198 uspace/srv/hid/input/proto/mousedev.c .init = mousedev_proto_init
HelenOS homepage, sources at GitHub