HomeSort by relevance Sort by last modified time
    Searched refs:fix (Results 26 - 50 of 779) sorted by null

12 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/config/
obj-macho.h 113 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);
tc-xtensa.h 24 struct fix;
320 extern void xtensa_init_fix_data (struct fix *);
322 extern int xtensa_force_relocation (struct fix *);
323 extern int xtensa_validate_fix_sub (struct fix *);
329 extern bfd_boolean xtensa_fix_adjustable (struct fix *);
346 #define TC_FORCE_RELOCATION(fix) xtensa_force_relocation (fix)
347 #define TC_FORCE_RELOCATION_SUB_SAME(fix, seg) \
348 (! SEG_NORMAL (seg) || xtensa_force_relocation (fix))
349 #define TC_VALIDATE_FIX_SUB(fix, seg) xtensa_validate_fix_sub (fix
    [all...]
tc-avr.h 124 #define TC_FORCE_RELOCATION(fix) avr_force_relocation (fix)
125 #define TC_FORCE_RELOCATION_SUB_SAME(fix, seg) \
126 (! SEG_NORMAL (seg) || avr_force_relocation (fix))
127 extern int avr_force_relocation (struct fix *);
130 #define MD_APPLY_SYM_VALUE(FIX) 0
137 #define MD_PCREL_FROM_SECTION(FIX, SEC) md_pcrel_from_section (FIX, SEC)
138 extern long md_pcrel_from_section (struct fix *, segT);
189 #define TC_VALIDATE_FIX_SUB(fix, seg) avr_validate_fix_sub (fix
    [all...]
tc-m68hc11.h 24 struct fix;
90 #define MD_APPLY_SYM_VALUE(FIX) 0
96 #define TC_FORCE_RELOCATION(fix) tc_m68hc11_force_relocation (fix)
97 extern int tc_m68hc11_force_relocation (struct fix *);
100 extern int tc_m68hc11_fix_adjustable (struct fix *);
tc-bfin.h 63 #define tc_fix_adjustable(FIX) bfin_fix_adjustable (FIX)
64 extern bfd_boolean bfin_fix_adjustable (struct fix *);
66 #define TC_FORCE_RELOCATION(FIX) bfin_force_relocation (FIX)
67 extern int bfin_force_relocation (struct fix *);
70 #define MD_PCREL_FROM_SECTION(FIX, SEC) md_pcrel_from_section (FIX, SEC)
71 extern long md_pcrel_from_section (struct fix *, segT);
74 #define MD_APPLY_SYM_VALUE(FIX)
    [all...]
tc-v850.h 37 #define tc_fix_adjustable(FIX) v850_fix_adjustable (FIX)
38 extern bfd_boolean v850_fix_adjustable (struct fix *);
40 #define TC_FORCE_RELOCATION(FIX) v850_force_relocation(FIX)
41 extern int v850_force_relocation (struct fix *);
45 #define MD_APPLY_SYM_VALUE(FIX) 0
76 #define TC_FX_SIZE_SLACK(FIX) 2
78 #define MD_PCREL_FROM_SECTION(FIX, SEC) v850_pcrel_from_section (FIX, SEC
    [all...]
tc-d30v.h 32 struct fix;
33 extern long md_pcrel_from_section (struct fix *, segT);
34 #define MD_PCREL_FROM_SECTION(FIX, SEC) md_pcrel_from_section (FIX, SEC)
61 #define MD_APPLY_SYM_VALUE(FIX) 0
tc-moxie.h 44 #define MD_PCREL_FROM_SECTION(FIX, SEC) md_pcrel_from (FIX)
45 extern long md_pcrel_from (struct fix *);
tc-i860.c 431 fixS *fix; local
432 fix = fix_new_exp (frag_now,
441 fix->fx_addnumber = the_insn.fi[tmp].fup;
1195 obtain_reloc_for_imm16 (fixS *fix, long *val)
1197 valueT fup = fix->fx_addnumber;
1200 if (fix->fx_pcrel)
1205 as_bad_where (fix->fx_file, fix->fx_line,
1208 as_bad_where (fix->fx_file, fix->fx_line
1467 int fix = bytes & 3; local
    [all...]
obj-evax.h 38 struct fix;
47 struct fix *fixp;
  /prebuilts/go/darwin-x86/src/cmd/go/internal/fix/
fix.go 5 // Package fix implements the ``go fix'' command.
6 package fix package
17 UsageLine: "fix [packages]",
20 Fix runs the Go fix command on the packages named by the import paths.
22 For more about fix, see 'go doc cmd/fix'.
25 To run fix with specific options, run 'go tool fix'
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/internal/fix/
fix.go 5 // Package fix implements the ``go fix'' command.
6 package fix package
17 UsageLine: "fix [packages]",
20 Fix runs the Go fix command on the packages named by the import paths.
22 For more about fix, see 'go doc cmd/fix'.
25 To run fix with specific options, run 'go tool fix'
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_fpformat.py 8 fix, sci, NotANumber = fpformat.fix, fpformat.sci, fpformat.NotANumber
14 # (It's obsolescent because fix(n,d) == "%.*f"%(d,n) and
24 result = fix(n, digits)
45 self.assertEqual(fix(100.0/3, 3), '33.333')
57 self.assertEqual(fix(1.0, 1000), '1.'+('0'*1000))
60 # This behavior is inconsistent. sci raises an exception; fix doesn't.
62 self.assertEqual(fix(yacht, 10), yacht)
  /external/annotation-tools/asmx/src/org/objectweb/asm/optimizer/
NameMapping.java 74 public String fix(final String desc) { method in class:NameMapping
79 arguments[i] = fix(arguments[i]);
81 result = fix(result);
84 return fix(Type.getType(desc)).getDescriptor();
88 private Type fix(final Type t) { method in class:NameMapping
92 String s = fix(t.getElementType()).getDescriptor();
  /external/python/cpython2/Lib/test/
test_fpformat.py 8 fix, sci, NotANumber = fpformat.fix, fpformat.sci, fpformat.NotANumber
14 # (It's obsolescent because fix(n,d) == "%.*f"%(d,n) and
24 result = fix(n, digits)
45 self.assertEqual(fix(100.0/3, 3), '33.333')
57 self.assertEqual(fix(1.0, 1000), '1.'+('0'*1000))
60 # This behavior is inconsistent. sci raises an exception; fix doesn't.
62 self.assertEqual(fix(yacht, 10), yacht)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_fpformat.py 8 fix, sci, NotANumber = fpformat.fix, fpformat.sci, fpformat.NotANumber
14 # (It's obsolescent because fix(n,d) == "%.*f"%(d,n) and
24 result = fix(n, digits)
45 self.assertEqual(fix(100.0/3, 3), '33.333')
57 self.assertEqual(fix(1.0, 1000), '1.'+('0'*1000))
60 # This behavior is inconsistent. sci raises an exception; fix doesn't.
62 self.assertEqual(fix(yacht, 10), yacht)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_fpformat.py 8 fix, sci, NotANumber = fpformat.fix, fpformat.sci, fpformat.NotANumber
14 # (It's obsolescent because fix(n,d) == "%.*f"%(d,n) and
24 result = fix(n, digits)
45 self.assertEqual(fix(100.0/3, 3), '33.333')
57 self.assertEqual(fix(1.0, 1000), '1.'+('0'*1000))
60 # This behavior is inconsistent. sci raises an exception; fix doesn't.
62 self.assertEqual(fix(yacht, 10), yacht)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_fpformat.py 8 fix, sci, NotANumber = fpformat.fix, fpformat.sci, fpformat.NotANumber
14 # (It's obsolescent because fix(n,d) == "%.*f"%(d,n) and
24 result = fix(n, digits)
45 self.assertEqual(fix(100.0/3, 3), '33.333')
57 self.assertEqual(fix(1.0, 1000), '1.'+('0'*1000))
60 # This behavior is inconsistent. sci raises an exception; fix doesn't.
62 self.assertEqual(fix(yacht, 10), yacht)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_fpformat.py 8 fix, sci, NotANumber = fpformat.fix, fpformat.sci, fpformat.NotANumber
14 # (It's obsolescent because fix(n,d) == "%.*f"%(d,n) and
24 result = fix(n, digits)
45 self.assertEqual(fix(100.0/3, 3), '33.333')
57 self.assertEqual(fix(1.0, 1000), '1.'+('0'*1000))
60 # This behavior is inconsistent. sci raises an exception; fix doesn't.
62 self.assertEqual(fix(yacht, 10), yacht)
  /external/libunwind/src/hppa/
siglongjmp.S 10 #warning fix me
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-arm/
stm32l4xx-cannot-fix-far-ldm.d 1 #source: stm32l4xx-cannot-fix-far-ldm.s
3 #ld:-EL --fix-stm32l4xx-629360 -Ttext=0x80000
stm32l4xx-cannot-fix-it-block.d 1 #source: stm32l4xx-cannot-fix-it-block.s
3 #ld:-EL --fix-stm32l4xx-629360 -Ttext=0x8000
  /external/deqp/scripts/src_util/
check_boms.py 65 def checkBOMs (files, fix):
69 if fix:
79 parser.add_option("-x", "--fix", action="store_true", dest="fix", default=False, help="attempt to fix BOMs")
82 fix = options.fix variable
86 checkBOMs(getFileList(os.path.normpath(dir)), fix
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
prefix1.d 15 0+14 l \.text 0+ pre:fix:c
23 0+ \*UND\* 0+ pre:fix:d
34 0+14 R_MMIX_32 pre:fix:d
  /build/kati/testcase/
find_command_sorted.mk 1 # TODO(ninja): This test is only for ckati. ninja: fix $(sort $(shell $(1)))

Completed in 521 milliseconds

12 3 4 5 6 7 8 91011>>