/sysdeps/unix/sysv/linux/riscv/ |
A D | ucontext-macros.h | 29 #define SAVE_FP_REG(name, num, base) \ argument 30 FREG_S name, ((num) * SZFREG + MCONTEXT_FPREGS)(base) 32 #define RESTORE_FP_REG(name, num, base) \ argument 35 #define RESTORE_FP_REG_CFI(name, num, base) \ argument 36 RESTORE_FP_REG (name, num, base); \ 39 #define SAVE_INT_REG(name, num, base) \ argument 40 REG_S name, ((num) * SZREG + MCONTEXT_GREGS)(base) 42 #define RESTORE_INT_REG(name, num, base) \ argument 43 REG_L name, ((num) * SZREG + MCONTEXT_GREGS)(base) 45 #define RESTORE_INT_REG_CFI(name, num, base) \ argument [all …]
|
/sysdeps/mach/htl/ |
A D | pt-stack-alloc.c | 38 vm_offset_t base; in __pthread_stack_alloc() local 43 for (base = next_stack_base; in __pthread_stack_alloc() 44 base < VM_MAX_ADDRESS in __pthread_stack_alloc() 45 && __vm_allocate (__mach_task_self (), &base, in __pthread_stack_alloc() 46 stacksize, FALSE) != KERN_SUCCESS; base += stacksize) in __pthread_stack_alloc() 49 if (base >= VM_MAX_ADDRESS) in __pthread_stack_alloc() 60 if (base >= VM_MAX_ADDRESS) in __pthread_stack_alloc() 63 next_stack_base = base + stacksize; in __pthread_stack_alloc() 65 (*stackaddr) = (void *) base; in __pthread_stack_alloc()
|
/sysdeps/unix/sysv/linux/alpha/ |
A D | rt_sigaction.S | 27 .macro SIGCONTEXT_REGS_I base, from=0 28 cfi_offset (\from, \base + (4 + \from) * 8) 30 SIGCONTEXT_REGS_I \base, "(\from+1)" 34 .macro SIGCONTEXT_REGS_F base, from=32 35 cfi_offset (\from, \base + (4 + 1 + \from) * 8) 37 SIGCONTEXT_REGS_F \base, "(\from+1)" 41 .macro SIGCONTEXT_REGS base 42 SIGCONTEXT_REGS_I \base 43 SIGCONTEXT_REGS_F \base 44 cfi_offset (63, \base + (4 + 32 + 1 + 32) * 8) [all …]
|
A D | ioperm.c | 168 unsigned long int base; member 209 return io.base + (port << 5) + ((size - 1) << 3); in port_to_cpu_addr() 211 return port + io.base; in port_to_cpu_addr() 213 return io.base + (port << 7) + ((size - 1) << 5); in port_to_cpu_addr() 322 return port + io.base; in dense_port_to_cpu_addr() 702 fprintf(stderr, "ioperm: turn_on %d io.base %ld\n", turn_on, io.base); in _ioperm() 707 if (!io.base) in _ioperm() 729 io.base = in _ioperm() 735 len, io.base); in _ioperm() 737 if ((long) io.base == -1) in _ioperm() [all …]
|
/sysdeps/generic/ |
A D | _itoa.h | 45 unsigned int base, int upper_case) attribute_hidden; 56 unsigned int base, 61 unsigned int base, int upper_case) 67 switch (base) 81 *--buflim = digits[value % base]; 82 while ((value /= base) != 0); 92 unsigned int base, 99 # define _itoa(value, buf, base, upper_case) \ argument 100 _itoa_word (value, buf, base, upper_case) 101 # define _fitoa(value, buf, base, upper_case) \ argument [all …]
|
A D | dl-cache.h | 263 const void *base; member 288 || ((uintptr_t) hwcaps->base % 4) != 0 in cache_extension_verify() 291 hwcaps->base = NULL; in cache_extension_verify() 340 loaded->sections[tag].base = file_base + ext->sections[i].offset; in cache_extension_load()
|
A D | unwind-dw2-fde.c | 377 _Unwind_Ptr base, x_ptr, y_ptr; in fde_single_encoding_compare() local 379 base = base_from_object (ob->s.b.encoding, ob); in fde_single_encoding_compare() 649 _Unwind_Ptr base = 0; in classify_object_over_fdes() local 667 base = base_from_object (encoding, ob); in classify_object_over_fdes() 703 _Unwind_Ptr base = base_from_object (ob->s.b.encoding, ob); in add_fdes() local 722 base = base_from_object (encoding, ob); in add_fdes() 735 read_encoded_value_with_base (encoding, base, this_fde->pc_begin, in add_fdes() 820 _Unwind_Ptr base = base_from_object (ob->s.b.encoding, ob); in linear_search_fdes() local 840 base = base_from_object (encoding, ob); in linear_search_fdes() 856 p = read_encoded_value_with_base (encoding, base, in linear_search_fdes() [all …]
|
A D | unwind-pe.h | 61 (unsigned char encoding, _Unwind_Ptr base, 198 read_encoded_value_with_base (unsigned char encoding, _Unwind_Ptr base, in read_encoded_value_with_base() argument 280 ? (_Unwind_Internal_Ptr) u : base); in read_encoded_value_with_base()
|
/sysdeps/m68k/ |
A D | asm-syntax.h | 26 #define MEM(base)R(base)@ argument 27 #define MEM_DISP(base,displacement)R(base)@(displacement) argument 28 #define MEM_INDX(base,idx,size_suffix)R(base)@(R(idx):size_suffix) argument 29 #define MEM_INDX1(base,idx,size_suffix,scale)R(base)@(R(idx):size_suffix:scale) argument 43 #define MEM(base)(R(base)) argument 44 #define MEM_DISP(base,displacement)(displacement,R(base)) argument 47 #define MEM_INDX_(base,idx,size_suffix)(R(base),R(idx##.##size_suffix)) argument 48 #define MEM_INDX(base,idx,size_suffix)MEM_INDX_(base,idx,size_suffix) argument 49 #define MEM_INDX1_(base,idx,size_suffix,scale)(R(base),R(idx##.##size_suffix*scale)) argument 50 #define MEM_INDX1(base,idx,size_suffix,scale)MEM_INDX1_(base,idx,size_suffix,scale) argument
|
/sysdeps/unix/sysv/linux/ia64/ |
A D | ioperm.c | 47 unsigned long int base; member 61 unsigned long int base; in _ioperm() local 72 if (!io.base) in _ioperm() 94 if ((long) base == -1) in _ioperm() 97 io.base = base; in _ioperm() 102 if (!io.base) in _ioperm() 136 volatile unsigned char *addr = (void *) io.base + io_offset (port); in _inb() 147 volatile unsigned short *addr = (void *) io.base + io_offset (port); in _inw() 158 volatile unsigned int *addr = (void *) io.base + io_offset (port); in _inl() 169 volatile unsigned char *addr = (void *) io.base + io_offset (port); in _outb() [all …]
|
/sysdeps/unix/sysv/linux/ |
A D | timespec_getres.c | 23 __timespec_getres64 (struct __timespec64 *ts, int base) in __timespec_getres64() argument 25 if (base == TIME_UTC) in __timespec_getres64() 28 return base; in __timespec_getres64() 37 __timespec_getres (struct timespec *ts, int base) in libc_hidden_def() 42 ret = __timespec_getres64 (&tp64, base); in libc_hidden_def()
|
A D | timespec_get.c | 24 __timespec_get64 (struct __timespec64 *ts, int base) in __timespec_get64() argument 26 if (base == TIME_UTC) in __timespec_get64() 29 return base; in __timespec_get64() 38 __timespec_get (struct timespec *ts, int base) in libc_hidden_def() 43 ret = __timespec_get64 (&tp64, base); in libc_hidden_def()
|
A D | getdirentries.c | 26 off_t base = __lseek (fd, 0, SEEK_CUR); in getdirentries() local 31 *basep = base; in getdirentries()
|
A D | getdirentries64.c | 27 off64_t base = __lseek64 (fd, (off_t) 0, SEEK_CUR); in getdirentries64() local 32 *basep = base; in getdirentries64()
|
A D | pathconf.c | 83 char *base = strdupa (__basename (path)); in distinguish_extX() local 84 __snprintf (path, sizeof (path), "/sys/fs/ext4/%s", base); in distinguish_extX()
|
/sysdeps/sparc/sparc32/ |
A D | memset.S | 24 std source, [base + offset + 0x00]; \ 25 std source, [base + offset + 0x08]; \ 26 std source, [base + offset + 0x10]; \ 27 std source, [base + offset + 0x18]; \ 28 std source, [base + offset + 0x20]; \ 29 std source, [base + offset + 0x28]; \ 30 std source, [base + offset + 0x30]; \ 31 std source, [base + offset + 0x38]; 34 std source, [base - offset - 0x38]; \ 35 std source, [base - offset - 0x30]; \ [all …]
|
A D | __longjmp.S | 21 #define ENV(base,reg) [%base + (reg * 4)] argument
|
/sysdeps/sparc/sparc64/multiarch/ |
A D | memcpy-niagara2.S | 103 #define FREG_LOAD_1(base, x0) \ argument 104 LOAD(ldd, base + 0x00, %x0) 106 LOAD(ldd, base + 0x00, %x0); \ 107 LOAD(ldd, base + 0x08, %x1); 109 LOAD(ldd, base + 0x00, %x0); \ 110 LOAD(ldd, base + 0x08, %x1); \ 111 LOAD(ldd, base + 0x10, %x2); 116 LOAD(ldd, base + 0x18, %x3); 122 LOAD(ldd, base + 0x20, %x4); 129 LOAD(ldd, base + 0x28, %x5); [all …]
|
/sysdeps/arm/armv7/multiarch/ |
A D | memcpy_impl.S | 229 vstr \vreg, [dst, #\base] 230 vldr \vreg, [src, #\base] 231 vstr d0, [dst, #\base + 8] 232 vldr d0, [src, #\base + 8] 233 vstr d1, [dst, #\base + 16] 234 vldr d1, [src, #\base + 16] 235 vstr d2, [dst, #\base + 24] 248 vstr \vreg, [dst, #\base] 249 vldr \vreg, [src, #\base] 250 vstr d0, [dst, #\base + 8] [all …]
|
/sysdeps/mips/ |
A D | dl-trampoline.c | 50 ElfW(Addr) base, limit; in elf_machine_runtime_link_map() 62 base = p[this].p_vaddr + l->l_addr; in elf_machine_runtime_link_map() 63 limit = base + p[this].p_memsz; in elf_machine_runtime_link_map() 64 if (stub_pc >= base && stub_pc < limit) in elf_machine_runtime_link_map() 77 ElfW(Addr) base, limit; in elf_machine_runtime_link_map() 85 base = p[this].p_vaddr + l->l_addr; in elf_machine_runtime_link_map() 86 limit = base + p[this].p_memsz; in elf_machine_runtime_link_map() 87 if (stub_pc >= base && stub_pc < limit) in elf_machine_runtime_link_map()
|
/sysdeps/unix/ |
A D | make-syscalls.sh | 94 base=`echo $name | sed 's/@@.*//'` 105 echo " echo 'versioned_symbol (libc, $source, $base, $ver)'; \\" 107 echo " echo 'weak_alias ($strong, $base)'; \\" 111 base=`echo $name | sed 's/@.*//'` 132 echo " echo 'compat_symbol (libc, $source, $base, $ver)'; \\"
|
/sysdeps/sparc/sparc64/ |
A D | memset.S | 29 stx source, [base - offset - 0x18]; \ 30 stx source, [base - offset - 0x10]; \ 31 stx source, [base - offset - 0x08]; \ 32 stx source, [base - offset - 0x00]; 181 stx source, [base - offset - 0x38]; \ 182 stx source, [base - offset - 0x30]; \ 183 stx source, [base - offset - 0x28]; \ 184 stx source, [base - offset - 0x20]; \ 185 stx source, [base - offset - 0x18]; \ 186 stx source, [base - offset - 0x10]; \ [all …]
|
/sysdeps/x86_64/multiarch/ |
A D | memmove-vec-unaligned-erms.S | 147 PREFETCH ((offset)base) 150 PREFETCH ((offset)base); \ 154 PREFETCH ((offset)base); \ 167 VMOVU (offset)base, vec0; \ 168 VMOVU ((offset) + VEC_SIZE)base, vec1; 170 VMOVNT vec0, (offset)base; \ 171 VMOVNT vec1, ((offset) + VEC_SIZE)base; 174 VMOVU (offset)base, vec0; \ 175 VMOVU ((offset) + VEC_SIZE)base, vec1; \ 179 VMOVNT vec0, (offset)base; \ [all …]
|
/sysdeps/mach/hurd/ |
A D | setpriority.c | 49 struct policy_timeshare_base base in __setpriority() local 52 (policy_base_t) &base, in __setpriority()
|
/sysdeps/unix/sysv/linux/sparc/sparc32/ |
A D | ____longjmp_chk.S | 21 #define ENV(base,reg) [%base + (reg * 4)] argument
|