HomeSort by relevance Sort by last modified time
    Searched refs:Addr (Results 151 - 175 of 312) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium/net/disk_cache/
block_files_unittest.cc 39 Addr address[kMaxSize];
66 Addr address[kMaxSize];
95 Addr address(0);
110 Addr address(entries[i]);
117 Addr address(entries[kNumEntries / 2]);
188 Addr address;
214 Addr addr(BLOCK_256, 1, 5, 10);
215 EXPECT_TRUE(NULL == files.GetFile(addr));
224 EXPECT_TRUE(NULL == files.GetFile(addr));
    [all...]
block_files.cc 223 MappedFile* BlockFiles::GetFile(Addr address) {
242 Addr* block_address) {
269 Addr address(block_type, block_count, header->this_file, index);
275 void BlockFiles::DeleteBlock(Addr address, bool deep) {
281 zero_buffer_ = new char[Addr::BlockSizeForFileType(BLOCK_4K) * 4];
282 memset(zero_buffer_, 0, Addr::BlockSizeForFileType(BLOCK_4K) * 4);
301 FileType type = Addr::RequiredFileType(header->entry_size);
302 if (Addr::BlockSizeForFileType(RANKINGS) == header->entry_size)
340 bool BlockFiles::IsValid(Addr address) {
358 buffer.reset(new char[Addr::BlockSizeForFileType(BLOCK_4K) * 4])
    [all...]
stats.cc 72 bool LoadStats(BackendImpl* backend, Addr address, OnDiskStats* stats) {
95 bool StoreStats(BackendImpl* backend, Addr address, OnDiskStats* stats) {
105 bool CreateStats(BackendImpl* backend, Addr* address, OnDiskStats* stats) {
127 Addr address(*storage_addr);
242 Addr address(storage_addr_);
entry_impl.cc 294 EntryImpl::EntryImpl(BackendImpl* backend, Addr address, bool read_only)
295 : entry_(NULL, Addr(0)), node_(NULL, Addr(0)), backend_(backend),
403 bool EntryImpl::CreateEntry(Addr node_address, const std::string& key,
420 Addr address(0);
482 Addr address(entry_.Data()->data_addr[index]);
502 Addr address(entry_.Data()->long_key);
516 void EntryImpl::SetNextAddress(Addr address) {
524 Addr address(entry_.Data()->rankings_node);
581 Addr rankings_addr(stored->rankings_node)
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 87 void RuntimeDyld::reassignSymbolAddress(StringRef Name, uint8_t *Addr) {
88 Dyld->reassignSymbolAddress(Name, Addr);
RuntimeDyldImpl.h 83 virtual void reassignSymbolAddress(StringRef Name, uint8_t *Addr) = 0;
140 void reassignSymbolAddress(StringRef Name, uint8_t *Addr);
  /external/valgrind/main/coregrind/m_debuginfo/
readstabs.c 112 Addr start; /* start address */
113 Addr end; /* end address */
124 Addr addr; /* start of this line */ member in struct:__anon12409
272 Addr addr = func.start + st->n_value; local
274 if (line.addr != 0) {
276 ML_(addLineInfo)(di, file.name, NULL, line.addr,
277 addr, line.no + line.ovf * LINENO_OVERFLOW, i);
282 line.addr = 0
297 Addr addr = func.start + st->n_value; local
332 Addr addr = 0; \/* end address for prev line\/scope *\/ local
    [all...]
storage.c 95 sym->addr,
96 sym->addr + sym->size - 1, sym->size,
331 Addr this,
332 Addr next,
406 loc.addr = this;
413 "addLoc: addr %#lx, size %d, line %d, file %s\n",
658 const Addr* key = (const Addr*)keyV;
691 Addr aMin,
692 Addr aMax
1663 Addr const addr = ptr - di->rx_map_avma; local
    [all...]
debuginfo.c 335 static Bool discard_syms_in_range ( Addr start, SizeT length )
372 static Bool ranges_overlap (Addr s1, SizeT len1, Addr s2, SizeT len2 )
374 Addr e1, e2;
605 int LoadNaClDebugInfo(Addr a);
606 int LoadNaClDebugInfo(Addr a) {
669 ULong VG_(di_notify_mmap)( Addr a, Bool allow_SkFileV )
941 void VG_(di_notify_munmap)( Addr a, SizeT len )
955 void VG_(di_notify_mprotect)( Addr a, SizeT len, UInt prot )
971 void VG_(di_notify_pdb_debuginfo)( Int fd_obj, Addr avma_obj
    [all...]
  /frameworks/compile/libbcc/lib/CodeGen/
CodeEmitter.h 250 // maps as required. If Addr is null, the entry for the global is removed
252 void *UpdateGlobalMapping(const llvm::GlobalValue *GV, void *Addr);
257 void AddGlobalMapping(const llvm::GlobalValue *GV, void *Addr) {
259 assert((CurVal == 0 || Addr == 0) && "GlobalMapping already established!");
260 CurVal = Addr;
276 // Stores the data in @Val of type @Ty at address @Addr.
277 void StoreValueToMemory(const llvm::GenericValue &Val, void *Addr,
281 // location @Addr.
282 void InitializeConstantToMemory(const llvm::Constant *C, void *Addr);
  /external/elfutils/libelf/
abstract.h 26 TYPE_NAME (ElfW2(Bits, Ext##Addr), e_entry) \
49 TYPE_NAME (ElfW2(32, Ext##Addr), p_vaddr) \
50 TYPE_NAME (ElfW2(32, Ext##Addr), p_paddr) \
61 TYPE_NAME (ElfW2(64, Ext##Addr), p_vaddr) \
62 TYPE_NAME (ElfW2(64, Ext##Addr), p_paddr) \
75 TYPE_NAME (ElfW2(32, Ext##Addr), sh_addr) \
88 TYPE_NAME (ElfW2(64, Ext##Addr), sh_addr) \
102 TYPE_NAME (ElfW2(32, Ext##Addr), st_value) \
118 TYPE_NAME (ElfW2(64, Ext##Addr), st_value) \
126 TYPE_NAME (ElfW2(32, Ext##Addr), r_offset)
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 176 bool ARMEmitLoad(EVT VT, unsigned &ResultReg, Address &Addr);
177 bool ARMEmitStore(EVT VT, unsigned SrcReg, Address &Addr);
178 bool ARMComputeAddress(const Value *Obj, Address &Addr);
179 void ARMSimplifyAddress(Address &Addr, EVT VT);
209 void AddLoadStoreOperands(EVT VT, Address &Addr,
709 bool ARMFastISel::ARMComputeAddress(const Value *Obj, Address &Addr) {
737 return ARMComputeAddress(U->getOperand(0), Addr);
742 return ARMComputeAddress(U->getOperand(0), Addr);
748 return ARMComputeAddress(U->getOperand(0), Addr);
752 Address SavedAddr = Addr;
    [all...]
  /external/valgrind/main/helgrind/
libhb_core.c 105 static void (*main_get_stacktrace)( Thr*, Addr*, UWord ) = NULL;
150 static void zsm_sset_range ( Addr, SizeT, SVal );
151 static void zsm_scopy_range ( Addr, Addr, SizeT );
217 Primary map is a WordFM Addr SecMap*.
286 Addr tags0[N_WAY_NENT];
290 static inline Bool is_valid_scache_tag ( Addr tag ) {
300 static WordFM* map_shmem = NULL; /* WordFM Addr SecMap* */
355 static inline Addr shmem__round_to_SecMap_base ( Addr a )
    [all...]
hg_main.c 185 static Lock* mk_LockN ( LockKind kind, Addr guestaddr ) {
542 tl_assert(sizeof(Addr) == sizeof(Word));
548 tl_assert(sizeof(Addr) == sizeof(Word));
554 __bus_lock_Lock = mk_LockN( LK_nonRec, (Addr)&__bus_lock );
659 /*--- map_locks :: WordFM guest-Addr-of-lock Lock* ---*/
666 Lock* map_locks_lookup_or_create ( LockKind lkk, Addr ga, ThreadId tid )
688 static Lock* map_locks_maybe_lookup ( Addr ga )
697 static void map_locks_delete ( Addr ga )
699 Addr ga2 = 0;
840 Addr gla
    [all...]
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-aix5.c 76 Addr ML_(allocstack)(ThreadId tid)
80 Addr initial_SP;
99 vg_assert(initial_SP > (Addr)stack);
100 tst->os_state.valgrind_stack_base = (Addr)stack;
182 Addr ent = 0, toc = 0;
244 Addr tmp = VG_(brk_limit);
272 HChar* ML_(aix5debugstuff_pc_to_fnname) ( Addr pc )
373 void ML_(aix5debugstuff_show_tstate) ( Addr tsA, HChar* who )
419 HChar* s = ML_(aix5debugstuff_pc_to_fnname)( (Addr)p[i] );
570 (Addr)(&ufds[i].fd), sizeof(ufds[i].fd) )
1722 Addr addr = (Addr)RES; local
1766 Addr addr = ARG1; local
1783 Addr addr = ARG1; local
    [all...]
priv_syswrap-generic.h 40 Bool ML_(valid_client_addr)(Addr start, SizeT size, ThreadId tid,
68 ML_(notify_core_and_tool_of_mmap) ( Addr a, SizeT len, UInt prot,
71 ML_(notify_core_and_tool_of_munmap) ( Addr a, SizeT len );
73 ML_(notify_core_and_tool_of_mprotect) ( Addr a, SizeT len, Int prot );
76 ML_(buf_and_len_pre_check) ( ThreadId tid, Addr buf_p, Addr buflen_p,
80 Addr buf_p, Addr buflen_p, Char* s );
  /external/llvm/lib/CodeGen/
ScheduleDAGInstrs.h 152 const SUnit *Addr = SUnits.empty() ? 0 : &SUnits[0];
155 assert((Addr == 0 || Addr == &SUnits[0]) &&
  /external/llvm/lib/MC/MCDisassembler/
Disassembler.cpp 111 int readByte(uint64_t Addr, uint8_t *Byte) const {
112 if (Addr - BasePC >= Size)
114 *Byte = Bytes[Addr - BasePC];
  /external/valgrind/main/coregrind/
m_signals.c 389 static inline Addr VG_UCONTEXT_INSTR_PTR( void* ucV ) {
395 static inline Addr VG_UCONTEXT_STACK_PTR( void* ucV ) {
407 static inline Addr VG_UCONTEXT_LINK_REG( void* ucV ) {
413 static inline Addr VG_UCONTEXT_FRAME_PTR( void* ucV ) {
422 static inline Addr VG_UCONTEXT_INSTR_PTR( void* ucV ) {
428 static inline Addr VG_UCONTEXT_STACK_PTR( void* ucV ) {
440 static inline Addr VG_UCONTEXT_LINK_REG( void* ucV ) {
446 static inline Addr VG_UCONTEXT_FRAME_PTR( void* ucV ) {
452 static inline Addr VG_UCONTEXT_INSTR_PTR( void* ucV ) {
458 static inline Addr VG_UCONTEXT_STACK_PTR( void* ucV )
    [all...]
m_machine.c 46 Addr VG_(get_IP) ( ThreadId tid ) {
49 Addr VG_(get_SP) ( ThreadId tid ) {
52 Addr VG_(get_FP) ( ThreadId tid ) {
56 void VG_(set_IP) ( ThreadId tid, Addr ip ) {
59 void VG_(set_SP) ( ThreadId tid, Addr sp ) {
149 case 0: src = (void*)(((Addr)&(tst->arch.vex)) + offset); break;
150 case 1: src = (void*)(((Addr)&(tst->arch.vex_shadow1)) + offset); break;
151 case 2: src = (void*)(((Addr)&(tst->arch.vex_shadow2)) + offset); break;
173 case 0: dst = (void*)(((Addr)&(tst->arch.vex)) + offset); break;
174 case 1: dst = (void*)(((Addr)&(tst->arch.vex_shadow1)) + offset); break
    [all...]
  /external/valgrind/main/coregrind/m_scheduler/
scheduler.c 234 { Addr gsp = VG_(get_SP)(tid);
532 VG_(threads)[i].client_stack_highest_word = (Addr)NULL;
556 Addr clstack_end,
607 Addr a_vex = (Addr) & tst->arch.vex;
608 Addr a_vexsh1 = (Addr) & tst->arch.vex_shadow1;
609 Addr a_vexsh2 = (Addr) & tst->arch.vex_shadow2;
610 Addr a_spill = (Addr) & tst->arch.vex_spill
    [all...]
  /external/llvm/lib/Transforms/Utils/
AddrModeMatcher.cpp 65 /// Return true and update AddrMode if this addr mode is legal for the target,
99 // X*Scale + C*Scale to addr mode.
187 // Restore the old addr mode info.
305 /// MatchAddr - If we can, try to add the value of 'Addr' into the current
306 /// addressing mode. If Addr can't be added to AddrMode this returns false and
307 /// leaves AddrMode unmodified. This assumes that Addr is either a pointer type
310 bool AddressingModeMatcher::MatchAddr(Value *Addr, unsigned Depth) {
311 if (ConstantInt *CI = dyn_cast<ConstantInt>(Addr)) {
317 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(Addr)) {
325 } else if (Instruction *I = dyn_cast<Instruction>(Addr)) {
    [all...]
  /external/valgrind/main/coregrind/m_initimg/
initimg-linux.c 75 /*OUT*/Addr* client_ip,
76 /*OUT*/Addr* client_toc)
388 Addr setup_client_stack( void* init_sp,
392 Addr clstack_end,
399 Addr *ptr;
408 Addr client_SP; /* client stack base (initial SP) */
409 Addr clstack_start;
513 Addr anon_start = clstack_start;
514 Addr resvn_start = anon_start - resvn_size;
583 ptr = (Addr*)client_SP
    [all...]
  /external/valgrind/main/coregrind/m_aspacemgr/
aspacemgr-aix5.c 152 Addr start; // lowest addr in range (ALL)
153 Addr end; // highest addr in range (ALL)
161 Addr sibling; // MText, MData only: addr of MData/MText
191 #define Addr_MIN ((Addr)0)
192 #define Addr_MAX ((Addr)(-1ULL))
558 static Int find_asegment_idx ( AixSegments* segs, Addr a )
560 Addr a_mid_lo, a_mid_hi
    [all...]
  /external/valgrind/main/exp-ptrcheck/
h_main.c 273 Addr addr; member in struct:_Seg
284 void Seg__cmp(Seg* seg, Addr a, Int* cmp, UWord* n)
286 if (a < seg->addr) {
288 *n = seg->addr - a;
289 } else if (a < seg->addr + seg->szB && seg->szB > 0) {
291 *n = a - seg->addr;
294 *n = a - (seg->addr + seg->szB);
318 Addr Seg__addr(Seg* seg)
321 return seg->addr;
4766 IRExpr* addr = cas->addr; local
4792 IRExpr* addr = cas->addr; local
4821 IRExpr* addr = cas->addr; local
4877 IRExpr* addr = cas->addr; local
4928 IRExpr* addr = cas->addr; local
    [all...]

Completed in 1293 milliseconds

1 2 3 4 5 67 8 91011>>