Home
last modified time | relevance | path

Searched refs:current_addr (Results 1 – 6 of 6) sorted by relevance

/external/crosvm/devices/src/register_space/
Dregister_space.rs44 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/
Dsnmp-supplies.c69 static http_addr_t current_addr; /* Current address */ variable
216 if (!httpAddrEqual(addr, &current_addr)) in backendSNMPSupplies()
219 _cupsSNMPWalk(snmp_fd, &current_addr, CUPS_SNMP_VERSION_1, in backendSNMPSupplies()
500 current_addr = *addr; in backend_init_supplies()
612 if (!_cupsSNMPWrite(snmp_fd, &current_addr, CUPS_SNMP_VERSION_1, in backend_init_supplies()
633 if (!_cupsSNMPWrite(snmp_fd, &current_addr, CUPS_SNMP_VERSION_1, in backend_init_supplies()
658 _cupsSNMPWalk(snmp_fd, &current_addr, CUPS_SNMP_VERSION_1, in backend_init_supplies()
692 _cupsSNMPWalk(snmp_fd, &current_addr, CUPS_SNMP_VERSION_1, in backend_init_supplies()
/external/llvm-project/lldb/source/Target/
DThreadPlanShouldStopHere.cpp46 lldb::addr_t current_addr = in InvokeShouldStopHereCallback() local
50 should_stop_here, current_addr); in InvokeShouldStopHereCallback()
DStackFrameRecognizer.cpp120 Address current_addr = frame->GetFrameCodeAddress(); in GetRecognizerForFrame() local
140 if (start_addr != current_addr) in GetRecognizerForFrame()
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dstream_executor_util.cc285 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/
Dprinters.py486 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) \