Searched refs:current_addr (Results 1 – 6 of 6) sorted by relevance
/external/crosvm/devices/src/register_space/ |
D | register_space.rs | 44 let mut current_addr: RegisterOffset = addr; in read() localVariable 45 while current_addr < addr + data.len() as RegisterOffset { in read() 46 if let Some(r) = self.get_register(current_addr) { in read() 48 current_addr = r.range().to + 1; in read() 52 current_addr += 1; in read() 60 let mut current_addr: RegisterOffset = addr; in write() localVariable 61 while current_addr < addr + data.len() as RegisterOffset { in write() 62 if let Some(r) = self.get_register(current_addr) { in write() 64 current_addr = r.range().to + 1; in write() 67 current_addr += 1; in write()
|
/external/libcups/backend/ |
D | snmp-supplies.c | 69 static http_addr_t current_addr; /* Current address */ variable 216 if (!httpAddrEqual(addr, ¤t_addr)) in backendSNMPSupplies() 219 _cupsSNMPWalk(snmp_fd, ¤t_addr, CUPS_SNMP_VERSION_1, in backendSNMPSupplies() 500 current_addr = *addr; in backend_init_supplies() 612 if (!_cupsSNMPWrite(snmp_fd, ¤t_addr, CUPS_SNMP_VERSION_1, in backend_init_supplies() 633 if (!_cupsSNMPWrite(snmp_fd, ¤t_addr, CUPS_SNMP_VERSION_1, in backend_init_supplies() 658 _cupsSNMPWalk(snmp_fd, ¤t_addr, CUPS_SNMP_VERSION_1, in backend_init_supplies() 692 _cupsSNMPWalk(snmp_fd, ¤t_addr, CUPS_SNMP_VERSION_1, in backend_init_supplies()
|
/external/llvm-project/lldb/source/Target/ |
D | ThreadPlanShouldStopHere.cpp | 46 lldb::addr_t current_addr = in InvokeShouldStopHereCallback() local 50 should_stop_here, current_addr); in InvokeShouldStopHereCallback()
|
D | StackFrameRecognizer.cpp | 120 Address current_addr = frame->GetFrameCodeAddress(); in GetRecognizerForFrame() local 140 if (start_addr != current_addr) in GetRecognizerForFrame()
|
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | stream_executor_util.cc | 285 char* current_addr = static_cast<char*>(buffer.opaque()); in InitializeTypedBuffer() local 295 se::DeviceMemoryBase mem(current_addr, elements_copied * sizeof(T)); in InitializeTypedBuffer() 298 current_addr += elements_copied * sizeof(T); in InitializeTypedBuffer()
|
/external/llvm-project/libcxx/utils/gdb/libcxx/ |
D | printers.py | 486 current_addr = self.start_ptr 491 for _, elem in self._bucket_it(current_addr, start_index, end_index): 494 current_addr = gdb.Value(addr_as_long(current_addr) + _pointer_size) \
|