HomeSort by relevance Sort by last modified time
    Searched refs:Seg (Results 1 - 12 of 12) sorted by null

  /external/valgrind/main/exp-sgcheck/
h_main.h 40 #define NONPTR ((Seg*)0xA1)
41 #define UNKNOWN ((Seg*)0xB2)
42 #define BOTTOM ((Seg*)0xC3)
44 static inline Bool is_known_segment(Seg* teg) {
49 void Seg__cmp(Seg* seg, Addr a, Int* cmp, UWord* n);
50 Bool Seg__is_freed(Seg* seg);
51 ExeContext* Seg__where(Seg* seg);
    [all...]
pc_common.h 37 typedef struct _Seg Seg; /* abstract every except in h_main.c */
43 void h_record_heap_error( Addr a, SizeT size, Seg* vseg, Bool is_write );
45 void h_record_arith_error( Seg* seg1, Seg* seg2, HChar* opname );
48 Addr lo, Addr hi, Seg* seglo, Seg* seghi );
h_main.c 103 // Determines if 'a' is before, within, or after seg's range. Sets 'cmp' to
105 void Seg__cmp(Seg* seg, Addr a, Int* cmp, UWord* n)
107 if (a < seg->addr) {
109 *n = seg->addr - a;
110 } else if (a < seg->addr + seg->szB && seg->szB > 0) {
112 *n = a - seg->addr;
115 *n = a - (seg->addr + seg->szB)
193 Seg* seg; local
288 Seg* seg = get_Seg_for_malloc(); local
337 Seg* seg = find_Seg_by_addr( (Addr)p ); local
410 Seg* seg; local
454 Seg* seg = find_Seg_by_addr( (Addr)p ); local
    [all...]
pc_common.c 51 #include "pc_common.h" // self, & Seg
134 Seg* vseg;
141 Seg* seg1;
142 Seg* seg2;
149 Seg* seglo;
150 Seg* seghi;
178 void h_record_heap_error( Addr a, SizeT size, Seg* vseg, Bool is_write )
191 void h_record_arith_error( Seg* seg1, Seg* seg2, HChar* opname )
204 Addr lo, Addr hi, Seg* seglo, Seg* seghi
    [all...]
  /external/llvm/tools/llvm-size/
llvm-size.cpp 132 MachO::segment_command_64 Seg = MachO->getSegment64LoadCommand(Load);
133 outs() << "Segment " << Seg.segname << ": "
134 << format(fmt.str().c_str(), Seg.vmsize);
136 outs() << " (vmaddr 0x" << format("%" PRIx64, Seg.vmaddr) << " fileoff "
137 << Seg.fileoff << ")";
139 total += Seg.vmsize;
141 for (unsigned J = 0; J < Seg.nsects; ++J) {
155 if (Seg.nsects != 0)
158 MachO::segment_command Seg = MachO->getSegmentLoadCommand(Load);
159 outs() << "Segment " << Seg.segname << ":
    [all...]
  /external/llvm/lib/Target/R600/
SIFixSGPRLiveRanges.cpp 101 LiveRange::Segment &Seg = LI.segments[i];
103 Seg.end = Next.start;
  /external/llvm/lib/CodeGen/
LiveInterval.cpp 723 void LiveRangeUpdater::add(LiveRange::Segment Seg) {
727 if (!LastStart.isValid() || LastStart > Seg.start) {
736 LastStart = Seg.start;
738 // Advance ReadI until it ends after Seg.start.
740 if (ReadI != E && ReadI->end <= Seg.start) {
746 ReadI = WriteI = LR->find(Seg.start);
748 while (ReadI != E && ReadI->end <= Seg.start)
752 assert(ReadI == E || ReadI->end > Seg.start);
755 if (ReadI != E && ReadI->start <= Seg.start) {
756 assert(ReadI->valno == Seg.valno && "Cannot overlap different values")
    [all...]
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmsgamma.c 671 cmsCurveSegment Seg[3];
675 Seg[0].x0 = MINUS_INF;
676 Seg[0].x1 = 0;
677 Seg[0].Type = 6;
679 Seg[0].Params[0] = 1;
680 Seg[0].Params[1] = 0;
681 Seg[0].Params[2] = 0;
682 Seg[0].Params[3] = values[0];
683 Seg[0].Params[4] = 0;
686 Seg[1].x0 = 0
    [all...]
  /external/opencv/cvaux/src/
cvsegment.cpp 44 typedef struct Seg
53 Seg;
94 Seg *stack = (Seg*)pStack;
509 CV_CALL( stack = cvAlloc( size.width * size.height * sizeof(Seg)));
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
video.h 453 OUT PUSHORT Seg,
460 IN USHORT Seg,
466 IN USHORT Seg,
474 IN USHORT Seg,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
vdmdbg.h 195 WORD Seg;
  /external/llvm/lib/Target/X86/
X86MCInstLower.cpp 333 MCOperand Seg = Inst.getOperand(AddrBase + X86::AddrSegmentReg);
337 Inst.addOperand(Seg);
647 LEA.addOperand(MCOperand::CreateReg(0)); // seg
655 LEA.addOperand(MCOperand::CreateReg(0)); // seg
663 LEA.addOperand(MCOperand::CreateReg(0)); // seg
    [all...]

Completed in 1222 milliseconds