/external/valgrind/main/include/ |
D | pub_tool_xarray.h | 59 Word elemSzB ); 72 extern Word VG_(addToXA) ( XArray*, const void* elem ); 77 extern Word VG_(addBytesToXA) ( XArray* xao, const void* bytesV, Word nbytes ); 89 /*OUT*/Word* first, /*OUT*/Word* last ); 100 /*OUT*/Word* first, /*OUT*/Word* last, 104 extern Word VG_(sizeXA) ( XArray* ); 113 extern void* VG_(indexXA) ( XArray*, Word ); 117 extern void VG_(dropTailXA) ( XArray*, Word ); 122 extern void VG_(dropHeadXA) ( XArray*, Word ); 128 extern void VG_(removeIndexXA)( XArray*, Word ); [all …]
|
/external/valgrind/main/cachegrind/ |
D | cg_merge.c | 43 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/0.153/libelf/ |
D | abstract.h | 58 TYPE_NAME (ElfW2(Bits, Ext##Word), e_version) \ 62 TYPE_NAME (ElfW2(Bits, Ext##Word), e_flags) \ 80 TYPE_NAME (ElfW2(32, Ext##Word), p_type) \ 84 TYPE_NAME (ElfW2(32, Ext##Word), p_filesz) \ 85 TYPE_NAME (ElfW2(32, Ext##Word), p_memsz) \ 86 TYPE_NAME (ElfW2(32, Ext##Word), p_flags) \ 87 TYPE_NAME (ElfW2(32, Ext##Word), p_align) \ 91 TYPE_NAME (ElfW2(64, Ext##Word), p_type) \ 92 TYPE_NAME (ElfW2(64, Ext##Word), p_flags) \ 105 TYPE_NAME (ElfW2(32, Ext##Word), sh_name) \ [all …]
|
/external/valgrind/main/memcheck/tests/amd64/ |
D | bt_everything.c | 14 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/oprofile/events/ppc64/cell-be/ |
D | unit_masks | 15 0x010 PPU Bus Word 0 [mandatory] 20 0x010 PPU Bus Word 0 [mandatory] 25 0x040 PPU Bus Word 2 [mandatory] 30 0x040 PPU Bus Word 2 [mandatory] 35 0x010 PPU Bus Word 0 [optional ] 36 0x020 PPU Bus Word 1 [default ] 41 0x010 PPU Bus Word 0 [optional ] 42 0x020 PPU Bus Word 1 [default ] 48 0x010 PPU Bus Word 0 [optional ] 49 0x020 PPU Bus Word 1 [default ] [all …]
|
/external/chromium_org/content/common/android/ |
D | address_parser_internal.h | 21 struct CONTENT_EXPORT Word { struct 25 Word() {} in Word() argument 26 Word(const base::string16::const_iterator& begin, 37 Word* word); 44 inline bool CheckFinished(Word* word) const; 65 typedef std::vector<Word> WordList; 76 CONTENT_EXPORT bool IsValidLocationName(const Word& word); 77 CONTENT_EXPORT bool IsZipValid(const Word& word, size_t state_index); 78 CONTENT_EXPORT bool IsZipValidForState(const Word& word, size_t state_index);
|
D | address_parser_internal.cc | 69 Word::Word(const base::string16::const_iterator& begin, in Word() function in content::address_parser::internal::Word 105 bool HouseNumberParser::CheckFinished(Word* word) const { in CheckFinished() 119 const base::string16::const_iterator& end, Word* word) { in Parse() 345 const Word& first_word = words->at(state_first_word); in FindStateStartingInWord() 401 Word(tokenizer->token_begin(), tokenizer->token_end())); in FindStateStartingInWord() 415 bool IsZipValid(const Word& word, size_t state_index) { in IsZipValid() 429 bool IsZipValidForState(const Word& word, size_t state_index) { in IsZipValidForState() 513 bool IsValidLocationName(const Word& word) { in IsValidLocationName()
|
D | address_parser.cc | 76 Word house_number; in FindAddress() 112 words.push_back(Word(tokenizer.token_begin(), tokenizer.token_end())); in FindAddress() 117 const Word& current_word = words[next_word]; in FindAddress() 172 const Word& previous_word = words[state_first_word - 1]; in FindAddress() 188 words.push_back(Word(tokenizer.token_begin(), in FindAddress()
|
/external/valgrind/main/coregrind/ |
D | m_xarray.c | 45 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_() 137 inline void* VG_(indexXA) ( XArray* xao, Word n ) in VG_() 150 Word newsz; in ensureSpaceXA() 181 Word VG_(addToXA) ( XArray* xao, const void* elem ) in VG_() 198 Word VG_(addBytesToXA) ( XArray* xao, const void* bytesV, Word nbytes ) in VG_() [all …]
|
D | m_rangemap.c | 60 static Word find ( RangeMap* rm, UWord key ); 85 Word i = VG_(addToXA)(rm->ranges, &r); in VG_() 108 Word iMin, iMax, i; in VG_() 121 Word i = find(rm, key); in VG_() 128 Word VG_(sizeRangeMap) ( RangeMap* rm ) in VG_() 135 /*OUT*/UWord* val, RangeMap* rm, Word ix ) in VG_() 148 Word i; in preen() 163 static Word find ( RangeMap* rm, UWord key ) in find() 166 Word lo = 0; in find() 167 Word hi = VG_(sizeXA)(ranges); in find() [all …]
|
D | m_vkiscnums.c | 49 HChar* VG_(sysnum_string)(Word sysnum, SizeT n_buf, HChar* buf) in VG_() 55 HChar* VG_(sysnum_string_extra)(Word sysnum, SizeT n_buf, HChar* buf) in VG_() 64 HChar* VG_(sysnum_string)(Word sysnum, SizeT n_buf, HChar* buf) in VG_() 79 HChar* VG_(sysnum_string_extra)(Word sysnum, SizeT n_buf, HChar* buf) in VG_()
|
D | m_wordfm.c | 87 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 …]
|
D | m_stacks.c | 289 Word delta = (Word)new_SP - (Word)old_SP; in complaints_stack_switch() 314 Word delta = (Word)new_SP - (Word)old_SP; \
|
/external/chromium_org/third_party/android_crazy_linker/src/src/ |
D | crazy_linker_elf_relocations.cpp | 82 RelocationType GetRelocationType(ELF::Word r_type) { in GetRelocationType() 324 const ELF::Word rela_type = ELF_R_TYPE(rela->r_info); in ApplyRelaReloc() 325 const ELF::Word CRAZY_UNUSED rela_symbol = ELF_R_SYM(rela->r_info); in ApplyRelaReloc() 393 const ELF::Word rel_type = ELF_R_TYPE(rel->r_info); in ApplyRelReloc() 394 const ELF::Word CRAZY_UNUSED rel_symbol = ELF_R_SYM(rel->r_info); in ApplyRelReloc() 495 bool ElfRelocations::ResolveSymbol(ELF::Word rel_type, in ResolveSymbol() 496 ELF::Word rel_symbol, in ResolveSymbol() 561 const ELF::Word rel_type = ELF_R_TYPE(rel->r_info); in ApplyRelRelocs() 562 const ELF::Word rel_symbol = ELF_R_SYM(rel->r_info); in ApplyRelRelocs() 608 const ELF::Word rel_type = ELF_R_TYPE(rela->r_info); in ApplyRelaRelocs() [all …]
|
D | crazy_linker_elf_relocations.h | 84 void AdjustRelocation(ELF::Word rel_type, 117 ELF::Word mips_symtab_count_; 118 ELF::Word mips_local_got_count_; 119 ELF::Word mips_gotsym_;
|
/external/valgrind/main/drd/ |
D | drd_clientobj.h | 122 Word count; // Participant count in a barrier wait. 123 Word pre_iteration; // pre barrier completion count modulo two. 124 Word post_iteration; // post barrier completion count modulo two. 125 Word pre_waiters_left; // number of waiters left for a complete barrier. 126 Word post_waiters_left; // number of waiters left for a complete barrier.
|
D | drd_semaphore.h | 41 const Word pshared, 45 const HChar* name, const Word oflag, 46 const Word mode, const UInt value);
|
D | drd_semaphore.c | 53 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/pdfium/fpdfsdk/src/fxedit/ |
D | fxet_ap.cpp | 11 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/main/helgrind/ |
D | hg_intercepts.c | 89 Word _arg1; \ 90 assert(sizeof(_ty1F) == sizeof(Word)); \ 91 _arg1 = (Word)(_arg1F); \ 98 Word _arg1, _arg2; \ 99 assert(sizeof(_ty1F) == sizeof(Word)); \ 100 assert(sizeof(_ty2F) == sizeof(Word)); \ 101 _arg1 = (Word)(_arg1F); \ 102 _arg2 = (Word)(_arg2F); \ 110 Word _res, _arg1, _arg2; \ 111 assert(sizeof(_ty1F) == sizeof(Word)); \ [all …]
|
/external/valgrind/main/coregrind/m_debuginfo/ |
D | priv_tytypes.h | 90 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 );
|
D | tytypes.c | 72 Word i; in pp_XArray_of_cuOffs() 203 Word i, n; in ML_() 280 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 …]
|
/external/valgrind/main/exp-sgcheck/ |
D | sg_main.c | 93 static Word cmp_nonempty_intervals ( Addr a1, SizeT n1, in cmp_nonempty_intervals() 161 static Word StackBlock__cmp ( const StackBlock* fb1, const StackBlock* fb2 ) in StackBlock__cmp() 163 Word r; in StackBlock__cmp() 184 r = (Word)VG_(strcmp)(fb1->name, fb2->name); in StackBlock__cmp() 205 static Word StackBlocks__cmp ( XArray* fb1s, XArray* fb2s ) in StackBlocks__cmp() 207 Word i, r, n1, n2; in StackBlocks__cmp() 225 Word i, n = VG_(sizeXA)( sbs ); in pp_StackBlocks() 249 (Word(*)(UWord,UWord))StackBlocks__cmp ); in init_StackBlocks_set() 269 { Word r, w, nEQ, n = VG_(sizeXA)( orig ); in StackBlocks__find_and_dealloc__or_add() 277 Word c = StackBlock__cmp(pR0,pR1); in StackBlocks__find_and_dealloc__or_add() [all …]
|
/external/chromium_org/third_party/tcmalloc/vendor/src/base/ |
D | elf_mem_image.h | 97 const char* GetDynstr(ElfW(Word) offset) const; 99 const char* GetVerstr(ElfW(Word) offset) const; 123 const ElfW(Word) *hash_;
|
/external/chromium_org/third_party/tcmalloc/chromium/src/base/ |
D | elf_mem_image.h | 97 const char* GetDynstr(ElfW(Word) offset) const; 99 const char* GetVerstr(ElfW(Word) offset) const; 123 const ElfW(Word) *hash_;
|