HomeSort by relevance Sort by last modified time
    Searched defs:sect (Results 51 - 75 of 132) sorted by null

1 23 4 5 6

  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/mtd/
nftl.h 38 int head,sect,cyl; member in struct:NFTLrecord
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/mtd/
nftl.h 38 int head,sect,cyl; member in struct:NFTLrecord
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/mtd/
nftl.h 38 int head,sect,cyl; member in struct:NFTLrecord
  /external/oprofile/libutil++/
bfd_support.cpp 81 asection * sect; local
84 sect = bfd_get_section_by_name(ibfd, ".gnu_debuglink");
86 if (sect == NULL)
89 bfd_size_type debuglink_size = bfd_section_size(ibfd, sect);
94 if (!bfd_get_section_contents(ibfd, sect,
413 for (asection const * sect = abfd->sections; sect; sect = sect->next) {
414 if (sect->flags & SEC_DEBUGGING
    [all...]
op_bfd.cpp 115 asection const * sect; local
160 for (sect = ibfd.abfd->sections; sect; sect = sect->next) {
161 if (sect->flags & SEC_CODE) {
162 if (filepos_map[sect->name] != 0) {
163 cerr << "Found section \"" << sect->name
169 filepos_map[sect->name] = sect->filepos
303 asection const * sect = ibfd.abfd->sections; local
    [all...]
  /frameworks/compile/mclinker/lib/Object/
ObjectLinker.cpp 244 LDContext::sect_iterator sect, sectEnd = (*obj)->context()->sectEnd(); local
245 for (sect = (*obj)->context()->sectBegin(); sect != sectEnd; ++sect) {
246 switch ((*sect)->kind()) {
257 if (!m_LDBackend.mergeSection(*m_pModule, **sect)) {
258 error(diag::err_cannot_merge_section) << (*sect)->name()
264 if (!(*sect)->hasEhFrame())
268 if (NULL == (out_sect = builder.MergeSection(**sect))) {
269 error(diag::err_cannot_merge_section) << (*sect)->name(
433 Module::iterator sect, sEnd = m_pModule->end(); local
    [all...]
  /frameworks/compile/mclinker/lib/LD/
ELFObjectWriter.cpp 148 ELFSegment::sect_iterator sect, sectEnd = (*seg).end(); local
149 for (sect = (*seg).begin(); sect != sectEnd; ++sect)
150 writeSection(pOutput, *sect);
155 Module::iterator sect, sectEnd = pModule.end(); local
156 for (sect = pModule.begin(); sect != sectEnd; ++sect)
157 writeSection(pOutput, *sect);
    [all...]
  /external/aac/libAACenc/src/
qc_main.cpp 1487 INT sect, statBitsNew ; local
1530 int sect = sectionToScf[ch][sfbGrp+sfb]; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
expr.c 210 /*@dependent@*/ yasm_section *sect; local
267 (sect = yasm_bc_get_section(precbc2)) &&
268 sect == sect2 &&
    [all...]
section.c 82 static void yasm_section_destroy(/*@only@*/ yasm_section *sect);
400 yasm_section_is_code(yasm_section *sect)
402 return sect->code;
406 yasm_section_get_opt_flags(const yasm_section *sect)
408 return sect->opt_flags;
412 yasm_section_set_opt_flags(yasm_section *sect, unsigned long opt_flags)
414 sect->opt_flags = opt_flags;
418 yasm_section_is_default(const yasm_section *sect)
420 return sect->def;
424 yasm_section_set_default(yasm_section *sect, int def
510 yasm_section *sect; local
1055 yasm_section *sect; local
1285 yasm_section *sect; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/
elf.c 298 entry->sect = NULL;
377 entry->sect = NULL;
516 yasm_section *sect; local
519 (sect = yasm_bc_get_section(precbc)) &&
520 (shead = yasm_section_get_data(sect, &elf_section_data)) &&
541 yasm_section *sect,
550 if (sect) entry->sect = sect;
644 elf_secthead *sect = data local
    [all...]
elf-objfmt.c 67 yasm_section *sect; member in struct:__anon14522
261 yasm_section *sect=NULL; local
293 sect = yasm_bc_get_section(precbc);
306 if (sect &&
307 strcmp(yasm_symrec_get_name(sym), yasm_section_get_name(sect))==0)
333 elf_symtab_set_nonzero(entry, sect, 0, STB_LOCAL,
342 elf_symtab_set_nonzero(entry, sect, 0, 0, 0, NULL, &value);
463 elf_secthead_append_reloc(info->sect, info->shead, reloc);
559 elf_secthead_append_reloc(info->sect, info->shead, reloc);
636 elf_objfmt_output_section(yasm_section *sect, /*@null@*/ void *d
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/
xdf-objfmt.c 85 long parse_scnum; /* sect numbering in parser */
94 yasm_section *sect; member in struct:xdf_objfmt_output_info
209 yasm_section_add_reloc(info->sect, (yasm_reloc *)reloc, yasm_xfree);
283 xdf_objfmt_output_section(yasm_section *sect, /*@null@*/ void *d)
291 xsd = yasm_section_get_data(sect, &xdf_section_data_cb);
299 xsd->size = yasm_bc_next_offset(yasm_section_bcs_last(sect));
308 info->sect = sect;
310 yasm_section_bcs_traverse(sect, info->errwarns, info,
314 if (xsd->size != yasm_bc_next_offset(yasm_section_bcs_last(sect)))
460 \/*@dependent@*\/ \/*@null@*\/ yasm_section *sect; local
    [all...]
  /bionic/libc/kernel/common/linux/
fd.h 26 sect, member in struct:floppy_struct
  /development/ndk/platforms/android-3/include/linux/
fd.h 20 sect, member in struct:floppy_struct
  /external/chromium_org/third_party/skia/src/core/
SkRegion.cpp 462 SkIRect sect; local
463 if (!sect.intersect(fBounds, r)) {
471 const RunType* scanline = fRunHead->findScanline(sect.fTop);
473 if (scanline_intersects(scanline, sect.fLeft, sect.fRight)) {
476 if (sect.fBottom <= scanline_bottom(scanline)) {
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/
cv-symline.c 133 yasm_section *sect; /* section line numbers are for */ member in struct:cv8_lineinfo
134 yasm_symrec *sectsym; /* symbol for beginning of sect */
243 static cv8_symhead *cv8_add_symhead(yasm_section *sect, unsigned long type,
248 (yasm_section *sect, const cv_filename *fn);
254 cv8_add_sym_objname(yasm_section *sect, /*@keep@*/ char *objname)
265 yasm_cv__append_bc(sect, bc);
270 cv8_add_sym_compile(yasm_object *object, yasm_section *sect,
295 yasm_cv__append_bc(sect, bc);
300 cv8_add_sym_label(yasm_section *sect, yasm_symrec *sym)
312 yasm_cv__append_bc(sect, bc)
435 yasm_section *sect = yasm_bc_get_section(bc); local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/
bin-objfmt.c 192 /*@observer@*/ const yasm_section *sect; member in struct:bin_objfmt_output_info
231 bin_lma_create_group(yasm_section *sect, /*@null@*/ void *d)
234 bin_section_data *bsd = yasm_section_get_data(sect, &bin_section_data_cb);
235 unsigned long align = yasm_section_get_align(sect);
242 group->section = sect;
254 yasm_section_get_name(sect),
291 bsd->length = yasm_calc_bc_dist(yasm_section_bcs_first(sect),
292 yasm_section_bcs_last(sect));
299 bin_vma_create_group(yasm_section *sect, /*@null@*/ void *d)
302 bin_section_data *bsd = yasm_section_get_data(sect, &bin_section_data_cb)
496 \/*@dependent@*\/ yasm_section *sect; local
903 \/*@dependent@*\/ yasm_section *sect; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/
rdf-objfmt.c 111 long parse_scnum; /* sect numbering in parser */
123 yasm_section *sect; member in struct:rdf_objfmt_output_info
253 /*@dependent@*/ yasm_section *sect; local
255 sect = yasm_bc_get_section(precbc);
256 csectd = yasm_section_get_data(sect, &rdf_section_data_cb);
271 yasm_section_add_reloc(info->sect, (yasm_reloc *)reloc, yasm_xfree);
339 rdf_objfmt_output_section_mem(yasm_section *sect, /*@null@*/ void *d)
346 rsd = yasm_section_get_data(sect, &rdf_section_data_cb);
349 size = yasm_bc_next_offset(yasm_section_bcs_last(sect));
367 info->sect = sect
526 \/*@dependent@*\/ \/*@null@*\/ yasm_section *sect; local
    [all...]
  /external/kernel-headers/original/linux/
fd.h 15 sect, /* sectors per track */ member in struct:floppy_struct
  /external/llvm/lib/Target/ARM/
ARMAsmPrinter.cpp 621 const MCSection *sect = local
625 OutStreamer.SwitchSection(sect);
627 const MCSection *sect = local
631 OutStreamer.SwitchSection(sect);
    [all...]
  /external/skia/src/core/
SkRegion.cpp 462 SkIRect sect; local
463 if (!sect.intersect(fBounds, r)) {
471 const RunType* scanline = fRunHead->findScanline(sect.fTop);
473 if (scanline_intersects(scanline, sect.fLeft, sect.fRight)) {
476 if (sect.fBottom <= scanline_bottom(scanline)) {
    [all...]
  /external/srec/seti/sltsEngine/src/
run_seq_lts.c 109 unsigned short sect; local
111 sect = bits[iBit/16];
112 if(iVal) { sect |= (1<<(iBit%16)); }
113 else { sect &= ~(1<<(iBit%16)); }
114 bits[ iBit/16] = sect;
    [all...]
  /external/valgrind/main/helgrind/
hg_errors.c 520 VgSectKind sect = VG_(DebugInfo_sect_kind)( NULL, 0, data_addr ); local
522 data_addr, VG_(pp_SectKind)(sect));
524 if (sect == Vg_SectGOTPLT) return;
526 if (sect == Vg_SectPLT) return;
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
fd.h 14 sect, /* sectors per track */ member in struct:floppy_struct

Completed in 2052 milliseconds

1 23 4 5 6