HomeSort by relevance Sort by last modified time
    Searched full:abbrev (Results 151 - 175 of 621) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/strace/
printrusage.c 53 if (abbrev(tcp))
107 if (abbrev(tcp))
dirent.c 116 if (!abbrev(tcp))
121 if (!abbrev(tcp)) {
151 if (!abbrev(tcp))
file_ioctl.c 182 /* Limit how many elements we print in abbrev mode. */
183 if (abbrev(tcp) && args.dest_count > count)
229 if (abbrev(tcp)) {
quota.c 198 if (!abbrev(tcp)) {
228 if (!abbrev(tcp)) {
273 if (!abbrev(tcp)) {
343 if (!abbrev(tcp)) {
377 if (!abbrev(tcp)) {
dm.c 139 if (abbrev(tcp)) {
212 if (abbrev(tcp)) {
266 if (abbrev(tcp)) {
351 if (abbrev(tcp)) {
403 if (abbrev(tcp)) {
436 if (abbrev(tcp)) {
  /toolchain/binutils/binutils-2.27/gold/
reduced_debug_output.h 124 get_die_end(unsigned char* die, unsigned char* abbrev,
131 // Each debug info section needs to be associated with a debug abbrev section
reduced_debug_output.cc 44 unsigned char* die, unsigned char* abbrev, unsigned char** die_end,
51 uint64_t attribute = read_unsigned_LEB_128(abbrev, &LEB_size);
52 abbrev += LEB_size;
54 static_cast<elfcpp::DW_FORM>(read_unsigned_LEB_128(abbrev,
56 abbrev += LEB_size;
dwarf_reader.h 183 // An abbrev code entry.
222 // Read the abbrev table from an object file.
228 // If we've already read this abbrev table, return immediately.
236 // Return the abbrev code entry for CODE. This is a fast path for
237 // abbrev codes that are in the direct lookup table. If not found
249 // Read the abbrev table from an object file.
255 // Lookup the abbrev code entry for CODE.
259 // Store an abbrev code entry for CODE.
269 // Clear the abbrev code table and release the memory it uses.
275 // The section index of the current abbrev table
    [all...]
  /external/e2fsprogs/lib/ss/
std_rqs.c 34 "abbrev",
  /external/llvm/test/tools/dsymutil/Inputs/scattered-reloc/
1.s 82 Lset0 = Lsection_abbrev-Lsection_abbrev @ Offset Into Abbrev. Section
85 .byte 1 @ Abbrev [1] 0xb:0x2d DW_TAG_compile_unit
92 .byte 2 @ Abbrev [2] 0x1e:0x12 DW_TAG_variable
101 .byte 3 @ Abbrev [3] 0x30:0x7 DW_TAG_base_type
  /external/llvm/unittests/Bitcode/
BitstreamReaderTest.cpp 200 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
201 Abbrev->Add(BitCodeAbbrevOp(RecordID));
202 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
203 AbbrevID = Stream.EmitAbbrev(Abbrev);
  /external/pdfium/testing/tools/
githelper.py 46 ['git', 'rev-parse', '--abbrev-ref', 'HEAD'],
  /art/compiler/debug/dwarf/
debug_info_entry_writer.h 55 // Write abbrev code for the previous entry.
61 // Abbrev code placeholder of sufficient size.
73 // Write abbrev code for this entry.
  /external/ltp/testcases/kernel/device-drivers/v4l/user_space/doc/spec/
x2123.htm 464 CLASS="ABBREV"
471 CLASS="ABBREV"
522 CLASS="ABBREV"
573 CLASS="ABBREV"
631 CLASS="ABBREV"
689 CLASS="ABBREV"
695 CLASS="ABBREV"
740 CLASS="ABBREV"
746 CLASS="ABBREV"
794 CLASS="ABBREV"
    [all...]
r12051.htm 509 CLASS="ABBREV"
515 CLASS="ABBREV"
537 CLASS="ABBREV"
559 CLASS="ABBREV"
581 CLASS="ABBREV"
587 CLASS="ABBREV"
  /toolchain/binutils/binutils-2.27/bfd/
dwarf2.c 222 /* The abbrev hash table. */
282 /* This data structure holds the information of an abbrev. */
285 unsigned int number; /* Number identifying abbrev. */
843 /* Lookup an abbrev_info structure in the abbrev hash table. */
849 struct abbrev_info *abbrev; local
852 abbrev = abbrevs[hash_number];
854 while (abbrev)
856 if (abbrev->number == number)
857 return abbrev;
859 abbrev = abbrev->next
936 struct abbrev_info *abbrev = abbrevs[i]; local
2285 struct abbrev_info *abbrev; local
2473 struct abbrev_info *abbrev; local
2737 struct abbrev_info *abbrev; local
4213 struct abbrev_info *abbrev = abbrevs[i]; local
    [all...]
  /frameworks/base/core/java/android/text/format/
DateUtils.java 131 * Request the full spelled-out name. For use with the 'abbrev' parameter of
142 * Request an abbreviated version of the name. For use with the 'abbrev'
154 * For use with the 'abbrev' parameter of {@link #getDayOfWeekString} and {@link #getMonthString}.
175 * For use with the 'abbrev' parameter of {@link #getDayOfWeekString} and {@link #getMonthString}.
189 * @param abbrev One of {@link #LENGTH_LONG}, {@link #LENGTH_SHORT},
199 public static String getDayOfWeekString(int dayOfWeek, int abbrev) {
202 switch (abbrev) {
229 * @param abbrev One of {@link #LENGTH_LONG}, {@link #LENGTH_MEDIUM},
237 public static String getMonthString(int month, int abbrev) {
240 switch (abbrev) {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
dwarf.go 154 // attribute (but it will only be written out if it is listed in the abbrev).
157 func newdie(ctxt *Link, parent *dwarf.DWDie, abbrev int, name string, version int) *dwarf.DWDie {
159 die.Abbrev = abbrev
165 if name != "" && (abbrev <= dwarf.DW_ABRV_VARIABLE || abbrev >= dwarf.DW_ABRV_NULLTYPE) {
166 if abbrev != dwarf.DW_ABRV_VARIABLE || version == 0 {
167 if abbrev == dwarf.DW_ABRV_COMPUNIT {
186 if die.Abbrev == dwarf.DW_ABRV_TYPEDECL {
291 dwarf.Uleb128put(ctxt, s, int64(die.Abbrev))
    [all...]
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
dwarf.go 154 // attribute (but it will only be written out if it is listed in the abbrev).
157 func newdie(ctxt *Link, parent *dwarf.DWDie, abbrev int, name string, version int) *dwarf.DWDie {
159 die.Abbrev = abbrev
165 if name != "" && (abbrev <= dwarf.DW_ABRV_VARIABLE || abbrev >= dwarf.DW_ABRV_NULLTYPE) {
166 if abbrev != dwarf.DW_ABRV_VARIABLE || version == 0 {
167 if abbrev == dwarf.DW_ABRV_COMPUNIT {
186 if die.Abbrev == dwarf.DW_ABRV_TYPEDECL {
291 dwarf.Uleb128put(ctxt, s, int64(die.Abbrev))
    [all...]
  /external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
NaClBitCodes.h 40 // The standard abbrev namespace always has a way to exit a block, enter a
46 /// DEFINE_ABBREV - Defines an abbrev for the current block. It consists
57 // This is not a code, this is a marker for the first abbrev assignment.
285 int Compare(const NaClBitCodeAbbrev &Abbrev) const {
288 size_t AbbrevOperandListSize = Abbrev.OperandList.size();
296 if (int Diff = OperandList[I].Compare(Abbrev.OperandList[I]))
  /external/llvm/include/llvm/Bitcode/
BitCodes.h 35 // The standard abbrev namespace always has a way to exit a block, enter a
41 /// DEFINE_ABBREV - Defines an abbrev for the current block. It consists
52 // This is not a code, this is a marker for the first abbrev assignment.
  /external/swiftshader/third_party/LLVM/include/llvm/Bitcode/
BitCodes.h 33 // The standard abbrev namespace always has a way to exit a block, enter a
39 /// DEFINE_ABBREV - Defines an abbrev for the current block. It consists
50 // This is not a code, this is a marker for the first abbrev assignment.
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Bitcode/
BitCodes.h 42 // The standard abbrev namespace always has a way to exit a block, enter a
48 /// DEFINE_ABBREV - Defines an abbrev for the current block. It consists
59 // This is not a code, this is a marker for the first abbrev assignment.
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Bitcode/
BitCodes.h 42 // The standard abbrev namespace always has a way to exit a block, enter a
48 /// DEFINE_ABBREV - Defines an abbrev for the current block. It consists
59 // This is not a code, this is a marker for the first abbrev assignment.
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Bitcode/
BitCodes.h 42 // The standard abbrev namespace always has a way to exit a block, enter a
48 /// DEFINE_ABBREV - Defines an abbrev for the current block. It consists
59 // This is not a code, this is a marker for the first abbrev assignment.

Completed in 1108 milliseconds

1 2 3 4 5 67 8 91011>>