HomeSort by relevance Sort by last modified time
    Searched full:abbrev (Results 1 - 25 of 257) 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/clang/lib/Frontend/
SerializedDiagnosticPrinter.cpp 337 static void AddSourceLocationAbbrev(llvm::BitCodeAbbrev *Abbrev) {
339 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // File ID.
340 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Line.
341 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Column.
342 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Offset;
345 static void AddRangeLocationAbbrev(llvm::BitCodeAbbrev *Abbrev) {
346 AddSourceLocationAbbrev(Abbrev);
347 AddSourceLocationAbbrev(Abbrev);
361 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
362 Abbrev->Add(BitCodeAbbrevOp(RECORD_VERSION))
    [all...]
  /external/clang/test/CodeGenObjC/
debug-info-self.m 3 // abbrev code emits another DT_artificial comment.
  /frameworks/base/tests/RenderScriptTests/tests/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 38 ; ARGUMENT: {{.*Abbrev.*DW_TAG_formal_parameter}}
39 ; ARGUMENT: {{.*Abbrev.*DW_TAG_formal_parameter}}
40 ; ARGUMENT-NOT: {{.*Abbrev.*DW_TAG_formal_parameter}}
45 ; VARIABLE: {{.*Abbrev.*DW_TAG_variable}}
46 ; VARIABLE: {{.*Abbrev.*DW_TAG_variable}}
47 ; VARIABLE-NOT: {{.*Abbrev.*DW_TAG_variable}}
  /external/e2fsprogs/lib/ss/
std_rqs.ct 24 abbrev, ab;
ss_internal.h 28 char *name; /* abbrev name */
29 char **abbrev; /* new tokens to insert */ member in struct:_ss_abbrev_entry
  /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 90 ;; --------------------- Abbrev table -----------------------------
92 (defvar llvm-mode-abbrev-table nil
93 "Abbrev table used while in LLVM mode.")
94 (define-abbrev-table 'llvm-mode-abbrev-table ())
122 (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;
dwarf_offabbrev.c 65 Dwarf_Abbrev *abbrev = __libdw_getabbrev (dbg, NULL, offset, lengthp,
68 if (abbrev == NULL)
71 return abbrev == DWARF_END_ABBREV ? 1 : 0;
  /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:__anon21356
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;
  /bionic/libc/tools/zoneinfo/
ZoneInfo.java 70 byte[] abbrev = new byte[ngmtoff];
74 abbrev[i] = data[base + 6 * i + 5];
79 return new ZoneInfo(name, transitions, type, gmtoff, isdst, abbrev, data, base);
90 int[] gmtoff, byte[] isdst, byte[] abbrev,
115 abbrev[mTypes[lastdst] & 0xFF]);
119 abbrev[mTypes[laststd] & 0xFF]);
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 54 // VALUE_SYMTAB_BLOCK abbrev id's.
60 // CONSTANTS_BLOCK abbrev id's.
66 // FUNCTION_BLOCK abbrev id's.
249 // Abbrev for TYPE_CODE_POINTER.
257 // Abbrev for TYPE_CODE_FUNCTION.
268 // Abbrev for TYPE_CODE_STRUCT_ANON.
277 // Abbrev for TYPE_CODE_STRUCT_NAME.
284 // Abbrev for TYPE_CODE_STRUCT_NAMED.
294 // Abbrev for TYPE_CODE_STRUCT.
303 // Abbrev for TYPE_CODE_ARRAY
    [all...]

Completed in 4335 milliseconds

1 2 3 4 5 6 7 8 91011