| /openbsd-src/usr.bin/less/ |
| H A D | mark.c | 33 static struct mark marks[NMARKS]; variable 44 marks[i].m_scrpos.pos = -1; in init_mark() 54 return (&marks[c-'a']); in getumark() 57 return (&marks[c-'A'+26]); in getumark() 109 m = &marks[LASTMARK]; in getmark() 166 marks[LASTMARK].m_scrpos = scrpos; in lastmark() 167 marks[LASTMARK].m_ifile = curr_ifile; in lastmark() 188 if (m == &marks[LASTMARK] && m->m_scrpos.pos == -1) { in gomark() 243 if (marks[i].m_ifile == ifile) in unmark() 244 marks[i].m_scrpos.pos = -1; in unmark()
|
| /openbsd-src/sys/arch/hppa/stand/cdboot/ |
| H A D | cdboot.c | 73 uint64_t marks[MARK_MAX]; in boot() local 87 marks[MARK_START] = 0; in boot() 88 if (!loadfile(path, marks, LOAD_KERNEL)) { in boot() 89 marks[MARK_END] = ALIGN(marks[MARK_END]); in boot() 94 (*(startfuncp)((u_long)marks[MARK_ENTRY]))((int)pdc, 0, bootdev, in boot() 95 (u_long)marks[MARK_END], BOOTARG_APIVER, BOOTARG_LEN, in boot()
|
| /openbsd-src/sys/arch/luna88k/stand/boot/ |
| H A D | exec.c | 89 run_loadfile(uint64_t *marks, int howto) in run_loadfile() argument 92 printf("entry = 0x%lx\n", marks[MARK_ENTRY]); in run_loadfile() 93 printf("ssym = 0x%lx\n", marks[MARK_SYM]); in run_loadfile() 94 printf("esym = 0x%lx\n", marks[MARK_END]); in run_loadfile() 98 cpu_bootarg2 = (uint32_t)marks[MARK_END]; in run_loadfile() 106 (uint32_t)marks[MARK_ENTRY]; in run_loadfile()
|
| /openbsd-src/sys/arch/amd64/stand/efiboot/ |
| H A D | exec_i386.c | 66 run_loadfile(uint64_t *marks, int howto) in run_loadfile() argument 122 entry = marks[MARK_ENTRY] & 0x0fffffff; in run_loadfile() 148 protect_writeable(marks[MARK_START] + delta, in run_loadfile() 149 marks[MARK_END] - marks[MARK_START]); in run_loadfile() 151 memmove((void *)marks[MARK_START] + delta, (void *)marks[MARK_START], in run_loadfile() 152 marks[MARK_END] - marks[MARK_START]); in run_loadfile() 154 marks[ in run_loadfile() [all...] |
| /openbsd-src/sys/arch/riscv64/stand/efiboot/ |
| H A D | exec.c | 53 run_loadfile(uint64_t *marks, int howto) in run_loadfile() argument 81 cpu_flush_dcache(marks[MARK_ENTRY], marks[MARK_END] - marks[MARK_ENTRY]); in run_loadfile() 86 (*(startfuncp)(marks[MARK_ENTRY]))((void *)marks[MARK_END], 0, fdt); in run_loadfile()
|
| /openbsd-src/sys/arch/arm64/stand/efiboot/ |
| H A D | exec.c | 91 run_loadfile(uint64_t *marks, int howto) in run_loadfile() argument 119 cpu_flush_dcache(marks[MARK_ENTRY], marks[MARK_END] - marks[MARK_ENTRY]); in run_loadfile() 124 (*(startfuncp)(marks[MARK_ENTRY]))((void *)marks[MARK_END], 0, fdt); in run_loadfile()
|
| /openbsd-src/usr.sbin/vmd/ |
| H A D | loadfile_elf.c | 275 u_long marks[MARK_MAX]; in loadfile_elf() 283 memset(&marks, 0, sizeof(marks)); in loadfile_elf() 286 r = elf32_exec(fp, &hdr.elf32, marks, LOAD_ALL); in loadfile_elf() 290 r = elf64_exec(fp, &hdr.elf64, marks, LOAD_ALL); in loadfile_elf() 325 stacksize = push_stack(bootargsz, marks[MARK_END]); 327 vrs->vrs_gprs[VCPU_REGS_RIP] = (uint64_t)marks[MARK_ENTRY]; 670 * marks: array to store the offsets of various kernel structures in elf64_exec() 680 elf64_exec(gzFile fp, Elf64_Ehdr *elf, u_long *marks, int flags) in elf64_exec() 689 paddr_t offset = marks[MARK_STAR in elf64_exec() 272 u_long marks[MARK_MAX]; loadfile_elf() local 659 elf64_exec(gzFile fp,Elf64_Ehdr * elf,u_long * marks,int flags) elf64_exec() argument 877 elf32_exec(gzFile fp,Elf32_Ehdr * elf,u_long * marks,int flags) elf32_exec() argument [all...] |
| /openbsd-src/sys/lib/libsa/ |
| H A D | loadfile_elf.c | 73 ELFNAME(exec)(int fd, Elf_Ehdr *elf, uint64_t *marks, int flags) in ELFNAME() 83 paddr_t offset = marks[MARK_START], shpp, elfp; in ELFNAME() 111 marks[MARK_RANDOM] = LOADADDR(phdr[i].p_paddr); in ELFNAME() 112 marks[MARK_ERANDOM] = in ELFNAME() 113 marks[MARK_RANDOM] + phdr[i].p_filesz; in ELFNAME() 285 marks[MARK_START] = LOADADDR(minp); in ELFNAME() 286 marks[MARK_ENTRY] = LOADADDR(elf->e_entry); in ELFNAME() 287 marks[MARK_VENTRY] = elf->e_entry; in ELFNAME() 288 marks[MARK_NSYM] = 1; /* XXX: Kernel needs >= 0 */ in ELFNAME() 289 marks[MARK_SYM] = LOADADDR(elfp); in ELFNAME() [all …]
|
| H A D | loadfile.c | 106 loadfile(const char *fname, uint64_t *marks, int flags) in loadfile() argument 135 rval = elf32_exec(fd, &hdr.elf32, marks, flags); in loadfile() 141 rval = elf64_exec(fd, &hdr.elf64, marks, flags); in loadfile() 151 PROGRESS(("=0x%lx\n", marks[MARK_END] - marks[MARK_START])); in loadfile()
|
| /openbsd-src/sys/arch/alpha/stand/netboot/ |
| H A D | netboot.c | 60 uint64_t marks[MARK_MAX]; in main() local 81 marks[MARK_START] = 0; in main() 82 rc = loadfile(boot_file, &marks, LOAD_KERNEL | COUNT_KERNEL); in main() 85 entry = marks[MARK_START]; in main()
|
| /openbsd-src/sys/arch/alpha/stand/boot/ |
| H A D | boot.c | 110 uint64_t marks[MARK_MAX]; in main() local 154 marks[MARK_START] = 0; in main() 155 rc = loadfile(name, marks, LOAD_KERNEL | COUNT_KERNEL); in main() 164 bootinfo_v1.ssym = marks[MARK_SYM]; in main() 165 bootinfo_v1.esym = marks[MARK_END]; in main() 177 entry = marks[MARK_START]; in main()
|
| /openbsd-src/usr.bin/vi/common/ |
| H A D | mark.c | 74 LIST_INIT(&ep->marks); in mark_init() 93 while ((lmp = LIST_FIRST(&ep->marks)) != NULL) { in mark_end() 165 LIST_INSERT_HEAD(&sp->ep->marks, lmt, q); in mark_set() 194 for (lastlmp = NULL, lmp = LIST_FIRST(&sp->ep->marks); in mark_find() 218 LIST_FOREACH(lmp, &sp->ep->marks, q) in mark_insdel() 249 LIST_FOREACH(lmp, &sp->ep->marks, q) in mark_insdel()
|
| /openbsd-src/gnu/usr.bin/texinfo/po/ |
| H A D | en@boldquot.header | 15 # When output to an ISO-8859-1 terminal, the single quotation marks are 17 # grave/acute accent (by libiconv), and the double quotation marks are 19 # When output to an ASCII terminal, the single quotation marks are 20 # transliterated to apostrophes, and the double quotation marks are 23 # This catalog furthermore displays the text between the quotation marks in
|
| H A D | en@quot.header | 15 # When output to an ISO-8859-1 terminal, the single quotation marks are 17 # grave/acute accent (by libiconv), and the double quotation marks are 19 # When output to an ASCII terminal, the single quotation marks are 20 # transliterated to apostrophes, and the double quotation marks are
|
| /openbsd-src/sys/arch/macppc/stand/ |
| H A D | main.c | 180 run_loadfile(uint64_t *marks, int howto) in run_loadfile() argument 206 entry = marks[MARK_ENTRY]; in run_loadfile() 207 ssym = (void *)marks[MARK_SYM]; in run_loadfile() 208 esym = (void *)marks[MARK_END]; in run_loadfile() 211 lastpage = roundup(marks[MARK_END], PAGE_SIZE); in run_loadfile()
|
| /openbsd-src/sys/arch/hppa/stand/boot/ |
| H A D | exec.c | 41 run_loadfile(uint64_t *marks, int howto) in run_loadfile() argument 48 (*(startfuncp)((u_long)marks[MARK_ENTRY]))((int)pdc, howto, bootdev, in run_loadfile() 49 (u_long)marks[MARK_END], BOOTARG_APIVER, BOOTARG_LEN, (caddr_t)BOOTARG_OFF); in run_loadfile()
|
| /openbsd-src/sys/arch/armv7/stand/efiboot/ |
| H A D | exec.c | 137 run_loadfile(uint64_t *marks, int howto) in run_loadfile() argument 139 Elf_Ehdr *elf = (Elf_Ehdr *)marks[MARK_SYM]; in run_loadfile() 140 Elf_Shdr *shp = (Elf_Shdr *)(marks[MARK_SYM] + elf->e_shoff); in run_loadfile() 141 u_long esym = marks[MARK_END] & 0x0fffffff; in run_loadfile() 191 (*(startfuncp)(marks[MARK_ENTRY]))((void *)esym, NULL, fdt); in run_loadfile()
|
| /openbsd-src/sys/arch/landisk/stand/boot/ |
| H A D | devs.c | 55 run_loadfile(uint64_t *marks, int howto) in run_loadfile() argument 59 entry = marks[MARK_ENTRY]; in run_loadfile() 63 (*(void (*)(int,int,int))entry)(howto, marks[MARK_END], 0); in run_loadfile()
|
| /openbsd-src/sys/arch/loongson/stand/boot/ |
| H A D | exec.c | 31 run_loadfile(uint64_t *marks, int howto) in run_loadfile() argument 71 (*(program)(marks[MARK_ENTRY]))(newargc, PTR_TO_CKSEG1(newargv), in run_loadfile() 73 (uint64_t *)PHYS_TO_CKSEG0(marks[MARK_END])); in run_loadfile()
|
| /openbsd-src/sys/arch/alpha/stand/nboot/ |
| H A D | machdep.c | 139 run_loadfile(uint64_t *marks, int howto) in run_loadfile() argument 150 bootinfo_v1.ssym = marks[MARK_SYM]; in run_loadfile() 151 bootinfo_v1.esym = marks[MARK_END]; in run_loadfile() 164 entry = marks[MARK_START]; in run_loadfile()
|
| /openbsd-src/sys/dev/pci/drm/amd/display/dc/dce110/ |
| H A D | dce110_mem_input_v.c | 742 struct dce_watermarks marks) in program_stutter_watermark() argument 778 marks.a_mark, in program_stutter_watermark() 794 marks.b_mark, in program_stutter_watermark() 802 struct dce_watermarks marks) in program_stutter_watermark_l() argument 807 marks); in program_stutter_watermark_l() 812 struct dce_watermarks marks) in program_stutter_watermark_c() argument 817 marks); in program_stutter_watermark_c() 824 struct dce_watermarks marks) in program_nbp_watermark() argument 862 marks.a_mark, in program_nbp_watermark() 898 marks.b_mark, in program_nbp_watermark() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Commands/ |
| H A D | OptionsBase.td | 41 // - `OptionalArg`: Sets the argument type and marks it as optional. 42 // - `Arg`: Sets the argument type and marks it as required. 43 // - `EnumArg`: Sets the argument type to an enum and marks it as required. 44 // - `OptionalEnumArg`: Same as EnumArg but marks it as optional. 81 // - `OptionalArg`: Sets the argument type and marks it as optional. 83 // Sets the argument type to eArgTypePid and marks option as 85 // - `Arg`: Sets the argument type and marks it as required. 87 // Sets the argument type to eArgTypePid and marks option as
|
| /openbsd-src/sys/stand/boot/ |
| H A D | boot.c | 66 uint64_t marks[MARK_MAX]; in boot() local 127 marks[MARK_START] = 0; in boot() 128 if ((fd = loadfile(cmd.path, marks, LOAD_ALL)) != -1) { in boot() 161 run_loadfile(marks, cmd.boothowto); in boot()
|
| /openbsd-src/sys/arch/i386/stand/libsa/ |
| H A D | exec_i386.c | 63 run_loadfile(uint64_t *marks, int howto) in run_loadfile() argument 138 entry = marks[MARK_ENTRY] & 0x0fffffff; in run_loadfile() 147 marks[MARK_END], extmem, cnvmem, ac, (intptr_t)av); in run_loadfile() 150 (*(startfuncp)entry)(howto, bootdev, BOOTARG_APIVER, marks[MARK_END], in run_loadfile()
|
| /openbsd-src/usr.bin/vi/ex/ |
| H A D | ex_move.c | 123 LIST_FOREACH(lmp, &sp->ep->marks, q) in ex_move() 147 LIST_FOREACH(lmp, &sp->ep->marks, q) in ex_move() 165 LIST_FOREACH(lmp, &sp->ep->marks, q) in ex_move() 181 LIST_FOREACH(lmp, &sp->ep->marks, q) in ex_move()
|