Home
last modified time | relevance | path

Searched refs:u (Results 1 – 25 of 478) sorted by relevance

12345678910>>...20

/toolchain/binutils/binutils-2.25/binutils/
Ddebug.c142 } u; member
299 } u; member
516 } u; member
812 n->u.function = f; in debug_record_function()
1048 n->u.int_constant = val; in debug_record_int_const()
1069 n->u.float_constant = val; in debug_record_float_const()
1098 n->u.typed_constant = tc; in debug_record_typed_const()
1166 n->u.variable = v; in debug_record_variable()
1208 t->u.kindirect = i; in debug_make_indirect_type()
1236 t->u.kint = unsignedp; in debug_make_int_type()
[all …]
Dwinduni.c473 unichar_dup_uppercase (const unichar *u) in unichar_dup_uppercase() argument
475 unichar *r = unichar_dup (u); in unichar_dup_uppercase()
490 unichar_isascii (const unichar *u, rc_uint_type len) in unichar_isascii() argument
496 if (u) in unichar_isascii()
497 len = (rc_uint_type) unichar_len (u); in unichar_isascii()
503 if ((u[i] & 0xff80) != 0) in unichar_isascii()
509 unicode_print_quoted (FILE *e, const unichar *u, rc_uint_type len) in unicode_print_quoted() argument
511 if (! unichar_isascii (u, len)) in unicode_print_quoted()
514 unicode_print (e, u, len); in unicode_print_quoted()
667 unicode_from_codepage (rc_uint_type *length, unichar **u, const char *src, rc_uint_type cp) in unicode_from_codepage() argument
[all …]
Dresrc.c107 } u; member
697 r->u.acc = data; in define_accelerator()
738 r->u.data.length = s.st_size - BITMAP_SKIP; in define_bitmap()
739 r->u.data.data = data; in define_bitmap()
784 icondirs[i].u.cursor.xhotspot = get_word (e, real_filename); in define_cursor()
785 icondirs[i].u.cursor.yhotspot = get_word (e, real_filename); in define_cursor()
812 c->xhotspot = icondirs[i].u.cursor.xhotspot; in define_cursor()
813 c->yhotspot = icondirs[i].u.cursor.yhotspot; in define_cursor()
820 name.u.id = cursors; in define_cursor()
825 r->u.cursor = c; in define_cursor()
[all …]
Dcoffgrok.c202 struct internal_syment *sym = &rawsyms[i].u.syment; in do_where()
216 where->bitsize = rawsyms[i + 1].u.auxent.x_sym.x_misc.x_lnsz.x_size; in do_where()
272 if (rawsyms + i == ((coff_symbol_type *) (&(s->lineno[l].u.sym[0])))->native) in do_lines()
278 int start_line = rawsyms[i + 3].u.auxent.x_sym.x_misc.x_lnsz.x_lnno; in do_lines()
290 res->addresses[0] = rawsyms[i].u.syment.n_value - s->vma; in do_lines()
294 res->addresses[c + 1] = s->lineno[l + c].u.offset; in do_lines()
308 struct internal_syment *sym = &rawsyms[i].u.syment; in do_type()
309 union internal_auxent *aux = &rawsyms[i + 1].u.auxent; in do_type()
317 res->u.basic = type & 0xf; in do_type()
335 res->u.basic = T_UINT; in do_type()
[all …]
/toolchain/binutils/binutils-2.25/bfd/
Dcoffgen.c772 if (s->u.syment.n_sclass == C_FILE) in coff_renumber_symbols()
776 last_file = &(s->u.syment); in coff_renumber_symbols()
781 fixup_symbol_value (bfd_ptr, coff_symbol_ptr, &(s->u.syment)); in coff_renumber_symbols()
783 for (i = 0; i < s->u.syment.n_numaux + 1; i++) in coff_renumber_symbols()
820 s->u.syment.n_value = in coff_mangle_symbols()
822 ((bfd_hostptr_t) s->u.syment.n_value))->offset; in coff_mangle_symbols()
830 s->u.syment.n_value = in coff_mangle_symbols()
832 + s->u.syment.n_value * bfd_coff_linesz (bfd_ptr)); in coff_mangle_symbols()
837 for (i = 0; i < s->u.syment.n_numaux; i++) in coff_mangle_symbols()
844 a->u.auxent.x_sym.x_tagndx.l = in coff_mangle_symbols()
[all …]
Dtrad-core.c58 struct user u; member
61 #define core_upage(bfd) (&((bfd)->tdata.trad_core_data->u))
78 struct user u; in trad_unix_core_file_p() local
89 val = bfd_bread ((void *) &u, (bfd_size_type) sizeof u, abfd); in trad_unix_core_file_p()
90 if (val != sizeof u) in trad_unix_core_file_p()
98 if (u.u_dsize > 0x1000000) /* Remember, it's in pages... */ in trad_unix_core_file_p()
103 if (u.u_ssize > 0x1000000) in trad_unix_core_file_p()
116 if ((ufile_ptr) NBPG * (UPAGES + u.u_dsize in trad_unix_core_file_p()
118 - u.u_tsize in trad_unix_core_file_p()
120 + u.u_ssize) in trad_unix_core_file_p()
[all …]
Dptrace-core.c41 struct ptrace_user u; member
44 #define core_upage(bfd) (&((bfd)->tdata.trad_core_data->u))
62 struct ptrace_user u; in ptrace_unix_core_file_p() local
67 val = bfd_bread ((void *)&u, (bfd_size_type) sizeof u, abfd); in ptrace_unix_core_file_p()
68 if (val != sizeof u || u.pt_magic != _BCS_PTRACE_MAGIC in ptrace_unix_core_file_p()
69 || u.pt_rev != _BCS_PTRACE_REV) in ptrace_unix_core_file_p()
88 rawptr->u = u; /*Copy the uarea into the tdata part of the bfd */ in ptrace_unix_core_file_p()
110 core_datasec (abfd)->size = u.pt_dsize; in ptrace_unix_core_file_p()
111 core_stacksec (abfd)->size = u.pt_ssize; in ptrace_unix_core_file_p()
112 core_regsec (abfd)->size = sizeof (u); in ptrace_unix_core_file_p()
[all …]
Delf32-mep.c210 *cache = (h->u.def.value in mep_lookup_global()
211 + h->u.def.section->output_section->vma in mep_lookup_global()
212 + h->u.def.section->output_offset); in mep_lookup_global()
239 unsigned long u; in mep_final_link_relocate() local
278 u = (unsigned long) s; in mep_final_link_relocate()
285 if (u > 255) r = bfd_reloc_overflow; in mep_final_link_relocate()
286 byte[0] = (u & 0xff); in mep_final_link_relocate()
289 if (u > 65535) r = bfd_reloc_overflow; in mep_final_link_relocate()
290 byte[0^e2] = ((u >> 8) & 0xff); in mep_final_link_relocate()
291 byte[1^e2] = (u & 0xff); in mep_final_link_relocate()
[all …]
Dsco5-core.c41 struct user u; member
83 || bfd_bread ((void *) &rawptr->u, (bfd_size_type) sizeof rawptr->u, in read_uarea()
84 abfd) != sizeof rawptr->u) in read_uarea()
91 if (rawptr->u.u_dsize > 0x1000000) /* Remember, it's in pages... */ in read_uarea()
96 if (rawptr->u.u_ssize > 0x1000000) in read_uarea()
101 return &rawptr->u; in read_uarea()
109 struct user *u; in sco5_core_file_p() local
150 u = read_uarea (abfd, coffsets.u_user); in sco5_core_file_p()
151 if (! u) in sco5_core_file_p()
156 0 - (bfd_vma) u->u_ar0, in sco5_core_file_p()
[all …]
Dlinker.c514 ret = ret->u.i.link; in bfd_link_hash_lookup()
662 if (!(*func) (p->type == bfd_link_hash_warning ? p->u.i.link : p, info)) in bfd_link_hash_traverse()
675 BFD_ASSERT (h->u.undef.next == NULL); in bfd_link_add_undef()
677 table->undefs_tail->u.undef.next = h; in bfd_link_add_undef()
703 *pun = h->u.undef.next; in bfd_link_repair_undef_list()
704 h->u.undef.next = NULL; in bfd_link_repair_undef_list()
713 ((char *) pun - ((char *) &h->u.undef.next - (char *) h)); in bfd_link_repair_undef_list()
718 pun = &h->u.undef.next; in bfd_link_repair_undef_list()
1125 && h->u.undef.abfd == NULL)) in generic_link_check_archive_element()
1155 symbfd = h->u.undef.abfd; in generic_link_check_archive_element()
[all …]
Dhppabsd-core.c97 struct user u; in hppabsd_core_core_file_p() local
103 val = bfd_bread ((void *) &u, (bfd_size_type) sizeof u, abfd); in hppabsd_core_core_file_p()
104 if (val != sizeof u) in hppabsd_core_core_file_p()
113 clicksz = u.u_pcb.pcb_pgsz; in hppabsd_core_core_file_p()
131 if (NBPG * (UPAGES + u.u_dsize + u.u_ssize) > statbuf.st_size) in hppabsd_core_core_file_p()
136 if (clicksz * (UPAGES + u.u_dsize + u.u_ssize) < statbuf.st_size) in hppabsd_core_core_file_p()
158 clicksz * u.u_ssize, in hppabsd_core_core_file_p()
160 + clicksz * u.u_dsize, 2); in hppabsd_core_core_file_p()
168 clicksz * u.u_dsize, in hppabsd_core_core_file_p()
182 strncpy (core_command (abfd), u.u_comm, MAXCOMLEN + 1); in hppabsd_core_core_file_p()
[all …]
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-frv/
Dtls-3.s2 .weak u
5 call #gettlsoff(u)
7 sethi.p #gottlsdeschi(u), gr14
8 setlo #gottlsdesclo(u), gr14
9 ldd #tlsdesc(u)@(gr15, gr14), gr8
10 calll #gettlsoff(u)@(gr8, gr0)
12 lddi.p @(gr15, #gottlsdesc12(u)), gr8
13 setlos #gottlsdesclo(u), gr14
14 calll #gettlsoff(u)@(gr8, gr0)
16 ldi @(gr15, #gottlsoff12(u)), gr9
[all …]
/toolchain/binutils/binutils-2.25/cpu/
Dmep-core.cpu131 (unit u-exec "execution unit" ()
136 (unit u-branch "Branch Unit" ()
145 (unit u-multiply "Multiply Unit" ()
154 (unit u-divide "Divide Unit" ()
163 (unit u-stcb "stcb Unit" ()
172 (unit u-ldcb "ldcb Unit" ()
181 (unit u-load-gpr "Load into GPR Unit" ()
189 (unit u-ldcb-gpr "Ldcb into GPR Unit" ()
198 (unit u-mul-gpr "Multiply into GPR Unit" ()
207 (unit u-use-gpr "Use GPR Unit" ()
[all …]
Dfrv.cpu72 (unit u-exec "Execution Unit" ()
109 (unit u-exec "Execution Unit" ()
117 (unit u-integer "Integer Unit" ()
125 (unit u-imul "Integer Multiplication Unit" ()
133 (unit u-idiv "Integer Division Unit" ()
141 (unit u-branch "Branch Unit" ()
150 (unit u-trap "Trap Unit" ()
159 (unit u-check "Check Unit" ()
167 (unit u-float-arith "Float Arithmetic unit" ()
176 (unit u-float-dual-arith "Float Arithmetic unit" ()
[all …]
Dmep-c5.cpu39 ((mep (unit u-use-gpr (in usereg rn))
40 (unit u-use-gpr (in usereg rma))
41 (unit u-exec)
42 (unit u-stcb))))
48 ((mep (unit u-use-gpr (in usereg rma))
49 (unit u-ldcb)
50 (unit u-exec)
51 (unit u-ldcb-gpr (out loadreg rn)))))
59 ((mep (unit u-use-gpr (in usereg rma))
60 (unit u-exec))))
[all …]
Dm32r.cpu240 (unit u-exec "Execution Unit" ()
247 (unit u-cmp "Compare Unit" ()
254 (unit u-mac "Multiply/Accumulate Unit" ()
261 (unit u-cti "Branch Unit" ()
268 (unit u-load "Memory Load Unit" ()
277 (unit u-store "Memory Store Unit" ()
290 (unit u-exec "Execution Unit" ()
306 (unit u-exec "Execution Unit" ()
313 (unit u-cmp "Compare Unit" ()
320 (unit u-mac "Multiply/Accumulate Unit" ()
[all …]
/toolchain/binutils/binutils-2.25/gold/po/
Dvi.po28 msgstr "%s: không có bảng ký hiệu kho lưu (hãy chạy ranlib)"
33 msgstr "%s: tên bảng ký hiệu kho lưu sai"
38 msgstr "%s: sai dạng phần đầu kho lưu tại %zu"
43 msgstr "%s: sai dạng kích cỡ phần đầu kho lưu tại %zu"
48 msgstr "%s: sai dạng tên phần đầu kho lưu tại %zu"
58 msgstr "%s: mục nhập tên mở rộng sai tại phần đầu %zu"
63 msgstr "%s: phần đầu kho lưu ngắn tại %zu"
72 msgid "%s: archive libraries: %u\n"
73 msgstr "%s: thư viện kho lưu : %u\n"
77 msgid "%s: total archive members: %u\n"
[all …]
Did.po65 msgid "%s: archive libraries: %u\n"
66 msgstr "%s: kumpulan perpustakaan: %u\n"
70 msgid "%s: total archive members: %u\n"
71 msgstr "%s: jumlah total kumpulan: %u\n"
75 msgid "%s: loaded archive members: %u\n"
76 msgstr "%s: dimuat anggota kumpulan: %u\n"
117 msgid "unexpected duplicate type %u section: %u, %u"
118 msgstr "tidak terduga duplikasi daerah tipe %u: %u, %u"
122 msgid "unexpected link in section %u header: %u != %u"
123 msgstr "tidak terduga sambungan dalam daerah %u kepala: %u != %u"
[all …]
/toolchain/binutils/binutils-2.25/ld/
Dldwrite.c64 link_order->u.data.contents = (bfd_byte *) xmalloc (QUAD_SIZE); in build_link_order()
146 link_order->u.data.contents); in build_link_order()
158 (link_order->u.data.contents in build_link_order()
161 (link_order->u.data.contents in build_link_order()
168 link_order->u.data.contents); in build_link_order()
173 link_order->u.data.contents); in build_link_order()
178 link_order->u.data.contents); in build_link_order()
184 link_order->u.data.size = link_order->size; in build_link_order()
211 link_order->u.reloc.p = (struct bfd_link_order_reloc *) in build_link_order()
214 link_order->u.reloc.p->reloc = rs->reloc; in build_link_order()
[all …]
/toolchain/binutils/binutils-2.25/libiberty/
Dsimple-object-xcoff.c70 } u; member
116 } u; member
162 } u; member
237 } u; member
331 u.xcoff64.f_symptr)); in simple_object_xcoff_match()
333 u.xcoff64.f_nsyms)); in simple_object_xcoff_match()
336 u.xcoff64.f_opthdr))); in simple_object_xcoff_match()
343 u.xcoff32.f_symptr)); in simple_object_xcoff_match()
345 u.xcoff32.f_nsyms)); in simple_object_xcoff_match()
348 u.xcoff32.f_opthdr))); in simple_object_xcoff_match()
[all …]
/toolchain/binutils/binutils-2.25/bfd/po/
Dvi.po28 msgstr "%B: Không rõ kiểu phần trong tập tin a.out.adobe: %x\n"
33 msgstr "%s: Đã xuất kiểu định vị lại không hợp lệ: %d"
37 msgstr "%B: Đã nhập kiểu định vị lại không hợp lệ: %d"
51 msgstr "%s: không thể đại diện phân cho ký hiệu \"%s\" trong định dạng tập tin đối tượng a.ou"
59 msgstr "%P: %B: kiểu định vị lại bất thường\n"
108 msgstr "Không có ký hiệu"
116 msgstr "Không còn có tập tin đã lưu trữ nào nữa"
140 msgstr "Ký hiệu cần phần gỡ lỗi mà không tồn tại"
185 msgstr "không đang ánh xạ: dữ liệu=%lx đã ánh xạ=%d\n"
217 msgstr "%B: kiểu định vị lại không rõ hoặc không được hỗ trợ: %d"
[all …]
/toolchain/binutils/binutils-2.25/include/
Dlonglong.h208 #define __umulsidi3(u,v) ((UDItype)(USItype)u*(USItype)v) argument
320 #define __umulsidi3(u,v) ((UDItype)(USItype) (u) * (UDItype)(USItype) (v)) argument
326 #define umul_ppmm(w1, w0, u, v) \ argument
328 UDItype __x = __umulsidi3 (u, v); \
360 #define umul_ppmm(w1, w0, u, v) \ argument
369 : "x" ((USItype) (u)), \
467 #define umul_ppmm(w1, w0, u, v) \ argument
471 : "%0" ((USItype) (u)), \
503 #define umul_ppmm(w1, w0, u, v) \ argument
507 : "%0" ((UDItype) (u)), \
[all …]
/toolchain/binutils/binutils-2.25/gas/
Ddw2gencfi.c397 insn_ptr->u.r = regno; in cfi_add_CFA_insn_reg()
406 insn_ptr->u.i = offset; in cfi_add_CFA_insn_offset()
415 insn_ptr->u.rr.reg1 = reg1; in cfi_add_CFA_insn_reg_reg()
416 insn_ptr->u.rr.reg2 = reg2; in cfi_add_CFA_insn_reg_reg()
425 insn_ptr->u.ri.reg = regno; in cfi_add_CFA_insn_reg_offset()
426 insn_ptr->u.ri.offset = offset; in cfi_add_CFA_insn_reg_offset()
437 insn->u.ll.lab1 = frchain_now->frch_cfi_data->last_address; in cfi_add_advance_loc()
438 insn->u.ll.lab2 = label; in cfi_add_advance_loc()
806 insn->u.esc = head; in dot_cfi_escape()
976 insn_ptr->u.ea.reg = cfi_parse_reg (); in dot_cfi_val_encoded_addr()
[all …]
/toolchain/binutils/binutils-2.25/binutils/po/
Dvi.po38 msgstr " Không ghi rõ địa chỉ trên dòng lệnh thì đọc từ đầu vào tiêu chuẩn\n"
63 " -j --section=<tên>\tĐọc các hiệu tương đối với phần thay cho địa chỉ\n"
114 msgstr "không rõ kiểu dáng tháo gõ \"%s\""
163 msgid " r[ab][f][u] - replace existing or insert new file(s) into the archive\n"
164 msgstr " r[ab][f][u] • thay thế tập tin đã có, hoặc chèn tập tin mới vào kho\n"
223 msgid " [u] - only replace files that are newer than current archive contents\n"
224 msgstr " [u] • thay thế chỉ những tập tin mới hơn nội dung của kho hiện thời\n"
234 msgstr " [c] • đừng cảnh báo nếu thư viện phải được tạo\n"
244 msgstr " [S] • đừng xây dựng bảng ký hiệu\n"
249 msgstr " [T] • tạo một kho lưu mảnh\n"
[all …]
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/cr16/
Dcinv_test.s5 # cin [i/i,u/d/d,u/d,i/d,i,u]
8 cinv [i,u]
10 cinv [d,u]
12 cinv [d,i,u]

12345678910>>...20