/third_party/elfutils/libdwfl/ |
D | elf-from-memory.c | 106 Elf64_Ehdr e64; in elf_from_remote_memory() member 154 phoff = ehdr.e64.e_phoff; in elf_from_remote_memory() 155 phnum = ehdr.e64.e_phnum; in elf_from_remote_memory() 156 phentsize = ehdr.e64.e_phentsize; in elf_from_remote_memory() 160 shdrs_end = ehdr.e64.e_shoff + ehdr.e64.e_shnum * ehdr.e64.e_shentsize; in elf_from_remote_memory() 234 if (! elf64_xlatetom (&xlateto, &xlatefrom, ehdr.e64.e_ident[EI_DATA])) in elf_from_remote_memory() 329 ehdr.e64.e_shoff = 0; in elf_from_remote_memory() 330 ehdr.e64.e_shnum = 0; in elf_from_remote_memory() 331 ehdr.e64.e_shstrndx = 0; in elf_from_remote_memory() 349 xlatefrom.d_size = xlateto.d_size = sizeof ehdr.e64; in elf_from_remote_memory() [all …]
|
D | dwfl_segment_report_module.c | 353 Elf64_Ehdr e64; in dwfl_segment_report_module() member 413 e_type = ehdr.e64.e_type; in dwfl_segment_report_module() 414 phoff = ehdr.e64.e_phoff; in dwfl_segment_report_module() 415 phnum = ehdr.e64.e_phnum; in dwfl_segment_report_module() 416 phentsize = ehdr.e64.e_phentsize; in dwfl_segment_report_module() 420 shdrs_end = ehdr.e64.e_shoff + ehdr.e64.e_shnum * sizeof (Elf64_Shdr); in dwfl_segment_report_module()
|
D | dwfl_module_getdwarf.c | 314 Elf64_Ehdr e64; in find_prelink_address_sync() member 346 if (ehdr.e64.e_shentsize != shentsize in find_prelink_address_sync() 347 || ehdr.e64.e_phentsize != phentsize) in find_prelink_address_sync() 349 phnum = ehdr.e64.e_phnum; in find_prelink_address_sync() 350 shnum = ehdr.e64.e_shnum; in find_prelink_address_sync()
|
/third_party/elfutils/libelf/ |
D | elf_begin.c | 79 Elf64_Ehdr *e64; in get_shnum() member 85 Elf64_Ehdr e64; in get_shnum() member 130 ehdr_mem.e64.e_shnum = ((Elf64_Ehdr *) e_ident)->e_shnum; in get_shnum() 131 ehdr_mem.e64.e_shoff = ((Elf64_Ehdr *) e_ident)->e_shoff; in get_shnum() 138 CONVERT (ehdr_mem.e64.e_shnum); in get_shnum() 139 CONVERT (ehdr_mem.e64.e_shoff); in get_shnum() 207 result = ehdr.e64->e_shnum; in get_shnum() 209 if (unlikely (result == 0) && ehdr.e64->e_shoff != 0) in get_shnum() 211 if (unlikely (ehdr.e64->e_shoff >= maxsize) in get_shnum() 212 || unlikely (ehdr.e64->e_shoff + sizeof (Elf64_Shdr) > maxsize)) in get_shnum() [all …]
|
D | elf_getscn.c | 80 scn0->shdr.e64 = calloc (1, sizeof (Elf64_Shdr)); in elf_getscn() 81 if (scn0->shdr.e64 == NULL) in elf_getscn()
|
D | elf_newscn.c | 134 result->shdr.e64 = calloc (1, sizeof (Elf64_Shdr)); in elf_newscn() 135 if (result->shdr.e64 == NULL) in elf_newscn()
|
D | elf_getshdrstrndx.c | 164 if (elf->state.elf64.scns.data[0].shdr.e64 != NULL) in elf_getshdrstrndx() 166 num = elf->state.elf64.scns.data[0].shdr.e64->sh_link; in elf_getshdrstrndx()
|
D | gelf_getshdr.c | 86 = scn->shdr.e64 ?: __elf64_getshdr_rdlock (scn); in gelf_getshdr()
|
D | gelf_update_shdr.c | 90 = scn->shdr.e64 ?: __elf64_getshdr_wrlock (scn); in gelf_update_shdr()
|
D | elf_getphdrnum.c | 80 Elf64_Shdr *shdr = scn->shdr.e64 ?: __elf64_getshdr_rdlock (scn); in __elf_getphdrnum_rdlock()
|
D | elf_strptr.c | 149 Elf64_Shdr *shdr = strscn->shdr.e64 ?: __elf64_getshdr_rdlock (strscn); in elf_strptr()
|
D | libelfP.h | 227 Elf64_Shdr *e64; /* Pointer to 64bit section header. */ member
|
D | elf_getdata.c | 241 = scn->shdr.e64 ?: __elf64_getshdr_wrlock (scn); in __libelf_set_rawdata_wrlock()
|
/third_party/libbpf/src/ |
D | btf.h | 517 const __u32 *e64 = (const __u32 *)e; in btf_enum64_value() local 519 return ((__u64)e64[2] << 32) | e64[1]; in btf_enum64_value()
|
D | btf.c | 354 struct btf_enum64 *e64; in btf_bswap_type_rest() local 383 for (i = 0, e64 = btf_enum64(t); i < vlen; i++, e64++) { in btf_bswap_type_rest() 384 e64->name_off = bswap_32(e64->name_off); in btf_bswap_type_rest() 385 e64->val_lo32 = bswap_32(e64->val_lo32); in btf_bswap_type_rest() 386 e64->val_hi32 = bswap_32(e64->val_hi32); in btf_bswap_type_rest()
|
/third_party/rust/crates/quote/tests/ |
D | test.rs | 191 let e64 = 2.345f64; in test_floating() localVariable 195 #e64 in test_floating()
|
/third_party/python/Lib/test/ |
D | test_tuple.py | 81 def check_one_exact(t, e32, e64): argument 83 expected = e32 if support.NHASHBITS == 32 else e64
|
/third_party/elfutils/tests/ |
D | run-strip-remove-keep.sh | 107 [33] .symtab SYMTAB 00000000 003e64 0005a0 16 34 68 4 194 [33] .symtab NOBITS 00000000 003e64 0005a0 16 34 68 4 195 [34] .strtab NOBITS 00000000 003e64 000235 0 0 0 1 440 [33] .symtab SYMTAB 00000000 003e64 0005a0 16 34 68 4
|
/third_party/curl/tests/data/ |
D | test1538 | 99 e64: Requested SSL level failed
|
/third_party/openssl/crypto/ec/ |
D | ecp_nistp256.c | 986 felem e2, e4, e8, e16, e32, e64; in felem_inv() local 1031 felem_assign(e64, ftmp); in felem_inv() 1039 felem_mul(tmp, e64, e32); in felem_inv()
|
/third_party/node/deps/openssl/openssl/crypto/ec/ |
D | ecp_nistp256.c | 986 felem e2, e4, e8, e16, e32, e64; in felem_inv() local 1031 felem_assign(e64, ftmp); in felem_inv() 1039 felem_mul(tmp, e64, e32); in felem_inv()
|
/third_party/vulkan-headers/include/vulkan/ |
D | vulkan_enums.hpp | 1748 e64 = VK_SAMPLE_COUNT_64_BIT enumerator 1759 SampleCountFlagBits::e64; 1994 e64 = VK_QUERY_RESULT_64_BIT, enumerator 2007 …static VULKAN_HPP_CONST_OR_CONSTEXPR QueryResultFlags allFlags = QueryResultFlagBits::e64 | Query… 4652 e64 = VK_VIDEO_ENCODE_H265_CTB_SIZE_64_BIT_EXT enumerator 4662 …FlagBitsEXT::e16 | VideoEncodeH265CtbSizeFlagBitsEXT::e32 | VideoEncodeH265CtbSizeFlagBitsEXT::e64;
|
D | vulkan_to_string.hpp | 301 if ( value & SampleCountFlagBits::e64 ) in to_string() 529 if ( value & QueryResultFlagBits::e64 ) in to_string() 2311 if ( value & VideoEncodeH265CtbSizeFlagBitsEXT::e64 ) in to_string() 4683 case SampleCountFlagBits::e64: return "64"; in to_string() 4835 case QueryResultFlagBits::e64: return "64"; in to_string() 6777 case VideoEncodeH265CtbSizeFlagBitsEXT::e64: return "64"; in to_string()
|
/third_party/elfutils/src/ |
D | unstrip.c | 1123 Elf64_Ehdr e64; in find_alloc_sections_prelink() member 1148 phnum = ehdr.e64.e_phnum; in find_alloc_sections_prelink() 1149 shnum = ehdr.e64.e_shnum; in find_alloc_sections_prelink()
|
/third_party/skia/third_party/externals/swiftshader/include/vulkan/ |
D | vulkan_enums.hpp | 2888 e64 = VK_SAMPLE_COUNT_64_BIT enumerator 2901 case SampleCountFlagBits::e64: return "64"; in to_string() 3168 e64 = VK_QUERY_RESULT_64_BIT, enumerator 3181 case QueryResultFlagBits::e64: return "64"; in to_string() 6100 e64 = VK_VIDEO_ENCODE_H265_CTB_SIZE_64_BIT_EXT enumerator 6110 case VideoEncodeH265CtbSizeFlagBitsEXT::e64: return "64"; in to_string() 8765 VkFlags( SampleCountFlagBits::e64 ) 8810 if ( value & SampleCountFlagBits::e64 ) in to_string() 9350 allFlags = VkFlags( QueryResultFlagBits::e64 ) | VkFlags( QueryResultFlagBits::eWait ) | 9387 if ( value & QueryResultFlagBits::e64 ) in to_string() [all …]
|