HomeSort by relevance Sort by last modified time
    Searched defs:abb (Results 1 - 3 of 3) sorted by null

  /external/elfutils/libdw/
dwarf_tag.c 41 Dwarf_Abbrev *abb; local
48 abb = Dwarf_Abbrev_Hash_find (&cu->abbrev_hash, code, NULL);
49 if (abb == NULL)
56 abb = __libdw_getabbrev (cu->dbg, cu, cu->last_abbrev_offset, &length,
58 if (abb == NULL || abb == DWARF_END_ABBREV)
68 if (abb->code == code)
74 if (unlikely (abb == NULL))
75 abb = DWARF_END_ABBREV;
77 return abb;
    [all...]
dwarf_getabbrev.c 84 Dwarf_Abbrev *abb = NULL; local
86 || (abb = Dwarf_Abbrev_Hash_find (&cu->abbrev_hash, code, NULL)) == NULL)
89 abb = libdw_typed_alloc (dbg, Dwarf_Abbrev);
91 abb = result;
97 if (unlikely (abb->offset != offset))
114 abb->code = code;
117 get_uleb128 (abb->tag, abbrevp, end);
120 abb->has_children = *abbrevp++ == DW_CHILDREN_yes;
121 abb->attrp = (unsigned char *) abbrevp;
122 abb->offset = offset
    [all...]
  /external/slf4j/slf4j-migrator/src/test/java/org/slf4j/migrator/helper/
AbbreviatorTest.java 53 Abbreviator abb = new Abbreviator(2, 100, FS); local
54 String r = abb.abbreviate(INPUT_0);
59 Abbreviator abb = new Abbreviator(3, 8, FS); local
60 String r = abb.abbreviate(INPUT_0);
64 Abbreviator abb = new Abbreviator(3, 8, FS); local
65 String r = abb.abbreviate(INPUT_0);
71 Abbreviator abb = new Abbreviator(2, 20, FS); local
73 String r = abb.abbreviate(in);
78 Abbreviator abb = new Abbreviator(2, 100, FS); local
79 String r = abb.abbreviate("hello")
86 Abbreviator abb = new Abbreviator(0, 100, FS); local
118 Abbreviator abb = new Abbreviator(fixedLen, targetLen, FS); local
    [all...]

Completed in 98 milliseconds