Home
last modified time | relevance | path

Searched refs:base (Results 1 – 25 of 230) sorted by relevance

12345678910

/glibc-2.36/io/
Dftwtest-sh72 base = "$tmp/", file = "$ftwtest", flag = FTW_D, level = 0
73 base = "$tmp/$ftwtest/", file = "bar", flag = FTW_D, level = 1
74 base = "$tmp/$ftwtest/", file = "baz", flag = FTW_F, level = 1
75 base = "$tmp/$ftwtest/", file = "foo", flag = FTW_D, level = 1
76 base = "$tmp/$ftwtest/bar/", file = "xo", flag = FTW_NS, level = 2
77 base = "$tmp/$ftwtest/foo/", file = "lvl1", flag = FTW_D, level = 2
78 base = "$tmp/$ftwtest/foo/lvl1/", file = "file@1", flag = FTW_F, level = 3
79 base = "$tmp/$ftwtest/foo/lvl1/", file = "link@1", flag = FTW_SLN, level = 3
80 base = "$tmp/$ftwtest/foo/lvl1/", file = "lvl2", flag = FTW_D, level = 3
81 base = "$tmp/$ftwtest/foo/lvl1/lvl2/", file = "file@2", flag = FTW_F, level = 4
[all …]
/glibc-2.36/sysdeps/m68k/
Dasm-syntax.h26 #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
/glibc-2.36/resolv/
Dinet_ntop.c109 struct { int base, len; } best, cur; in inet_ntop6() member
121 best.base = -1; in inet_ntop6()
122 cur.base = -1; in inet_ntop6()
127 if (cur.base == -1) in inet_ntop6()
128 cur.base = i, cur.len = 1; in inet_ntop6()
132 if (cur.base != -1) { in inet_ntop6()
133 if (best.base == -1 || cur.len > best.len) in inet_ntop6()
135 cur.base = -1; in inet_ntop6()
139 if (cur.base != -1) { in inet_ntop6()
140 if (best.base == -1 || cur.len > best.len) in inet_ntop6()
[all …]
/glibc-2.36/support/
Dtemp_file.c79 create_temp_file_in_dir (const char *base, const char *dir, char **filename) in create_temp_file_in_dir() argument
84 fname = xasprintf ("%s/%sXXXXXX", dir, base); in create_temp_file_in_dir()
104 create_temp_file (const char *base, char **filename) in create_temp_file() argument
106 return create_temp_file_in_dir (base, test_dir, filename); in create_temp_file()
110 create_temp_directory_internal (const char *base, bool toolong) in create_temp_directory_internal() argument
112 char *path = xasprintf ("%s/%sXXXXXX", test_dir, base); in create_temp_directory_internal()
123 support_create_temp_directory (const char *base) in support_create_temp_directory() argument
125 return create_temp_directory_internal (base, false); in support_create_temp_directory()
136 initialize_toolong (const char *base) in initialize_toolong() argument
138 long name_max = pathconf (base, _PC_NAME_MAX); in initialize_toolong()
[all …]
/glibc-2.36/elf/
Ddl-debug.c44 if (r->base.r_map == NULL) in _dl_debug_update()
45 atomic_store_release (&r->base.r_map, in _dl_debug_update()
47 return &r->base; in _dl_debug_update()
63 if (_r_debug_extended.base.r_version == 0) in _dl_debug_initialize()
64 _r_debug_extended.base.r_version = 1; in _dl_debug_initialize()
69 if (r->base.r_brk == 0) in _dl_debug_initialize()
81 r->base.r_version = 2; in _dl_debug_initialize()
85 if (r->base.r_brk == 0) in _dl_debug_initialize()
90 r->base.r_ldbase = ldbase ?: _r_debug_extended.base.r_ldbase; in _dl_debug_initialize()
91 r->base.r_brk = (ElfW(Addr)) &_dl_debug_state; in _dl_debug_initialize()
[all …]
/glibc-2.36/include/
Dlibc-pointer-arith.h46 #define ALIGN_DOWN(base, size) ((base) & -((__typeof__ (base)) (size))) argument
53 #define ALIGN_UP(base, size) ALIGN_DOWN ((base) + (size) - 1, (size)) argument
56 #define PTR_ALIGN_DOWN(base, size) \ argument
57 ((__typeof__ (base)) ALIGN_DOWN ((uintptr_t) (base), (size)))
60 #define PTR_ALIGN_UP(base, size) \ argument
61 ((__typeof__ (base)) ALIGN_UP ((uintptr_t) (base), (size)))
64 #define PTR_IS_ALIGNED(base, size) \ argument
65 ((((uintptr_t) (base)) & (size - 1)) == 0)
/glibc-2.36/sysdeps/unix/sysv/linux/riscv/
Ducontext-macros.h29 #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
33 FREG_L name, ((num) * SZFREG + MCONTEXT_FPREGS)(base)
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)
[all …]
/glibc-2.36/sysdeps/unix/sysv/linux/ia64/
Dioperm.c47 unsigned long int base; member
61 unsigned long int base; in _ioperm() local
72 if (!io.base) in _ioperm()
90 base = (unsigned long int) __mmap (0, len, PROT_READ | PROT_WRITE, MAP_SHARED, 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()
[all …]
/glibc-2.36/sysdeps/sparc/sparc32/
Dmemset.S23 #define ZERO_BIG_BLOCK(base, offset, source) \ argument
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];
33 #define ZERO_LAST_BLOCKS(base, offset, source) \ argument
[all …]
/glibc-2.36/sysdeps/generic/
D_itoa.h45 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,
94 extern char *_fitoa (unsigned long long value, char *buf, unsigned int base,
99 # define _itoa(value, buf, base, upper_case) \ argument
100 _itoa_word (value, buf, base, upper_case)
[all …]
/glibc-2.36/sysdeps/unix/sysv/linux/alpha/
Drt_sigaction.S27 .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 argument
42 SIGCONTEXT_REGS_I \base
43 SIGCONTEXT_REGS_F \base
44 cfi_offset (63, \base + (4 + 32 + 1 + 32) * 8)
[all …]
/glibc-2.36/stdio-common/
Dvfprintf-process-arg.c35 base = 10;
66 base = 10;
72 base = 8;
78 base = 16;
84 base = 2;
115 if (base == 8 && alt)
121 string = _itoa (number.longlong, workend, base,
126 if (use_outdigits && base == 10)
158 if (base == 8 && alt)
164 string = _itoa_word (number.word, workend, base,
[all …]
D_itoa.c59 mp_limb_t base PACK;
162 unsigned int base, int upper_case) in _itoa_word() argument
168 switch (base) in _itoa_word()
182 *--buflim = digits[value % base]; in _itoa_word()
183 while ((value /= base) != 0); in _itoa_word()
192 _itoa (unsigned long long int value, char *buflim, unsigned int base, in _itoa() argument
198 const struct base_table_t *brec = &_itoa_base_table[base - 2]; in _itoa()
200 switch (base) in _itoa()
267 rem = value - quo * base; in _itoa()
279 rem = value - quo * base; in _itoa()
[all …]
D_itowa.c59 mp_limb_t base PACK;
88 _itowa (unsigned long long int value, wchar_t *buflim, unsigned int base, in _itowa() argument
94 const struct base_table_t *brec = &_itoa_base_table[base - 2]; in _itowa()
96 switch (base) in _itowa()
162 rem = value - quo * base; in _itowa()
174 rem = value - quo * base; in _itowa()
190 = brec->big.base << big_normalization_steps; in _itowa()
192 if ((mp_limb_t) (value >> 32) >= brec->big.base) in _itowa()
249 brec->big.base); in _itowa()
250 udiv_qrnnd (x1lo, t[2], r, (mp_limb_t) value, brec->big.base); in _itowa()
[all …]
D_itowa.h31 unsigned int base, int upper_case);
36 unsigned int base, int upper_case) in _itowa_word() argument
44 switch (base) in _itowa_word()
58 *--bp = digits[value % base]; in _itowa_word()
59 while ((value /= base) != 0); in _itowa_word()
67 # define _itowa(value, buf, base, upper_case) \ argument
68 _itowa_word (value, buf, base, upper_case)
/glibc-2.36/libio/
Dstrops.c275 ssize_t base; in _IO_str_seekoff() local
279 base = 0; in _IO_str_seekoff()
282 base = fp->_IO_read_ptr - fp->_IO_read_base; in _IO_str_seekoff()
285 base = cur_size; in _IO_str_seekoff()
288 ssize_t maxval = SSIZE_MAX - base; in _IO_str_seekoff()
289 if (offset < -base || offset > maxval) in _IO_str_seekoff()
294 base += offset; in _IO_str_seekoff()
295 if (base > cur_size in _IO_str_seekoff()
296 && enlarge_userbuf (fp, base, 1) != 0) in _IO_str_seekoff()
298 fp->_IO_read_ptr = fp->_IO_read_base + base; in _IO_str_seekoff()
[all …]
Dwstrops.c281 ssize_t base; in _IO_wstr_seekoff() local
285 base = 0; in _IO_wstr_seekoff()
288 base = (fp->_wide_data->_IO_read_ptr in _IO_wstr_seekoff()
292 base = cur_size; in _IO_wstr_seekoff()
295 ssize_t maxval = SSIZE_MAX/sizeof (wchar_t) - base; in _IO_wstr_seekoff()
296 if (offset < -base || offset > maxval) in _IO_wstr_seekoff()
301 base += offset; in _IO_wstr_seekoff()
302 if (base > cur_size in _IO_wstr_seekoff()
303 && enlarge_userbuf (fp, base, 1) != 0) in _IO_wstr_seekoff()
306 + base); in _IO_wstr_seekoff()
[all …]
/glibc-2.36/stdlib/
Dstrtol_l.c224 int base, int group, locale_t loc) in INTERNAL()
282 if (base < 0 || base == 1 || base > 36) in INTERNAL()
309 if ((base == 0 || base == 16) && TOUPPER (s[1]) == L_('X')) in INTERNAL()
312 base = 16; in INTERNAL()
314 else if (base == 0) in INTERNAL()
315 base = 8; in INTERNAL()
317 else if (base == 0) in INTERNAL()
318 base = 10; in INTERNAL()
324 if (base != 10) in INTERNAL()
357 || (int) (TOUPPER (c) - L_('A') + 10) >= base)) in INTERNAL()
[all …]
/glibc-2.36/sysdeps/mach/htl/
Dpt-stack-alloc.c38 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()
/glibc-2.36/sysdeps/sparc/sparc64/multiarch/
Dmemcpy-niagara2.S103 #define FREG_LOAD_1(base, x0) \ argument
104 LOAD(ldd, base + 0x00, %x0)
105 #define FREG_LOAD_2(base, x0, x1) \ argument
106 LOAD(ldd, base + 0x00, %x0); \
107 LOAD(ldd, base + 0x08, %x1);
108 #define FREG_LOAD_3(base, x0, x1, x2) \ argument
109 LOAD(ldd, base + 0x00, %x0); \
110 LOAD(ldd, base + 0x08, %x1); \
111 LOAD(ldd, base + 0x10, %x2);
112 #define FREG_LOAD_4(base, x0, x1, x2, x3) \ argument
[all …]
/glibc-2.36/sysdeps/arm/armv7/multiarch/
Dmemcpy_impl.S228 .macro cpy_line_vfp vreg, base argument
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]
236 vldr d2, [src, #\base + 24]
237 vstr \vreg, [dst, #\base + 32]
[all …]
/glibc-2.36/string/
Dtst-strlen.c14 size_t base; in do_test() local
16 for (base = 0; base < 32; ++base) in do_test()
18 char *buf = basebuf + base; in do_test()
38 base, words, last, in do_test()
47 base, words, last, in do_test()
/glibc-2.36/inet/
Dinet_net.c60 uint32_t val, base, n, i; in __inet_network() local
66 val = 0; base = 10; digit = 0; in __inet_network()
68 digit = 1, base = 8, cp++; in __inet_network()
70 digit = 0, base = 16, cp++; in __inet_network()
73 if (base == 8 && (c == '8' || c == '9')) in __inet_network()
75 val = (val * base) + (c - '0'); in __inet_network()
80 if (base == 16 && isxdigit(c)) { in __inet_network()
/glibc-2.36/locale/
Dnewlocale.c42 __newlocale (int category_mask, const char *locale, locale_t base)
66 if (base == _nl_C_locobj_ptr)
70 base = NULL;
72 if ((base == NULL || category_mask == (1 << __LC_LAST) - 1 - (1 << LC_ALL))
78 if (base != NULL)
79 result = *base;
206 if (base == NULL)
232 if (base->__locales[cnt]->usage_count != UNDELETABLE)
234 _nl_remove_locale (cnt, base->__locales[cnt]);
258 free (base);
/glibc-2.36/sysdeps/x86_64/multiarch/
Dmemmove-vec-unaligned-erms.S152 # define PREFETCH_ONE_SET(dir, base, offset) \ argument
153 PREFETCH ((offset)base)
155 # define PREFETCH_ONE_SET(dir, base, offset) \ argument
156 PREFETCH ((offset)base); \
157 PREFETCH ((offset + dir * PREFETCH_SIZE)base)
159 # define PREFETCH_ONE_SET(dir, base, offset) \ argument
160 PREFETCH ((offset)base); \
161 PREFETCH ((offset + dir * PREFETCH_SIZE)base); \
162 PREFETCH ((offset + dir * PREFETCH_SIZE * 2)base); \
163 PREFETCH ((offset + dir * PREFETCH_SIZE * 3)base)
[all …]

12345678910