Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libc/test/src/stdio/
H A Dfopencookie_test.cpp62 off64_t new_offset; in seek_ss() local
64 new_offset = *offset; in seek_ss()
66 new_offset = *offset + ss->offset; in seek_ss()
68 new_offset = *offset + ss->endpos; in seek_ss()
73 if (new_offset < 0 || size_t(new_offset) > ss->bufsize) in seek_ss()
75 ss->offset = new_offset; in seek_ss()
76 *offset = new_offset; in seek_ss()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugMacro.cpp68 lldb::offset_t new_offset = 0, str_offset = 0; in ReadMacroEntries() local
112 new_offset = debug_macro_data.GetU64(offset); in ReadMacroEntries()
114 new_offset = debug_macro_data.GetU32(offset); in ReadMacroEntries()
116 sym_file_dwarf->ParseDebugMacros(&new_offset))); in ReadMacroEntries()
/llvm-project-15.0.7/libcxx/test/libcxx/utilities/memory/util.smartptr/util.smartptr.shared/
H A Dlibcxx.control_block_layout.pass.cpp73 std::ptrdiff_t new_offset = new_elem - reinterpret_cast<char const*>(&new_); in test() local
74 assert(new_offset == old_offset && "offset of stored element changed"); in test()
82 std::ptrdiff_t new_offset = new_alloc - reinterpret_cast<char const*>(&new_); in test() local
83 assert(new_offset == old_offset && "offset of allocator changed"); in test()
/llvm-project-15.0.7/openmp/libomptarget/plugins/amdgpu/impl/
H A Dsystem.cpp470 size_t new_offset = lcArg.offset_; in get_code_object_custom_metadata() local
471 size_t padding = new_offset - offset; in get_code_object_custom_metadata()
472 offset = new_offset; in get_code_object_custom_metadata()
/llvm-project-15.0.7/lldb/source/Expression/
H A DDWARFExpression.cpp1657 lldb::offset_t new_offset = offset + skip_offset; in Evaluate() local
1661 if (new_offset <= opcodes.GetByteSize()) in Evaluate()
1662 offset = new_offset; in Evaluate()
1691 lldb::offset_t new_offset = offset + bra_offset; in Evaluate() local
1695 if (new_offset <= opcodes.GetByteSize()) in Evaluate()
1696 offset = new_offset; in Evaluate()
/llvm-project-15.0.7/lldb/tools/debugserver/source/
H A DRNBRemote.cpp1374 uint32_t new_offset = UINT32_MAX; in InitializeRegisters() local
1387 if (new_offset > reg_offset) in InitializeRegisters()
1388 new_offset = reg_offset; in InitializeRegisters()
1393 if (new_offset != UINT32_MAX) { in InitializeRegisters()
1394 reg_entry.offset = new_offset; in InitializeRegisters()