Home
last modified time | relevance | path

Searched refs:Word (Results 1 – 25 of 219) sorted by relevance

123456789

/external/valgrind/include/
Dpub_tool_xarray.h60 Word elemSzB );
73 extern Word VG_(addToXA) ( XArray*, const void* elem );
78 extern Word VG_(addBytesToXA) ( XArray* xao, const void* bytesV, Word nbytes );
90 /*OUT*/Word* first, /*OUT*/Word* last );
101 /*OUT*/Word* first, /*OUT*/Word* last,
105 extern Word VG_(sizeXA) ( const XArray* );
112 extern void VG_(hintSizeXA) ( XArray*, Word);
121 extern void* VG_(indexXA) ( const XArray*, Word );
125 extern void VG_(dropTailXA) ( XArray*, Word );
130 extern void VG_(dropHeadXA) ( XArray*, Word );
[all …]
Dpub_tool_basics.h87 typedef signed long Word; // 32 64 typedef
91 typedef Word SSizeT; // 32 64
97 typedef Word PtrdiffT; // 32 64
106 typedef Word OffT; // 32 64
Dpub_tool_oset.h84 typedef Word (*OSetCmp_t) ( const void* key, const void* elem );
150 extern Word VG_(OSetWord_Size) ( const OSet* os );
301 extern Word VG_(OSetGen_Size) ( const OSet* os );
/external/valgrind/cachegrind/
Dcg_merge.c43 typedef signed long Word; typedef
66 Word (*kCmp)(Word,Word) );
71 Word (*kCmp)(Word,Word) );
75 void deleteFM ( WordFM*, void(*kFin)(Word), void(*vFin)(Word) );
80 void addToFM ( WordFM* fm, Word k, Word v );
83 Bool delFromFM ( WordFM* fm, /*OUT*/Word* oldV, Word key );
86 Bool lookupFM ( WordFM* fm, /*OUT*/Word* valP, Word key );
88 Word sizeFM ( WordFM* fm );
95 Bool nextIterFM ( WordFM* fm, /*OUT*/Word* pKey, /*OUT*/Word* pVal );
106 WordFM* dopyFM ( WordFM* fm, Word(*dopyK)(Word), Word(*dopyV)(Word) );
[all …]
/external/elfutils/src/libelf/
Dabstract.h37 TYPE_NAME (ElfW2(Bits, Ext##Word), e_version) \
41 TYPE_NAME (ElfW2(Bits, Ext##Word), e_flags) \
59 TYPE_NAME (ElfW2(32, Ext##Word), p_type) \
63 TYPE_NAME (ElfW2(32, Ext##Word), p_filesz) \
64 TYPE_NAME (ElfW2(32, Ext##Word), p_memsz) \
65 TYPE_NAME (ElfW2(32, Ext##Word), p_flags) \
66 TYPE_NAME (ElfW2(32, Ext##Word), p_align) \
70 TYPE_NAME (ElfW2(64, Ext##Word), p_type) \
71 TYPE_NAME (ElfW2(64, Ext##Word), p_flags) \
84 TYPE_NAME (ElfW2(32, Ext##Word), sh_name) \
[all …]
/external/valgrind/memcheck/tests/amd64/
Dbt_everything.c14 typedef signed long int Word; typedef
18 ULong btsq_mem ( char* base, Word bitno ) in btsq_mem()
32 ULong btrq_mem ( char* base, Word bitno ) in btrq_mem()
43 ULong btcq_mem ( char* base, Word bitno ) in btcq_mem()
54 ULong btq_mem ( char* base, Word bitno ) in btq_mem()
69 ULong btsl_mem ( char* base, Word bitno ) in btsl_mem()
83 ULong btrl_mem ( char* base, Word bitno ) in btrl_mem()
94 ULong btcl_mem ( char* base, Word bitno ) in btcl_mem()
105 ULong btl_mem ( char* base, Word bitno ) in btl_mem()
121 ULong btsw_mem ( char* base, Word bitno ) in btsw_mem()
[all …]
/external/valgrind/coregrind/
Dm_xarray.c45 Word elemSzB; /* element size in bytes */
47 Word usedsizeE; /* # used elements in arr */
48 Word totsizeE; /* max size of arr, in elements */
56 Word elemSzB ) in VG_()
61 vg_assert( sizeof(Word) == sizeof(void*) ); in VG_()
62 vg_assert( ((Word)(-1)) < ((Word)(0)) ); in VG_()
128 inline void* VG_(indexXA) ( const XArray* xa, Word n ) in VG_()
138 void VG_(hintSizeXA) ( XArray* xa, Word n) in VG_()
160 Word newsz; in ensureSpaceXA()
190 Word VG_(addToXA) ( XArray* xa, const void* elem ) in VG_()
[all …]
Dm_rangemap.c60 static Word find ( const RangeMap* rm, UWord key );
83 Word i = VG_(addToXA)(rm->ranges, &r); in VG_()
106 Word iMin, iMax, i; in VG_()
119 Word i = find(rm, key); in VG_()
126 Word VG_(sizeRangeMap) ( const RangeMap* rm ) in VG_()
133 /*OUT*/UWord* val, const RangeMap* rm, Word ix ) in VG_()
146 Word i; in preen()
161 static Word find ( const RangeMap* rm, UWord key ) in find()
164 Word lo = 0; in find()
165 Word hi = VG_(sizeXA)(ranges); in find()
[all …]
Dm_wordfm.c87 Word (*kCmp)(UWord,UWord);
94 static Bool avl_removeroot_wrk(AvlNode** t, Word(*kCmp)(UWord,UWord));
148 static inline Word cmp_unsigned_Words ( UWord w1, UWord w2 ) { in cmp_unsigned_Words()
164 Word (*kCmp)(UWord,UWord) ) in avl_insert_wrk()
166 Word cmpres; in avl_insert_wrk()
265 Word(*kCmp)(UWord,UWord) ) in avl_remove_wrk()
268 Word cmpres; in avl_remove_wrk()
357 Word(*kCmp)(UWord,UWord) ) in avl_removeroot_wrk()
392 AvlNode* avl_find_node ( AvlNode* t, Word k, Word(*kCmp)(UWord,UWord) ) in avl_find_node()
396 Word cmpresS; in avl_find_node()
[all …]
Dm_stacks.c367 Word delta = (Word)new_SP - (Word)old_SP; in complaints_stack_switch()
392 Word delta = (Word)new_SP - (Word)old_SP; \
Dm_oset.c120 Word nElems; // number of elements in the tree
180 static inline Word fast_cmp(const void* k, const AvlNode* n) in fast_cmp()
197 inline Word slow_cmp(const AvlTree* t, const void* k, const AvlNode* n) in slow_cmp()
386 Word sz = 0; in VG_()
454 static inline Word cmp_key_root(const AvlTree* t, const AvlNode* n) in cmp_key_root()
465 Word cmpres = cmp_key_root(t, n); in avl_insert()
565 Word* node = VG_(OSetGen_AllocNode)(t, sizeof(UWord)); in VG_()
577 Word cmpres; in avl_lookup()
652 Word cmpres = cmp_key_root(t, n); in avl_remove()
866 Word cmpresS; /* signed */ in VG_()
[all …]
Dm_vkiscnums.c47 const HChar* VG_(sysnum_string)(Word sysnum) in VG_()
59 const HChar* VG_(sysnum_string)(Word sysnum) in VG_()
/external/v8/src/compiler/
Dmachine-operator.h153 V(Word, And) \
154 V(Word, Or) \
155 V(Word, Xor) \
156 V(Word, Shl) \
157 V(Word, Shr) \
158 V(Word, Sar) \
159 V(Word, Ror) \
160 V(Word, Equal) \
/external/google-breakpad/src/common/linux/
Delf_core_dump.h52 typedef ElfW(Word) Word; typedef
80 Word GetType() const;
125 const Phdr* GetFirstProgramHeaderOfType(Word type) const;
Delfutils.h52 typedef Elf32_Word Word; typedef
65 typedef Elf64_Word Word; typedef
90 typename ElfClass::Word section_type,
/external/pdfium/fpdfsdk/src/fxedit/
Dfxet_ap.cpp11 CFX_ByteString GetPDFWordString(IFX_Edit_FontMap * pFontMap, FX_INT32 nFontIndex, FX_WORD Word, FX_… in GetPDFWordString() argument
21 Word = SubWord; in GetPDFWordString()
28 dwCharCode = pPDFFont->CharCodeFromUnicode(Word); in GetPDFWordString()
30 dwCharCode = pFontMap->CharCodeFromUnicode(nFontIndex, Word); in GetPDFWordString()
39 pPDFFont->AppendChar(sWord, Word); in GetPDFWordString()
135 sWords << GetPDFWordString(pEdit->GetFontMap(),nCurFontIndex,word.Word,SubWord); in GetEditAppearanceStream()
159 …ream << GetWordRenderString(GetPDFWordString(pEdit->GetFontMap(),nCurFontIndex,word.Word,SubWord)); in GetEditAppearanceStream()
/external/valgrind/helgrind/
Dhg_intercepts.c90 Word _arg1; \
91 assert(sizeof(_ty1F) == sizeof(Word)); \
92 _arg1 = (Word)(_arg1F); \
99 Word _arg1, _arg2; \
100 assert(sizeof(_ty1F) == sizeof(Word)); \
101 assert(sizeof(_ty2F) == sizeof(Word)); \
102 _arg1 = (Word)(_arg1F); \
103 _arg2 = (Word)(_arg2F); \
111 Word _res, _arg1, _arg2; \
112 assert(sizeof(_ty1F) == sizeof(Word)); \
[all …]
/external/valgrind/drd/
Ddrd_clientobj.h123 Word count; // Participant count in a barrier wait.
124 Word pre_iteration; // pre barrier completion count modulo two.
125 Word post_iteration; // post barrier completion count modulo two.
126 Word pre_waiters_left; // number of waiters left for a complete barrier.
127 Word post_waiters_left; // number of waiters left for a complete barrier.
Ddrd_semaphore.h41 const Word pshared,
45 const HChar* name, const Word oflag,
46 const Word mode, const UInt value);
Ddrd_semaphore.c53 Word n; in drd_segment_push()
67 Word sz; in drd_segment_pop()
170 const Word pshared, in DRD_()
248 const HChar* name, const Word oflag, in DRD_()
249 const Word mode, const UInt value) in DRD_()
329 if ((Word)(p->waiters) <= 0) in DRD_()
370 if (p == NULL || (Int)(p->value) < 0 || (Word)(p->waiters) < 0) in DRD_()
/external/valgrind/coregrind/m_debuginfo/
Dtytypes.c72 Word i; in pp_XArray_of_cuOffs()
202 Word i, n; in ML_()
279 Word w; in ML_()
330 Word i; in ML_()
344 Word first, last; in ML_()
413 Word ML_(TyEnt__cmp_by_cuOff_only) ( const TyEnt* te1, const TyEnt* te2 ) in ML_()
423 static inline Word UWord__cmp ( UWord a, UWord b ) { in UWord__cmp()
428 static inline Word Long__cmp ( Long a, Long b ) { in Long__cmp()
433 static inline Word Bool__cmp ( Bool a, Bool b ) { in Bool__cmp()
440 static inline Word UChar__cmp ( UChar a, UChar b ) { in UChar__cmp()
[all …]
Dpriv_tytypes.h90 Word offset; /* or offset from the beginning of containing
93 Word nLoc; /* number of bytes in .pos.loc if >= 0, or -1
162 Word ML_(TyEnt__cmp_by_cuOff_only) ( const TyEnt* te1, const TyEnt* te2 );
166 Word ML_(TyEnt__cmp_by_all_except_cuOff) ( const TyEnt* te1, const TyEnt* te2 );
Dstorage.c351 UInt ML_(fndn_ix) (const DebugInfo* di, Word locno) in ML_()
364 static inline void set_fndn_ix (struct _DebugInfo* di, Word locno, UInt fndn_ix) in set_fndn_ix()
366 Word i; in set_fndn_ix()
982 Word ML_(cmp_for_DiAddrRange_range) ( const void* keyV, in ML_()
1312 Word i, nInThisScope; in canonicaliseVarInfo()
1440 Word cmp; in preferName()
1441 Word vlena, vlenb; /* length without version */ in preferName()
1585 Word n_new_sec = 1; in add_DiSym_names_to_from()
1606 Word i = 0; in add_DiSym_names_to_from()
1632 Word i, j, n_truncated; in canonicaliseSymtab()
[all …]
Ddebuginfo.c210 Word i, j, n; in free_DebugInfo()
406 Word i, j; in do_DebugInfos_overlap()
497 Word i, j; in check_CFSI_related_invariants()
619 Word i, n; in show_DebugInfoMappings()
648 Word i, j, n; in truncate_DebugInfoMapping_overlaps()
1140 Word i; in VG_()
1449 Word i; in ML_()
1477 Word inltab_lopos; // The inlined fn calls covering eip are in
1478 Word inltab_hipos; // di->inltab[inltab_lopos..inltab_hipos].
1484 Word cur_inltab; // inltab pos for call inlined at current level.
[all …]
/external/valgrind/exp-sgcheck/
Dsg_main.c92 static Word cmp_nonempty_intervals ( Addr a1, SizeT n1, in cmp_nonempty_intervals()
160 static Word StackBlock__cmp ( const StackBlock* fb1, const StackBlock* fb2 ) in StackBlock__cmp()
162 Word r; in StackBlock__cmp()
183 r = (Word)VG_(strcmp)(fb1->name, fb2->name); in StackBlock__cmp()
204 static Word StackBlocks__cmp ( XArray* fb1s, XArray* fb2s ) in StackBlocks__cmp()
206 Word i, r, n1, n2; in StackBlocks__cmp()
224 Word i, n = VG_(sizeXA)( sbs ); in pp_StackBlocks()
248 (Word(*)(UWord,UWord))StackBlocks__cmp ); in init_StackBlocks_set()
268 { Word r, w, nEQ, n = VG_(sizeXA)( orig ); in StackBlocks__find_and_dealloc__or_add()
276 Word c = StackBlock__cmp(pR0,pR1); in StackBlocks__find_and_dealloc__or_add()
[all …]

123456789