Searched defs:bfd (Results 1 - 5 of 5) sorted by relevance

/external/oprofile/libopagent/
H A Dbfddefines.c15 #include <bfd.h>
19 bfd * bfd; local
23 bfd = bfd_openr(args[1], NULL);
24 if (bfd == NULL) {
28 r = bfd_check_format(bfd, bfd_object);
34 printf("#define BFD_TARGET_NAME \"%s\"\n", bfd->xvec->name);
35 printf("#define BFD_ARCH %i\n", bfd_get_arch(bfd));
36 printf("#define BFD_MACH %lu\n", bfd_get_mach(bfd));
37 printf("#define BFD_PRINTABLE_NAME \"%s\"\n", bfd_printable_name(bfd));
[all...]
H A Dopagent.c63 #include <bfd.h>
77 bfd * bfd; local
98 bfd = bfd_openr(mypath, NULL);
99 if (bfd == NULL) {
103 r = bfd_check_format(bfd, bfd_object);
108 _bfd_target_name = bfd->xvec->name;
109 _bfd_arch = bfd_get_arch(bfd);
110 _bfd_mach = bfd_get_mach(bfd);
/external/clang/test/SemaCXX/
H A Dcxx0x-deleted-default-ctor.cpp71 bad_field_default bfd; // expected-error {{call to implicitly-deleted default constructor}} variable
/external/oprofile/libpp/
H A Dcallgraph_container.cpp88 // find the nearest bfd symbol for the given file offset and check it's
91 get_symbol_by_filepos(op_bfd const & bfd, u32 bfd_offset, argument
99 upper_bound(bfd.syms.begin(), bfd.syms.end(), tmpsym);
101 if (it != bfd.syms.begin())
104 if (it == bfd.syms.end()) {
116 << " for binary " << bfd.get_filename() << dec << endl;
120 i = distance(bfd.syms.begin(), it);
129 op_bfd const & bfd, u32 boff, image_name_id iid,
131 : pc(p), profile(pr), b(bfd), boffse
128 call_data(profile_container const & p, profile_t const & pr, op_bfd const & bfd, u32 boff, image_name_id iid, image_name_id aid, bool debug_info) argument
[all...]
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmspcs.c487 // bfd - gets BFD(1:1) difference between Lab1, Lab2
491 deltaC,deltah,dc,t,g,dh,rh,rc,rt,bfd; local
532 bfd = sqrt(Sqr(deltaL)+Sqr(deltaC/dc)+Sqr(deltah/dh)+(rt*(deltaC/dc)*(deltah/dh)));
534 return bfd;

Completed in 93 milliseconds