/glibc-2.36/sysdeps/generic/ |
D | sysdep.h | 42 # define cfi_def_cfa(reg, off) .cfi_def_cfa reg, off 44 # define cfi_def_cfa_offset(off) .cfi_def_cfa_offset off 45 # define cfi_adjust_cfa_offset(off) .cfi_adjust_cfa_offset off 46 # define cfi_offset(reg, off) .cfi_offset reg, off 47 # define cfi_rel_offset(reg, off) .cfi_rel_offset reg, off 65 # define CFI_DEF_CFA(reg, off) \ argument 66 ".cfi_def_cfa " CFI_STRINGIFY(reg) "," CFI_STRINGIFY(off) 69 # define CFI_DEF_CFA_OFFSET(off) \ argument 70 ".cfi_def_cfa_offset " CFI_STRINGIFY(off) 71 # define CFI_ADJUST_CFA_OFFSET(off) \ argument [all …]
|
/glibc-2.36/io/ |
D | tst-lockf.c | 80 off64_t off = (off64_t)INT32_MAX; in do_test_child_lockf64() local 81 TEST_COMPARE (lseek64 (temp_fd, off, SEEK_SET), off); in do_test_child_lockf64() 87 off64_t off = (off64_t)INT32_MAX+1024; in do_test_child_lockf64() local 88 TEST_COMPARE (lseek64 (temp_fd, off, SEEK_SET), off); in do_test_child_lockf64() 122 off64_t off = (off64_t)INT32_MAX + 1024; in do_test() local 123 TEST_COMPARE (lseek64 (temp_fd, off, SEEK_SET), off); in do_test()
|
/glibc-2.36/elf/ |
D | dl-tls.c | 272 size_t off; in _dl_determine_tlsoffset() local 277 off = roundup (freetop + slotinfo[cnt].map->l_tls_blocksize in _dl_determine_tlsoffset() 280 if (off <= freebottom) in _dl_determine_tlsoffset() 282 freetop = off; in _dl_determine_tlsoffset() 286 slotinfo[cnt].map->l_tls_offset = off; in _dl_determine_tlsoffset() 291 off = roundup (offset + slotinfo[cnt].map->l_tls_blocksize - firstbyte, in _dl_determine_tlsoffset() 293 if (off > offset + slotinfo[cnt].map->l_tls_blocksize in _dl_determine_tlsoffset() 297 freebottom = off - slotinfo[cnt].map->l_tls_blocksize; in _dl_determine_tlsoffset() 299 offset = off; in _dl_determine_tlsoffset() 303 slotinfo[cnt].map->l_tls_offset = off; in _dl_determine_tlsoffset() [all …]
|
D | tst-env-setuid-tunables.c | 82 test_child (int off) in test_child() argument 87 if (val != NULL && strcmp (val, resultstrings[off]) == 0) in test_child() 91 printf ("[%d] Unexpected GLIBC_TUNABLES VALUE %s\n", off, val); in test_child() 97 printf ("[%d] GLIBC_TUNABLES not cleared\n", off); in test_child()
|
D | dl-tunables.c | 176 size_t off = 0; in parse_tunables() local 192 tunestr[off] = '\0'; in parse_tunables() 230 if (off > 0) in parse_tunables() 231 tunestr[off++] = ':'; in parse_tunables() 236 tunestr[off++] = *n++; in parse_tunables() 238 tunestr[off++] = '='; in parse_tunables() 241 tunestr[off++] = value[j]; in parse_tunables()
|
D | pldd-xx.c | 134 EW(Addr) off = offset + p[i].p_vaddr + sizeof (EW(Dyn)) * j; in E() 135 off = E(r_debug_offset) (&dyn[j], memfd, off); in E() 136 if (off != 0) in E() 139 if (pread (memfd, &r, sizeof (r), off) in E()
|
/glibc-2.36/posix/ |
D | tst-fork.c | 41 off_t off; in main() local 68 off = lseek (fd, 0, SEEK_CUR); in main() 69 if (off == (off_t) -1 || off != strlen (testdata)) in main() 91 off = lseek (fd, 0, SEEK_CUR); in main() 92 if (off == (off_t) -1 || off != strlen (testdata)) in main()
|
D | tst-execl2.c | 20 int off; in prepare() local 21 asprintf (&buf, "cp %s %n%s-copy", argv[0], &off, argv[0]); in prepare() 34 copy = buf + off; in prepare()
|
D | tst-execle2.c | 20 int off; in prepare() local 21 asprintf (&buf, "cp %s %n%s-copy", argv[0], &off, argv[0]); in prepare() 34 copy = buf + off; in prepare()
|
D | tst-execv2.c | 20 int off; in prepare() local 21 asprintf (&buf, "cp %s %n%s-copy", argv[0], &off, argv[0]); in prepare() 34 copy = buf + off; in prepare()
|
D | tst-execve2.c | 20 int off; in prepare() local 21 asprintf (&buf, "cp %s %n%s-copy", argv[0], &off, argv[0]); in prepare() 34 copy = buf + off; in prepare()
|
D | tst-execlp2.c | 24 int off; in prepare() local 25 asprintf (&buf, "cp %s %n%s-copy", argv[0], &off, argv[0]); in prepare() 38 copy = buf + off; in prepare()
|
D | tst-execvp2.c | 27 int off; in prepare() local 28 asprintf (&buf, "cp %s %n%s-copy", argv[0], &off, argv[0]); in prepare() 41 copy = buf + off; in prepare()
|
/glibc-2.36/libio/ |
D | tst-ftell-active-handler.c | 333 long off = ftell (fp); in do_ftell_test() local 334 if (off != test_modes[i].old_off) in do_ftell_test() 337 test_modes[i].old_off, off); in do_ftell_test() 341 printf ("old offset = %ld, ", off); in do_ftell_test() 351 off = ftell (fp); in do_ftell_test() 353 if (off != test_modes[i].new_off) in do_ftell_test() 356 test_modes[i].new_off, off); in do_ftell_test() 360 printf ("new offset = %ld", off); in do_ftell_test() 379 off = ftell (fp); in do_ftell_test() 381 if (off != test_modes[i].eof_off) in do_ftell_test() [all …]
|
D | bug-memstream1.c | 18 off64_t off = ftello64 (fp); in do_test() local 19 if (off != 0) in do_test() 74 off = ftello64 (fp); in do_test() 75 if (off != 0) in do_test()
|
D | bug-wmemstream1.c | 19 off64_t off = ftello64 (fp); in do_test() local 20 if (off != 0) in do_test() 76 off = ftello64 (fp); in do_test() 77 if (off != 0) in do_test()
|
D | tst-ftell-append.c | 115 long off = ftell (fp); in do_one_test() local 117 if (off != file_len) in do_one_test() 119 printf ("Incorrect offset %ld, expected %zu\n", off, file_len); in do_one_test() 124 printf ("Correct offset %ld after write.\n", off); in do_one_test()
|
/glibc-2.36/sysdeps/arc/ |
D | sysdep.h | 50 # define STR(reg, rbase, off) st reg, [rbase, off * 4] 51 # define LDR(reg, rbase, off) ld reg, [rbase, off * 4]
|
/glibc-2.36/scripts/ |
D | tst-elf-edit.py | 55 off = 'I' if e_ident[EI_CLASS] == ELFCLASS32 else 'Q' 56 return (endian, addr, off) 60 endian, addr, off = elf_types_fmts(e_ident) 61 self.fmt = '{0}HHI{1}{2}{2}IHHHHHH'.format(endian, addr, off) 84 endian, addr, off = elf_types_fmts(e_ident) 87 self.fmt = '{0}I{2}{1}{1}IIII'.format(endian, addr, off) 89 self.fmt = '{0}II{2}{1}{1}QQQ'.format(endian, addr, off)
|
/glibc-2.36/timezone/ |
D | zdump.c | 779 long off = gmtoff(tmp, NULL, gmtmp); in show() local 781 if (off != LONG_MIN) in show() 782 printf(" gmtoff=%ld", off); in show() 859 long off = gmtoff(tm, &t, NULL); in format_utc_offset() local 860 char sign = ((off < 0 in format_utc_offset() 861 || (off == 0 in format_utc_offset() 866 if (off < 0) in format_utc_offset() 868 if (off == LONG_MIN) in format_utc_offset() 870 off = -off; in format_utc_offset() 872 ss = off % 60; in format_utc_offset() [all …]
|
/glibc-2.36/sysdeps/x86_64/ |
D | sysdep.h | 32 #define cfi_offset_rel_rsp(regn, off) .cfi_escape 0x10, regn, 0x4, 0x13, \ 33 0x77, off & 0x7F | 0x80, off >> 7
|
/glibc-2.36/sysdeps/unix/sysv/linux/ |
D | malloc-hugepages.c | 88 off64_t off = 0; in malloc_default_hugepage_size() local 91 ssize_t r = __pread64_nocancel (fd, buf, sizeof (buf) - 1, off); in malloc_default_hugepage_size() 103 off += (nl + 1) - buf; in malloc_default_hugepage_size()
|
/glibc-2.36/debug/ |
D | wcpcpy_chk.c | 31 const ptrdiff_t off = src - dest + 1; in __wcpcpy_chk() local 37 c = wcp[off]; in __wcpcpy_chk()
|
D | wcscpy_chk.c | 31 const ptrdiff_t off = dest - src - 1; in __wcscpy_chk() local 40 wcp[off] = c; in __wcscpy_chk()
|
/glibc-2.36/sysdeps/aarch64/ |
D | dl-bti.c | 42 off_t off = ALIGN_DOWN (phdr->p_offset, pagesz); in _dl_bti_protect() local 58 fd, off) == MAP_FAILED; in _dl_bti_protect()
|