/external/boringssl/src/util/ |
D | read_symbols.go | 10 // SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 41 outFlag = flag.String("out", "-", "File to write output symbols") 42 …objFileFormat = flag.String("obj-file-format", defaultObjFileFormat(runtime.GOOS), "Object file fo… 55 // cross-compile from an unsupported platform to a supported platform by 71 …printAndExit("Usage: %s [-out OUT] [-obj-file-format FORMAT] ARCHIVE_FILE [ARCHIVE_FILE [...]]", o… 76 if *outFlag != "-" { 100 syms, err := listSymbols(contents) 104 for _, s := range syms { 120 // symbol-prefixing strategy that we cannot distinguish 178 syms, err := f.Symbols() [all …]
|
/external/google-breakpad/src/common/linux/ |
D | dump_symbols_unittest.cc | 22 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 113 SymbolTable syms(kLittleEndian, TypeParam::kAddrSize, table); in TYPED_TEST() local 114 syms.AddSymbol("superfunc", in TYPED_TEST() 117 // ELF32_ST_INFO works for 32-or 64-bit. in TYPED_TEST() 121 elf.AddSection(".dynsym", syms, in TYPED_TEST() 129 this->GetElfContents(elf); in TYPED_TEST() 133 EXPECT_TRUE(ReadSymbolDataInternal(this->elfdata, in TYPED_TEST() 141 module->Write(s, ALL_SYMBOL_DATA); in TYPED_TEST() 166 elf.AddSection(".note.gnu.build-id", notes, SHT_NOTE); in TYPED_TEST() 170 SymbolTable syms(kLittleEndian, TypeParam::kAddrSize, table); in TYPED_TEST() local [all …]
|
D | synth_elf_unittest.cc | 22 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 123 SymbolTable syms(kLittleEndian, 4, table); in TEST_F() local 135 syms.AddSymbol(kFuncName1, kFuncAddr1, kFuncSize1, in TEST_F() 138 syms.AddSymbol(kFuncName2, kFuncAddr2, kFuncSize2, in TEST_F() 141 syms.AddSymbol(kFuncName3, kFuncAddr3, kFuncSize3, in TEST_F() 178 EXPECT_EQ(kExpectedSymbolSize, syms.Size()); in TEST_F() 181 syms.GetContents(&symbol_contents); in TEST_F() 190 // Doesn't seem worthwhile writing the tests to be endian-independent 191 // when they're unlikely to ever be run on big-endian systems. 203 const size_t kStringTableAlign = 4 - kStringTableSize % 4; in TYPED_TEST() [all …]
|
/external/llvm-project/llvm/docs/CommandGuide/ |
D | llvm-objdump.rst | 1 llvm-objdump - LLVM's object file dumper 4 .. program:: llvm-objdump 7 -------- 9 :program:`llvm-objdump` [*commands*] [*options*] [*filenames...*] 12 ----------- 13 The :program:`llvm-objdump` utility prints the contents of object files and 15 :program:`llvm-objdump` will attempt to read from *a.out*. If *-* is used as a 16 file name, :program:`llvm-objdump` will process a file on its standard input 20 -------- 24 .. option:: -a, --archive-headers [all …]
|
D | llvm-readobj.rst | 1 llvm-readobj - LLVM Object Reader 4 .. program:: llvm-readobj 7 -------- 9 :program:`llvm-readobj` [*options*] [*input...*] 12 ----------- 14 The :program:`llvm-readobj` tool displays low-level format-specific information 17 If ``input`` is "``-``", :program:`llvm-readobj` reads from standard 20 DIFFERENCES TO LLVM-READELF 21 --------------------------- 23 :program:`llvm-readelf` is an alias for the :manpage:`llvm-readobj` tool with a [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/ |
D | SampleProf.h | 1 //===- SampleProf.h - Sampling profiling format support ---------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 97 return uint64_t('S') << (64 - 8) | uint64_t('P') << (64 - 16) | 98 uint64_t('R') << (64 - 24) | uint64_t('O') << (64 - 32) | 99 uint64_t('F') << (64 - 40) | uint64_t('4') << (64 - 48) | 100 uint64_t('2') << (64 - 56) | uint64_t(Format); 178 /// (e.g., the two post-increment instructions in "if (p) x++; else y++;"). 204 /// indirect calls (function pointers, virtual table dispatch), this [all …]
|
/external/llvm-project/llvm/lib/ProfileData/ |
D | SampleProf.cpp | 1 //=-- SampleProf.cpp - Sample profiling format support --------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 15 #include "llvm/Config/llvm-config.h" 141 OS << SI->first << ": " << SI->second; in print() 155 for (const auto &FS : CS->second) { in print() 157 OS << CS->first << ": inlined callee: " << FS.second.getName() << ": "; in print() 175 return (DIL->getLine() - DIL->getScope()->getSubprogram()->getLine()) & in getOffset() 185 for (DIL = DIL->getInlinedAt(); DIL; DIL = DIL->getInlinedAt()) { in findFunctionSamples() [all …]
|
/external/llvm-project/lld/test/MachO/ |
D | entry-symbol.s | 2 # RUN: split-file %s %t 3 # RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %t/not-main.s -o %t/not-main.o 4 # RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %t/libfoo.s -o %t/libfoo.o 5 # RUN: %lld -lSystem -dylib %t/libfoo.o -o %t/libfoo.dylib 7 # RUN: %lld -o %t/not-main %t/not-main.o -e _not_main 8 # RUN: llvm-objdump --macho --all-headers --syms %t/not-main | FileCheck %s 9 # CHECK-LABEL: SYMBOL TABLE 10 # CHECK-NEXT: {{0*}}[[#%x, ENTRY_ADDR:]] {{.*}} __TEXT,__text _not_main 12 # CHECK-NEXT: cmdsize 24 13 # CHECK-NEXT: entryoff [[#ENTRYOFF:]] [all …]
|
/external/libxkbcommon/src/xkbcomp/ |
D | ast-build.c | 19 * GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL 56 #include "xkbcomp-priv.h" 57 #include "ast-build.h" 67 expr->common.type = STMT_EXPR; in ExprCreate() 68 expr->common.next = NULL; in ExprCreate() 69 expr->expr.op = op; in ExprCreate() 70 expr->expr.value_type = type; in ExprCreate() 81 expr->string.str = str; in ExprCreateString() 91 expr->integer.ival = ival; in ExprCreateInteger() 110 expr->boolean.set = set; in ExprCreateBoolean() [all …]
|
D | symbols.c | 19 * GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL 56 #include "xkbcomp-priv.h" 108 if (leveli->num_syms > 1) in ClearLevelInfo() 109 free(leveli->u.syms); in ClearLevelInfo() 122 darray_foreach(leveli, groupi->levels) in ClearGroupInfo() 124 darray_free(groupi->levels); in ClearGroupInfo() 130 to->defined = from->defined; in CopyGroupInfo() 131 to->type = from->type; in CopyGroupInfo() 132 darray_init(to->levels); in CopyGroupInfo() 133 darray_copy(to->levels, from->levels); in CopyGroupInfo() [all …]
|
D | keymap-dump.c | 19 * GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL 54 #include "xkbcomp-priv.h" 70 buf->alloc += BUF_CHUNK_SIZE; in do_realloc() 72 buf->alloc += at_least; in do_realloc() 74 new = realloc(buf->buf, buf->alloc); in do_realloc() 78 buf->buf = new; in do_realloc() 89 available = buf->alloc - buf->size; in check_write_buf() 91 printed = vsnprintf(buf->buf + buf->size, available, fmt, args); in check_write_buf() 103 available = buf->alloc - buf->size; in check_write_buf() 105 printed = vsnprintf(buf->buf + buf->size, available, fmt, args); in check_write_buf() [all …]
|
D | parser.y | 19 GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL 36 #include "xkbcomp/xkbcomp-priv.h" 37 #include "xkbcomp/ast-build.h" 38 #include "xkbcomp/parser-priv.h" 39 #include "scanner-utils.h" 49 scanner_err((param)->scanner, fmt, ##__VA_ARGS__) 52 scanner_warn((param)->scanner, fmt, ##__VA_ARGS__) 84 #define param_scanner param->scanner 87 %pure-parser 88 %lex-param { struct scanner *param_scanner } [all …]
|
/external/flac/include/share/ |
D | windows_unicode_filenames.h | 1 /* libFLAC - Free Lossless Audio Codec library 2 * Copyright (C) 2013-2016 Xiph.Org Foundation 8 * - Redistributions of source code must retain the above copyright 11 * - Redistributions in binary form must reproduce the above copyright 15 * - Neither the name of the Xiph.org Foundation nor the names of its 23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 42 /***** FIXME: KLUDGE: export these syms for flac.exe, metaflac.exe, etc. *****/
|
/external/llvm-project/lld/test/mach-o/ |
D | parse-non-lazy-pointers.yaml | 1 # RUN: ld64.lld -arch i386 -r -print_atoms %s -o %t | FileCheck %s 3 # Test parsing of non-lazy-pointer sections. 6 --- !mach-o 8 file-type: MH_OBJECT 10 has-UUID: false 13 - segment: __TEXT 23 - offset: 0x00000011 27 pc-rel: false 29 - offset: 0x00000000 33 pc-rel: false [all …]
|
D | parse-eh-frame-x86-anon.yaml | 1 # RUN: ld64.lld -arch i386 -r -print_atoms %s -o %t | FileCheck %s 7 --- !mach-o 9 file-type: MH_OBJECT 13 - segment: __TEXT 28 - offset: 0x00000040 31 pc-rel: true 34 - offset: 0x00000035 37 pc-rel: true 40 - offset: 0x00000021 44 pc-rel: false [all …]
|
D | parse-eh-frame-x86-labeled.yaml | 1 # RUN: ld64.lld -arch i386 -r -print_atoms %s -o %t | FileCheck %s 7 --- !mach-o 9 file-type: MH_OBJECT 13 - segment: __TEXT 28 - offset: 0x00000040 31 pc-rel: true 34 - offset: 0x00000035 37 pc-rel: true 40 - offset: 0x00000021 44 pc-rel: false [all …]
|
/external/mesa3d/src/compiler/nir/ |
D | nir_print.c | 46 /** map from nir_variable -> printable name */ 50 struct set *syms; member 52 /* an index used to make new non-conflicting names */ 65 FILE *fp = state->fp; in print_annotation() 67 if (!state->annotations) in print_annotation() 70 struct hash_entry *entry = _mesa_hash_table_search(state->annotations, obj); in print_annotation() 74 const char *note = entry->data; in print_annotation() 75 _mesa_hash_table_remove(state->annotations, entry); in print_annotation() 83 FILE *fp = state->fp; in print_register() 84 if (reg->name != NULL) in print_register() [all …]
|
/external/libxkbcommon/src/ |
D | state.c | 19 * GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL 56 * - AccessX sticky/debounce/etc (will come later) 57 * - pointer keys (may come later) 58 * - key redirects (unlikely) 59 * - messages (very unlikely) 80 /* These may be negative, because of -1 group actions. */ 124 for (unsigned i = 0; i < type->num_entries; i++) in get_entry_for_mods() 125 if (entry_is_active(&type->entries[i]) && in get_entry_for_mods() 126 type->entries[i].mods.mask == mods) in get_entry_for_mods() 127 return &type->entries[i]; in get_entry_for_mods() [all …]
|
D | keymap.c | 45 * GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL 61 keymap->refcnt++; in xkb_keymap_ref() 68 if (!keymap || --keymap->refcnt > 0) in xkb_keymap_unref() 71 if (keymap->keys) { in xkb_keymap_unref() 74 if (key->groups) { in xkb_keymap_unref() 75 for (unsigned i = 0; i < key->num_groups; i++) { in xkb_keymap_unref() 76 if (key->groups[i].levels) { in xkb_keymap_unref() 78 if (key->groups[i].levels[j].num_syms > 1) in xkb_keymap_unref() 79 free(key->groups[i].levels[j].u.syms); in xkb_keymap_unref() 80 free(key->groups[i].levels); in xkb_keymap_unref() [all …]
|
/external/llvm-project/llvm/include/llvm/ProfileData/ |
D | SampleProf.h | 1 //===- SampleProf.h - Sampling profiling format support ---------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 96 return uint64_t('S') << (64 - 8) | uint64_t('P') << (64 - 16) | 97 uint64_t('R') << (64 - 24) | uint64_t('O') << (64 - 32) | 98 uint64_t('F') << (64 - 40) | uint64_t('4') << (64 - 48) | 99 uint64_t('2') << (64 - 56) | uint64_t(Format); 236 /// (e.g., the two post-increment instructions in "if (p) x++; else y++;"). 270 /// indirect calls (function pointers, virtual table dispatch), this [all …]
|
/external/flac/src/libFLAC/ |
D | windows_unicode_filenames.c | 1 /* libFLAC - Free Lossless Audio Codec library 2 * Copyright (C) 2013-2016 Xiph.Org Foundation 8 * - Redistributions of source code must retain the above copyright 11 * - Redistributions in binary form must reproduce the above copyright 15 * - Neither the name of the Xiph.org Foundation nor the names of its 23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 40 /*** FIXME: KLUDGE: export these syms for flac.exe, metaflac.exe, etc. ***/ 42 /* convert UTF-8 back to WCHAR. Caller is responsible for freeing memory */ 50 if ((len = MultiByteToWideChar(CP_UTF8, 0, str, -1, NULL, 0)) == 0) in wchar_from_utf8() 54 if (MultiByteToWideChar(CP_UTF8, 0, str, -1, widestr, len) == 0) { in wchar_from_utf8() [all …]
|
/external/llvm-project/llvm/include/llvm/BinaryFormat/ |
D | XCOFF.h | 1 //===-- llvm/BinaryFormat/XCOFF.h - The XCOFF file format -------*- C++/-*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 32 enum ReservedSectionNum : int16_t { N_DEBUG = -2, N_ABS = -1, N_UNDEF = 0 }; 34 // x_smclas field of x_csect from system header: /usr/include/syms.h 43 XMC_SV = 8, ///< Supervisor Call (32-bit process only) 44 XMC_SV64 = 17, ///< Supervisor Call for 64-bit process 45 XMC_SV3264 = 18, ///< Supervisor Call for both 32- and 64-bit processes 55 XMC_UA = 4, ///< Unclassified - Treated as Read Write [all …]
|
/external/llvm-project/llvm/tools/llvm-objcopy/ |
D | ObjcopyOpts.td | 4 : Eq<"binary-architecture", "Ignored for compatibility">; 5 def B : JoinedOrSeparate<["-"], "B">, 7 HelpText<"Alias for --binary-architecture">; 11 def F : JoinedOrSeparate<["-"], "F">, 13 HelpText<"Alias for --target">; 15 defm input_target : Eq<"input-target", "Format of the input file">, 17 def I : JoinedOrSeparate<["-"], "I">, 19 HelpText<"Alias for --input-target">; 21 defm output_target : Eq<"output-target", "Format of the output file">, 23 def O : JoinedOrSeparate<["-"], "O">, [all …]
|
/external/llvm-project/llvm/tools/llvm-readobj/ |
D | llvm-readobj.cpp | 1 //===- llvm-readobj.cpp - Dump contents of an Object File -----------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 19 //===----------------------------------------------------------------------===// 21 #include "llvm-readobj.h" 55 // --all, -a 58 cl::desc("Equivalent to setting: --file-headers, --program-headers, " 59 "--section-headers, --symbols, --relocations, " 60 "--dynamic-table, --notes, --version-info, --unwind, " 61 "--section-groups and --elf-hash-histogram.")); [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ |
D | XCOFF.h | 1 //===-- llvm/BinaryFormat/XCOFF.h - The XCOFF file format -------*- C++/-*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 25 enum ReservedSectionNum { N_DEBUG = -2, N_ABS = -1, N_UNDEF = 0 }; 27 // x_smclas field of x_csect from system header: /usr/include/syms.h 36 XMC_SV = 8, ///< Supervisor Call (32-bit process only) 37 XMC_SV64 = 17, ///< Supervisor Call for 64-bit process 38 XMC_SV3264 = 18, ///< Supervisor Call for both 32- and 64-bit processes 48 XMC_UA = 4, ///< Unclassified - Treated as Read Write [all …]
|