HomeSort by relevance Sort by last modified time
    Searched refs:Seg (Results 1 - 5 of 5) 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/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)));

Completed in 84 milliseconds