HomeSort by relevance Sort by last modified time
    Searched full:abbrev (Results 1 - 25 of 290) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/tests/
run-show-abbrev.sh 31 testrun_compare ./show-abbrev testfile testfile2 <<\EOF
32 abbrev[0]: code = 1, tag = 17, children = 1
33 abbrev[0]: attr[0]: code = 16, form = 6, offset = 0
34 abbrev[0]: attr[1]: code = 18, form = 1, offset = 2
35 abbrev[0]: attr[2]: code = 17, form = 1, offset = 4
36 abbrev[0]: attr[3]: code = 3, form = 8, offset = 6
37 abbrev[0]: attr[4]: code = 27, form = 8, offset = 8
38 abbrev[0]: attr[5]: code = 37, form = 8, offset = 10
39 abbrev[0]: attr[6]: code = 19, form = 11, offset = 12
40 abbrev[19]: code = 2, tag = 46, children =
    [all...]
show-abbrev.c 67 Dwarf_Abbrev *abbrev = dwarf_getabbrev (&die, offset, &length); local
68 if (abbrev == NULL || abbrev == DWARF_END_ABBREV)
72 unsigned tag = dwarf_getabbrevtag (abbrev);
81 unsigned code = dwarf_getabbrevcode (abbrev);
90 int children = dwarf_abbrevhaschildren (abbrev);
99 printf ("abbrev[%llu]: code = %u, tag = %u, children = %d\n",
103 if (dwarf_getattrcnt (abbrev, &attrcnt) != 0)
116 if (dwarf_getabbrevattr (abbrev, j, &attr_num, &attr_form,
118 printf ("dwarf_getabbrevattr for abbrev[%llu] and index %zu failed\n"
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
dwarf2-info.c 218 dwarf2_add_abbrev_attr(dwarf2_abbrev *abbrev, dwarf_attribute name,
224 STAILQ_INSERT_TAIL(&abbrev->attrs, attr, link);
266 dwarf2_abbrev *abbrev; local
278 abbrev = yasm_xmalloc(sizeof(dwarf2_abbrev));
279 abc = yasm_bc_create_common(&dwarf2_abbrev_bc_callback, abbrev, 0);
280 abbrev->id = 1;
281 abbrev->tag = DW_TAG_compile_unit;
282 abbrev->has_children = 0;
283 abc->len = yasm_size_uleb128(abbrev->id) + yasm_size_uleb128(abbrev->tag
369 dwarf2_abbrev *abbrev = (dwarf2_abbrev *)contents; local
404 dwarf2_abbrev *abbrev = (dwarf2_abbrev *)bc->contents; local
    [all...]
  /external/clang/lib/Frontend/
SerializedDiagnosticPrinter.cpp 358 static void AddSourceLocationAbbrev(llvm::BitCodeAbbrev *Abbrev) {
360 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // File ID.
361 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Line.
362 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Column.
363 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Offset;
366 static void AddRangeLocationAbbrev(llvm::BitCodeAbbrev *Abbrev) {
367 AddSourceLocationAbbrev(Abbrev);
368 AddSourceLocationAbbrev(Abbrev);
385 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
386 Abbrev->Add(BitCodeAbbrevOp(RECORD_VERSION))
    [all...]
  /external/chromium_org/tools/android/findbugs_plugin/
findbugs.xml 14 <BugPattern type="CHROMIUM_SYNCHRONIZED_THIS" abbrev="CST" category="CORRECTNESS"/>
17 <BugPattern type="CHROMIUM_SYNCHRONIZED_METHOD" abbrev="CSM" category="CORRECTNESS"/>
  /external/llvm/utils/git-svn/
git-svnup 10 OLD_BRANCH=$(git rev-parse --abbrev-ref HEAD)
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
math_agree.rs 11 #define DECLARE_INPUT_SET(type, abbrev) \
12 volatile type rand_##abbrev##1_0, rand_##abbrev##1_1; \
13 volatile type##2 rand_##abbrev##2_0, rand_##abbrev##2_1; \
14 volatile type##3 rand_##abbrev##3_0, rand_##abbrev##3_1; \
15 volatile type##4 rand_##abbrev##4_0, rand_##abbrev##4_1;
30 #define DECLARE_REFERENCE_SET_VEC_VEC(type, abbrev, func)
    [all...]
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
math_agree.rs 11 #define DECLARE_INPUT_SET(type, abbrev) \
12 volatile type rand_##abbrev##1_0, rand_##abbrev##1_1; \
13 volatile type##2 rand_##abbrev##2_0, rand_##abbrev##2_1; \
14 volatile type##3 rand_##abbrev##3_0, rand_##abbrev##3_1; \
15 volatile type##4 rand_##abbrev##4_0, rand_##abbrev##4_1;
30 #define DECLARE_REFERENCE_SET_VEC_VEC(type, abbrev, func)
    [all...]
  /external/llvm/test/DebugInfo/
inlined-vars.ll 36 ; ARGUMENT: {{.*Abbrev.*DW_TAG_formal_parameter}}
37 ; ARGUMENT: {{.*Abbrev.*DW_TAG_formal_parameter}}
38 ; ARGUMENT-NOT: {{.*Abbrev.*DW_TAG_formal_parameter}}
43 ; VARIABLE: {{.*Abbrev.*DW_TAG_variable}}
44 ; VARIABLE: {{.*Abbrev.*DW_TAG_variable}}
45 ; VARIABLE-NOT: {{.*Abbrev.*DW_TAG_variable}}
  /external/e2fsprogs/lib/ss/
std_rqs.ct 24 abbrev, ab;
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 106 // Free blockinfo abbrev info.
226 // Push the outer block's abbrev set onto the stack, start out with an
227 // empty abbrev set.
232 // to the abbrev list.
264 // Restore the inner block's code size and abbrev table.
275 /// EmitAbbreviatedLiteral - Emit a literal value according to its abbrev
276 /// record. This is a no-op, since the abbrev specifies the literal to use.
280 // If the abbrev specifies the literal value to use, don't emit
283 "Invalid abbrev for record!");
314 void EmitRecordWithAbbrevImpl(unsigned Abbrev, SmallVectorImpl<uintty> &Vals
    [all...]
  /external/llvm/utils/emacs/
llvm-mode.el 91 ;; --------------------- Abbrev table -----------------------------
93 (defvar llvm-mode-abbrev-table nil
94 "Abbrev table used while in LLVM mode.")
95 (define-abbrev-table 'llvm-mode-abbrev-table ())
123 (setq local-abbrev-table llvm-mode-abbrev-table)
tablegen-mode.el 80 ;; --------------------- Abbrev table -----------------------------
82 (defvar tablegen-mode-abbrev-table nil
83 "Abbrev table used while in TableGen mode.")
84 (define-abbrev-table 'tablegen-mode-abbrev-table ())
107 local-abbrev-table tablegen-mode-abbrev-table
  /external/elfutils/libdw/
dwarf_child.c 76 Dwarf_Abbrev *abbrevp = die->abbrev;
80 die->abbrev = abbrevp ?: DWARF_END_ABBREV;
82 if (unlikely (die->abbrev == DWARF_END_ABBREV))
94 const unsigned char *attrp = die->abbrev->attrp;
164 if (die->abbrev != DWARF_END_ABBREV
165 && (die->abbrev == NULL || die->abbrev->has_children))
167 if (unlikely (die->abbrev == (Dwarf_Abbrev *) -1l))
171 if (! die->abbrev->has_children)
dwarf_abbrevhaschildren.c 61 dwarf_abbrevhaschildren (abbrev)
62 Dwarf_Abbrev *abbrev;
64 return abbrev == NULL ? -1 : abbrev->has_children;
dwarf_getabbrevcode.c 61 dwarf_getabbrevcode (abbrev)
62 Dwarf_Abbrev *abbrev;
64 return abbrev == NULL ? 0 : abbrev->code;
dwarf_getabbrevtag.c 61 dwarf_getabbrevtag (abbrev)
62 Dwarf_Abbrev *abbrev;
64 return abbrev == NULL ? 0 : abbrev->tag;
dwarf_getattrcnt.c 59 dwarf_getattrcnt (abbrev, attrcntp)
60 Dwarf_Abbrev *abbrev;
63 if (abbrev == NULL)
66 *attrcntp = abbrev->attrcnt;
dwarf_haschildren.c 64 Dwarf_Abbrev *abbrevp = die->abbrev;
75 die->abbrev = abbrevp ?: DWARF_END_ABBREV;
77 if (unlikely (die->abbrev == DWARF_END_ABBREV))
83 return die->abbrev->has_children;
dwarf_getabbrevattr.c 61 dwarf_getabbrevattr (abbrev, idx, namep, formp, offsetp)
62 Dwarf_Abbrev *abbrev;
68 if (abbrev == NULL)
72 const unsigned char *attrp = abbrev->attrp;
97 *offsetp = (start_attrp - abbrev->attrp) + abbrev->offset;
dwarf_getattrs.c 71 if (die->abbrev == NULL)
73 die->abbrev = __libdw_findabbrev (die->cu, u128);
75 if (unlikely (die->abbrev == DWARF_END_ABBREV))
83 const unsigned char *attrp = die->abbrev->attrp + offset;
120 return remembered_attrp - die->abbrev->attrp;
  /external/llvm/test/DebugInfo/SystemZ/
variable-loc.s 107 .long .L.debug_abbrev_begin # Offset Into Abbrev. Section
109 .byte 1 # Abbrev [1] 0xb:0x94 DW_TAG_compile_unit
116 .byte 2 # Abbrev [2] 0x26:0x7 DW_TAG_subprogram
122 .byte 3 # Abbrev [3] 0x2d:0xb DW_TAG_subprogram
129 .byte 4 # Abbrev [4] 0x38:0x7 DW_TAG_base_type
133 .byte 5 # Abbrev [5] 0x3f:0xb DW_TAG_subprogram
141 .byte 6 # Abbrev [6] 0x4a:0x7 DW_TAG_base_type
145 .byte 7 # Abbrev [7] 0x51:0x5 DW_TAG_array_type
147 .byte 8 # Abbrev [8] 0x56:0x48 DW_TAG_subprogram
154 .byte 9 # Abbrev [9] 0x6d:0x30 DW_TAG_lexical_bloc
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
  /external/chromium/chrome/browser/autofill/
select_control_handler.cc 140 string16 abbrev, full; local
142 abbrev = value;
145 abbrev = State::Abbreviation(value);
150 if (!abbrev.empty() && SetSelectControlValue(abbrev, field))
  /ndk/sources/host-tools/make-3.81/
signame.c 53 const char *abbrev; member in struct:__anon33230
61 /* Enter signal number NUMBER into the tables with ABBREV and NAME. */
64 init_sig (int number, const char *abbrev, const char *name)
76 sig_table[sig_table_nelts++].abbrev = abbrev;

Completed in 200 milliseconds

1 2 3 4 5 6 7 8 91011>>