Home
last modified time | relevance | path

Searched refs:fix (Results 1 – 25 of 1887) sorted by relevance

12345678910>>...76

/netbsd-src/external/gpl3/binutils.old/dist/gas/config/
H A Dtc-wasm32.h40 extern int wasm32_force_relocation (struct fix *);
41 #define TC_FORCE_RELOCATION(fix) wasm32_force_relocation (fix) argument
42 #define TC_FORCE_RELOCATION_LOCAL(fix) 1 argument
43 #define TC_FORCE_RELOCATION_SUB_SAME(fix,seg) wasm32_force_relocation (fix) argument
44 #define TC_FORCE_RELOCATION_SUB_ABS(fix,seg) wasm32_force_relocation (fix) argument
45 #define TC_FORCE_RELOCATION_SUB_LOCAL(fix,seg) wasm32_force_relocation (fix) argument
46 #define TC_VALIDATE_FIX_SUB(fix,seg) wasm32_force_relocation (fix) argument
81 extern bool wasm32_fix_adjustable (struct fix *);
H A Dtc-xtensa.h24 struct fix;
277 struct fix *jump_around_fix;
327 extern void xtensa_init_fix_data (struct fix *);
329 extern int xtensa_force_relocation (struct fix *);
330 extern int xtensa_validate_fix_sub (struct fix *);
336 extern bool xtensa_fix_adjustable (struct fix *);
360 #define TC_FORCE_RELOCATION(fix) xtensa_force_relocation (fix) argument
361 #define TC_FORCE_RELOCATION_SUB_SAME(fix, seg) \ argument
362 (GENERIC_FORCE_RELOCATION_SUB_SAME (fix, seg) \
363 || xtensa_force_relocation (fix))
[all …]
H A Dtc-pru.h54 extern int pru_fix_adjustable (struct fix *);
98 #define TC_FORCE_RELOCATION(fix) pru_force_relocation (fix) argument
99 #define TC_FORCE_RELOCATION_SUB_SAME(fix, seg) \ argument
100 (GENERIC_FORCE_RELOCATION_SUB_SAME (fix, seg) || pru_force_relocation (fix))
101 extern int pru_force_relocation (struct fix *);
136 #define TC_VALIDATE_FIX_SUB(fix, seg) pru_validate_fix_sub (fix) argument
137 extern int pru_validate_fix_sub (struct fix *);
H A Dtc-ft32.h47 #define TC_FORCE_RELOCATION(fix) ft32_force_relocation (fix) argument
48 #define TC_FORCE_RELOCATION_SUB_SAME(fix, seg) \ argument
49 (! SEG_NORMAL (seg) || ft32_force_relocation (fix))
50 extern int ft32_force_relocation (struct fix *);
58 #define TC_VALIDATE_FIX_SUB(fix, seg) ft32_validate_fix_sub (fix) argument
59 extern int ft32_validate_fix_sub (struct fix *);
H A Dtc-avr.h124 #define TC_FORCE_RELOCATION(fix) avr_force_relocation (fix) argument
125 #define TC_FORCE_RELOCATION_SUB_SAME(fix, seg) \ argument
126 (GENERIC_FORCE_RELOCATION_SUB_SAME (fix, seg) \
127 || avr_force_relocation (fix))
128 extern int avr_force_relocation (struct fix *);
189 #define TC_VALIDATE_FIX_SUB(fix, seg) avr_validate_fix_sub (fix) argument
190 extern int avr_validate_fix_sub (struct fix *);
252 extern bool avr_fix_adjustable (struct fix *);
H A Dtc-d10v.c58 struct d10v_fixup fix[MAX_INSN_FIXUPS]; member
490 fixS *fix) in d10v_insert_operand() argument
502 as_bad_where (fix->fx_file, fix->fx_line, in d10v_insert_operand()
555 fixups->fix[fixups->fc].reloc = BFD_RELOC_D10V_18; in build_insn()
567 fixups->fix[fixups->fc].reloc = in build_insn()
572 && (fixups->fix[fixups->fc].reloc == 0)) in build_insn()
576 if (fixups->fix[fixups->fc].reloc == BFD_RELOC_16 || in build_insn()
577 fixups->fix[fixups->fc].reloc == BFD_RELOC_D10V_18) in build_insn()
578 fixups->fix[fixups->fc].size = 2; in build_insn()
580 fixups->fix[fixups->fc].size = 4; in build_insn()
[all …]
H A Dobj-macho.h113 struct fix;
115 extern int obj_mach_o_force_reloc (struct fix *fix);
116 extern int obj_mach_o_force_reloc_sub_same (struct fix *fix, segT seg);
117 extern int obj_mach_o_force_reloc_sub_local (struct fix *fix, segT seg);
H A Dtc-nds32.h83 extern long nds32_pcrel_from_section (struct fix *, segT);
84 extern bool nds32_fix_adjustable (struct fix *);
89 extern int nds32_validate_fix_sub (struct fix *, segT);
90 extern int nds32_force_relocation (struct fix *);
98 #define MD_PCREL_FROM_SECTION(fix, sect) nds32_pcrel_from_section (fix, sect) argument
110 #define TC_FORCE_RELOCATION(fix) nds32_force_relocation (fix) argument
120 #define TC_FIX_TYPE struct fix *
187 struct fix *fixup;
H A Dtc-ip2k.c329 ip2k_force_relocation (fixS * fix) in ip2k_force_relocation() argument
331 switch (fix->fx_r_type) in ip2k_force_relocation()
348 if (fix->fx_subsy && S_IS_DEFINED (fix->fx_subsy) in ip2k_force_relocation()
349 && fix->fx_addsy && S_IS_DEFINED (fix->fx_addsy) in ip2k_force_relocation()
350 && (S_GET_SEGMENT (fix->fx_addsy)->flags & SEC_CODE)) in ip2k_force_relocation()
352 fix->fx_r_type = BFD_RELOC_IP2K_TEXT; in ip2k_force_relocation()
361 return generic_force_reloc (fix); in ip2k_force_relocation()
H A Dtc-xgate.h24 struct fix;
97 #define TC_FORCE_RELOCATION(fix) tc_xgate_force_relocation (fix) argument
98 extern int tc_xgate_force_relocation (struct fix *);
101 extern int tc_xgate_fix_adjustable (struct fix *);
/netbsd-src/external/gpl3/binutils/dist/gas/config/
H A Dtc-wasm32.h40 extern int wasm32_force_relocation (struct fix *);
41 #define TC_FORCE_RELOCATION(fix) wasm32_force_relocation (fix) argument
42 #define TC_FORCE_RELOCATION_LOCAL(fix) 1 argument
43 #define TC_FORCE_RELOCATION_SUB_SAME(fix,seg) wasm32_force_relocation (fix) argument
44 #define TC_FORCE_RELOCATION_SUB_ABS(fix,seg) wasm32_force_relocation (fix) argument
45 #define TC_FORCE_RELOCATION_SUB_LOCAL(fix,seg) wasm32_force_relocation (fix) argument
46 #define TC_VALIDATE_FIX_SUB(fix,seg) wasm32_force_relocation (fix) argument
81 extern bool wasm32_fix_adjustable (struct fix *);
H A Dtc-xtensa.h24 struct fix;
277 struct fix *jump_around_fix;
327 extern void xtensa_init_fix_data (struct fix *);
329 extern int xtensa_force_relocation (struct fix *);
330 extern int xtensa_validate_fix_sub (struct fix *);
336 extern bool xtensa_fix_adjustable (struct fix *);
360 #define TC_FORCE_RELOCATION(fix) xtensa_force_relocation (fix) argument
361 #define TC_FORCE_RELOCATION_SUB_SAME(fix, seg) \ argument
362 (GENERIC_FORCE_RELOCATION_SUB_SAME (fix, seg) \
363 || xtensa_force_relocation (fix))
[all …]
H A Dtc-pru.h55 extern int pru_fix_adjustable (struct fix *);
99 #define TC_FORCE_RELOCATION(fix) pru_force_relocation (fix) argument
100 #define TC_FORCE_RELOCATION_SUB_SAME(fix, seg) \ argument
101 (GENERIC_FORCE_RELOCATION_SUB_SAME (fix, seg) || pru_force_relocation (fix))
102 extern int pru_force_relocation (struct fix *);
137 #define TC_VALIDATE_FIX_SUB(fix, seg) pru_validate_fix_sub (fix) argument
138 extern int pru_validate_fix_sub (struct fix *);
H A Dtc-ft32.h47 #define TC_FORCE_RELOCATION(fix) ft32_force_relocation (fix) argument
48 #define TC_FORCE_RELOCATION_SUB_SAME(fix, seg) \ argument
49 (! SEG_NORMAL (seg) || ft32_force_relocation (fix))
50 extern int ft32_force_relocation (struct fix *);
58 #define TC_VALIDATE_FIX_SUB(fix, seg) ft32_validate_fix_sub (fix) argument
59 extern int ft32_validate_fix_sub (struct fix *);
H A Dtc-avr.h124 #define TC_FORCE_RELOCATION(fix) avr_force_relocation (fix) argument
125 #define TC_FORCE_RELOCATION_SUB_SAME(fix, seg) \ argument
126 (GENERIC_FORCE_RELOCATION_SUB_SAME (fix, seg) \
127 || avr_force_relocation (fix))
128 extern int avr_force_relocation (struct fix *);
189 #define TC_VALIDATE_FIX_SUB(fix, seg) avr_validate_fix_sub (fix) argument
190 extern int avr_validate_fix_sub (struct fix *);
252 extern bool avr_fix_adjustable (struct fix *);
H A Dobj-macho.h113 struct fix;
115 extern int obj_mach_o_force_reloc (struct fix *fix);
116 extern int obj_mach_o_force_reloc_sub_same (struct fix *fix, segT seg);
117 extern int obj_mach_o_force_reloc_sub_local (struct fix *fix, segT seg);
H A Dtc-d10v.c58 struct d10v_fixup fix[MAX_INSN_FIXUPS]; member
490 fixS *fix) in d10v_insert_operand() argument
502 as_bad_where (fix->fx_file, fix->fx_line, in d10v_insert_operand()
555 fixups->fix[fixups->fc].reloc = BFD_RELOC_D10V_18; in build_insn()
567 fixups->fix[fixups->fc].reloc = in build_insn()
572 && (fixups->fix[fixups->fc].reloc == 0)) in build_insn()
576 if (fixups->fix[fixups->fc].reloc == BFD_RELOC_16 || in build_insn()
577 fixups->fix[fixups->fc].reloc == BFD_RELOC_D10V_18) in build_insn()
578 fixups->fix[fixups->fc].size = 2; in build_insn()
580 fixups->fix[fixups->fc].size = 4; in build_insn()
[all …]
H A Dtc-nds32.h83 extern long nds32_pcrel_from_section (struct fix *, segT);
84 extern bool nds32_fix_adjustable (struct fix *);
89 extern int nds32_validate_fix_sub (struct fix *, segT);
90 extern int nds32_force_relocation (struct fix *);
98 #define MD_PCREL_FROM_SECTION(fix, sect) nds32_pcrel_from_section (fix, sect) argument
110 #define TC_FORCE_RELOCATION(fix) nds32_force_relocation (fix) argument
120 #define TC_FIX_TYPE struct fix *
187 struct fix *fixup;
H A Dtc-ip2k.c329 ip2k_force_relocation (fixS * fix) in ip2k_force_relocation() argument
331 switch (fix->fx_r_type) in ip2k_force_relocation()
348 if (fix->fx_subsy && S_IS_DEFINED (fix->fx_subsy) in ip2k_force_relocation()
349 && fix->fx_addsy && S_IS_DEFINED (fix->fx_addsy) in ip2k_force_relocation()
350 && (S_GET_SEGMENT (fix->fx_addsy)->flags & SEC_CODE)) in ip2k_force_relocation()
352 fix->fx_r_type = BFD_RELOC_IP2K_TEXT; in ip2k_force_relocation()
361 return generic_force_reloc (fix); in ip2k_force_relocation()
/netbsd-src/external/mit/libuv/dist/
H A DChangeLog21 * build: fix kFreeBSD build (James McCoy)
35 * process,iOS: fix build breakage in process.c (Denny C. Dai)
41 * win: fix incompatible-types warning (twosee)
43 * test: fix flaky file watcher test (Ben Noordhuis)
45 * build: fix AIX xlc autotools build (V-for-Vasili)
47 * unix,win: fix UV_RUN_ONCE + uv_idle_stop loop hang (Ben Noordhuis)
49 * win: fix unexpected ECONNRESET error on TCP socket (twosee)
73 * doc: fix link to uvwget example main() function (blogdaren)
79 * win,pipe: fix bugs with pipe resource lifetime management (Jameson Nash)
87 * darwin: fix atomic-ops.h ppc64 build (Sergey Fedorov)
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/regex/internal/
H A Dparser.d207 canFind!(fix => ir[fix].code == IR.GroupStart && ir[fix].data == n)(); in isOpenGroup()
326 void fixLookaround(uint fix) in fixLookaround()
329 ir[fix] = Bytecode(ir[fix].code, in fixLookaround()
330 cast(uint) ir.length - fix - IRL!(IR.LookaheadStart)); in fixLookaround()
333 ir[fix+1] = Bytecode.fromRaw(groupStack.top); in fixLookaround()
335 ir[fix+2] = Bytecode.fromRaw(groupStack.top+g); in fixLookaround()
337 if (ir[fix].code == IR.LookbehindStart || ir[fix].code == IR.NeglookbehindStart) in fixLookaround()
339 reverseBytecode(ir[fix + IRL!(IR.LookbehindStart) .. $]); in fixLookaround()
341 put(ir[fix].paired); in fixLookaround()
426 uint fix = fixupStack.top; in fixAlternation() local
[all …]
/netbsd-src/libexec/httpd/
H A DCHANGES8 o fix memory leaks. from shm.
9 o fix reading 2 bytes beyond '%', possibly not mapped. from shm.
12 o fix default return value of bozo_set_defaults(), PR#54785.
30 o fix a denial of service attack against initial request contents,
36 .lzo, .7z, .lzo, .cab, .dmg, .jar, and .rar. should fix
41 o fix various NULL derefs from malformed headers. mostly from
43 o fix memory leaks in library interface: add bozo_cleanup().
48 o fix array size botch (assertion, not exploitable.) from
60 o fix SSL shutdown sequence. from spz@netbsd.org.
70 o fix CGI '+' parameter handling, some error checking, and a double
[all …]
/netbsd-src/external/gpl3/gcc/dist/fixincludes/
H A Dinclhack.def30 fix = {
72 fix = {
109 fix = {
201 fix = {
227 fix = {
268 fix = {
305 fix = {
348 fix = {
363 * declaration on Sun OS 4.x. We must only fix this on Sun OS 4.x, because
368 fix = {
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/fixincludes/
H A Dinclhack.def30 fix = {
72 fix = {
109 fix = {
201 fix = {
227 fix = {
268 fix = {
305 fix = {
348 fix = {
363 * declaration on Sun OS 4.x. We must only fix this on Sun OS 4.x, because
368 fix = {
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/internal/
H A Dparser.d288 canFind!(fix => ir[fix].code == IR.GroupStart && ir[fix].data == n)(); in isOpenGroup()
407 void fixLookaround(uint fix) in fixLookaround()
410 ir[fix] = Bytecode(ir[fix].code, in fixLookaround()
411 cast(uint) ir.length - fix - IRL!(IR.LookaheadStart)); in fixLookaround()
414 ir[fix+1] = Bytecode.fromRaw(groupStack.top); in fixLookaround()
416 ir[fix+2] = Bytecode.fromRaw(groupStack.top+g); in fixLookaround()
418 if (ir[fix].code == IR.LookbehindStart || ir[fix].code == IR.NeglookbehindStart) in fixLookaround()
420 reverseBytecode(ir[fix + IRL!(IR.LookbehindStart) .. $]); in fixLookaround()
422 put(ir[fix].paired); in fixLookaround()
507 uint fix = fixupStack.top; in fixAlternation() local
[all …]

12345678910>>...76