Home
last modified time | relevance | path

Searched refs:data_ptr (Results 1 – 22 of 22) sorted by relevance

/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D990628-1.c11 } *data_ptr, data_tmp; variable
36 data_ptr = malloc(num * sizeof(struct data_record)); in load_data()
37 memset(data_ptr, 0xaa, num * sizeof(struct data_record)); in load_data()
40 p = data_ptr; in load_data()
51 if (sizeof (int) == 2 && data_ptr[0].dummy != 0x5555) in main()
53 else if (sizeof (int) > 2 && data_ptr[0].dummy != 0x55555555) in main()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Language/ObjC/
H A DNSDictionary.cpp718 uint64_t *data_ptr = (uint64_t *)buffer_sp->GetBytes(); in GetChildAtIndex() local
719 *data_ptr = dict_item.key_ptr; in GetChildAtIndex()
720 *(data_ptr + 1) = dict_item.val_ptr; in GetChildAtIndex()
722 uint32_t *data_ptr = (uint32_t *)buffer_sp->GetBytes(); in GetChildAtIndex() local
723 *data_ptr = dict_item.key_ptr; in GetChildAtIndex()
724 *(data_ptr + 1) = dict_item.val_ptr; in GetChildAtIndex()
848 uint32_t *data_ptr = reinterpret_cast<uint32_t *>(buffer_sp->GetBytes()); in GetChildAtIndex() local
849 *data_ptr = dict_item.key_ptr; in GetChildAtIndex()
850 *(data_ptr + 1) = dict_item.val_ptr; in GetChildAtIndex()
853 uint64_t *data_ptr = reinterpret_cast<uint64_t *>(buffer_sp->GetBytes()); in GetChildAtIndex() local
[all …]
H A DCF.cpp154 addr_t data_ptr = process_sp->ReadPointerFromMemory( in CFBitVectorSummaryProvider() local
163 process_sp->ReadMemory(data_ptr, buffer_sp->GetBytes(), num_bytes, error); in CFBitVectorSummaryProvider()
/openbsd-src/sys/dev/pci/drm/i915/
H A Di915_query.c25 if (copy_from_user(query_hdr, u64_to_user_ptr(query_item->data_ptr), in copy_query_item()
68 if (copy_to_user(u64_to_user_ptr(query_item->data_ptr), in fill_topology_info()
72 if (copy_to_user(u64_to_user_ptr(query_item->data_ptr + sizeof(topo)), in fill_topology_info()
76 if (intel_sseu_copy_ssmask_to_user(u64_to_user_ptr(query_item->data_ptr + in fill_topology_info()
81 if (intel_sseu_copy_eumask_to_user(u64_to_user_ptr(query_item->data_ptr + in fill_topology_info()
132 u64_to_user_ptr(query_item->data_ptr); in query_engine_info()
230 u64_to_user_ptr(query_item->data_ptr); in query_perf_config_data()
232 u64_to_user_ptr(query_item->data_ptr + in query_perf_config_data()
376 u64_to_user_ptr(query_item->data_ptr); in query_perf_config_list()
475 u64_to_user_ptr(query_item->data_ptr); in query_memregion_info()
[all...]
H A Di915_gem.c254 user_data = u64_to_user_ptr(args->data_ptr); in i915_gem_shmem_pread()
406 user_data = u64_to_user_ptr(args->data_ptr); in i915_gem_gtt_pread()
475 if (!access_ok(u64_to_user_ptr(args->data_ptr), in i915_gem_pread_ioctl()
586 user_data = u64_to_user_ptr(args->data_ptr); in i915_gem_gtt_pwrite_fast()
701 user_data = u64_to_user_ptr(args->data_ptr); in i915_gem_shmem_pwrite()
757 if (!access_ok(u64_to_user_ptr(args->data_ptr), args->size)) in i915_gem_pwrite_ioctl()
/openbsd-src/gnu/llvm/lldb/source/DataFormatters/
H A DStringPrinter.cpp278 const SourceDataType *data_ptr = in DumpEncodedBufferToStream() local
280 const SourceDataType *data_end_ptr = data_ptr + source_size; in DumpEncodedBufferToStream()
285 while (data_ptr < data_end_ptr) { in DumpEncodedBufferToStream()
286 if (!*data_ptr) { in DumpEncodedBufferToStream()
287 data_end_ptr = data_ptr; in DumpEncodedBufferToStream()
290 data_ptr++; in DumpEncodedBufferToStream()
293 data_ptr = (const SourceDataType *)data.GetDataStart(); in DumpEncodedBufferToStream()
305 ConvertFunction(&data_ptr, data_end_ptr, &utf8_data_ptr, in DumpEncodedBufferToStream()
317 reinterpret_cast<const llvm::UTF8 *>(data_ptr)); in DumpEncodedBufferToStream()
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.cpp385 const uint8_t *data_ptr = m_value.data; in Dump() local
386 if (data_ptr) { in Dump()
388 data_ptr + uvalue; // uvalue contains size of block in Dump()
389 while (data_ptr < end_data_ptr) { in Dump()
390 s.Printf("%2.2x ", *data_ptr); in Dump()
391 ++data_ptr; in Dump()
/openbsd-src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp659 empirical_type<lldb::addr_t> data_ptr; member
673 bool valid_ptrs = data_ptr.isValid() && *data_ptr.get() != 0x0; in ShouldRefresh()
1850 addr_t data_ptr = static_cast<lldb::addr_t>(result); in JITDataPointer() local
1851 alloc->data_ptr = data_ptr; in JITDataPointer()
2100 !alloc->data_ptr.isValid() || !alloc->element.datum_size.isValid()) { in JITAllocationSize()
2152 alloc->size = static_cast<uint32_t>(mem_ptr - *alloc->data_ptr.get()) + in JITAllocationSize()
2165 if (!alloc->address.isValid() || !alloc->data_ptr.isValid()) { in JITAllocationStride()
2188 alloc->stride = static_cast<uint32_t>(mem_ptr - *alloc->data_ptr.get()); in JITAllocationStride()
2365 assert(alloc->data_ptr.isValid() && alloc->element.type.isValid() && in GetAllocationData()
2380 lldb::addr_t data_ptr = *alloc->data_ptr.get(); in GetAllocationData() local
[all …]
/openbsd-src/sys/dev/pci/drm/i915/gem/
H A Di915_gem_phys.c218 char __user *user_data = u64_to_user_ptr(args->data_ptr); in i915_gem_object_pwrite_phys()
254 char __user *user_data = u64_to_user_ptr(args->data_ptr); in i915_gem_object_pread_phys()
H A Di915_gem_shmem.c502 char __user *user_data = u64_to_user_ptr(arg->data_ptr); in shmem_pwrite()
/openbsd-src/gnu/llvm/compiler-rt/include/sanitizer/
H A Dcommon_interface_defs.h285 void __sanitizer_symbolize_global(void *data_ptr, const char *fmt,
/openbsd-src/gnu/usr.bin/binutils/bfd/
H A Dnlmcode.h1370 file_ptr text_ptr, data_ptr, other_ptr; local
1481 data_ptr = BFD_ALIGN (text_ptr + text, 1 << data_align);
1482 other_ptr = BFD_ALIGN (data_ptr + data, 1 << other_align);
1488 nlm_fixed_header (abfd)->dataImageOffset = data_ptr;
1505 sec->filepos = data_ptr;
1506 data_ptr += sec->_raw_size;
/openbsd-src/gnu/usr.bin/binutils-2.17/bfd/
H A Dnlmcode.h1313 file_ptr text_ptr, data_ptr, other_ptr; in nlm_compute_section_file_positions() local
1424 data_ptr = BFD_ALIGN (text_ptr + text, 1 << data_align); in nlm_compute_section_file_positions()
1425 other_ptr = BFD_ALIGN (data_ptr + data, 1 << other_align); in nlm_compute_section_file_positions()
1431 nlm_fixed_header (abfd)->dataImageOffset = data_ptr; in nlm_compute_section_file_positions()
1448 sec->filepos = data_ptr; in nlm_compute_section_file_positions()
1449 data_ptr += sec->size; in nlm_compute_section_file_positions()
/openbsd-src/sys/dev/pci/drm/include/uapi/drm/
H A Di915_drm.h938 __u64 data_ptr; member
954 __u64 data_ptr; member
3063 __u64 data_ptr; member
H A Dradeon_drm.h902 __u64 data_ptr; member
915 __u64 data_ptr; member
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.h116 uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *data_ptr,
/openbsd-src/gnu/usr.bin/binutils/binutils/
H A Dnlmconv.c1151 setup_sections (bfd *inbfd ATTRIBUTE_UNUSED, asection *insec, void *data_ptr) in setup_sections() argument
1153 bfd *outbfd = (bfd *) data_ptr; in setup_sections()
1218 copy_sections (bfd *inbfd, asection *insec, void *data_ptr) in copy_sections() argument
1221 bfd *outbfd = (bfd *) data_ptr; in copy_sections()
/openbsd-src/gnu/usr.bin/binutils-2.17/binutils/
H A Dnlmconv.c1154 setup_sections (bfd *inbfd ATTRIBUTE_UNUSED, asection *insec, void *data_ptr) in setup_sections() argument
1156 bfd *outbfd = (bfd *) data_ptr; in setup_sections()
1221 copy_sections (bfd *inbfd, asection *insec, void *data_ptr) in copy_sections() argument
1224 bfd *outbfd = (bfd *) data_ptr; in copy_sections()
/openbsd-src/gnu/llvm/lldb/examples/synthetic/
H A Dlibcxx.py57 data_ptr = l.GetChildAtIndex(2)
64 data = data_ptr.GetPointeeData(0, size)
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectMemory.cpp713 uint8_t *data_ptr = data_sp->GetBytes(); in DoExecute() local
740 memcpy(data_ptr, &buffer[0], read); in DoExecute()
741 data_ptr += read; in DoExecute()
/openbsd-src/gnu/usr.bin/binutils/gas/config/
H A Dobj-coff.h842 long data_ptr,
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_platform_limits_netbsd.h2390 void **data_ptr; member