/external/clang/test/SemaCXX/ |
D | bitfield.cpp | 6 typedef unsigned Unsigned; typedef 11 typedef __typeof__(t.n) Unsigned; // Bitfield is unsigned typedef 16 typedef __typeof__(t.n = 0) Unsigned; // Assignment produces an lvalue... typedef 17 typedef __typeof__(t.n += 0) Unsigned; typedef 18 typedef __typeof__(t.n *= 0) Unsigned; typedef 23 typedef __typeof__(++t.n) Unsigned; // Increment is equivalent to compound-assignment. typedef 24 typedef __typeof__(--t.n) Unsigned; typedef 28 typedef __typeof__(t.n++) Unsigned; // Post-increment's result has the type typedef 29 typedef __typeof__(t.n--) Unsigned; // of the operand... typedef 30 typedef __typeof__(+(t.n++)) Unsigned; // ... and is not a bit-field (because typedef [all …]
|
/external/lldb/tools/lldb-perf/lib/ |
D | Results.h | 27 class Unsigned; variable 39 Unsigned enumerator 90 Unsigned * 93 if (m_type == Type::Unsigned) in GetAsUnsigned() 94 return (Unsigned *)this; in GetAsUnsigned() 260 class Unsigned : public Result 263 Unsigned (const char *name, const char *description, uint64_t value) : in Unsigned() function 264 Result (Type::Unsigned, name, description), in Unsigned() 270 ~Unsigned() in ~Unsigned()
|
D | Results.cpp | 82 case Results::Result::Type::Unsigned: in AddResultToArray() 147 case Results::Result::Type::Unsigned: in AddResultToDictionary() 191 m_dictionary[std::string(name)] = ResultSP (new Unsigned (name, description, value)); in AddUnsigned()
|
D | Gauge.cpp | 38 return Results::ResultSP (new Results::Unsigned (NULL, NULL, value)); in GetResult()
|
/external/llvm/unittests/ADT/ |
D | StringRefTest.cpp | 372 } Unsigned[] = variable 419 for (size_t i = 0; i < array_lengthof(Unsigned); ++i) { in TEST() 420 bool U8Success = StringRef(Unsigned[i].Str).getAsInteger(0, U8); in TEST() 421 if (static_cast<uint8_t>(Unsigned[i].Expected) == Unsigned[i].Expected) { in TEST() 423 EXPECT_EQ(U8, Unsigned[i].Expected); in TEST() 427 bool U16Success = StringRef(Unsigned[i].Str).getAsInteger(0, U16); in TEST() 428 if (static_cast<uint16_t>(Unsigned[i].Expected) == Unsigned[i].Expected) { in TEST() 430 EXPECT_EQ(U16, Unsigned[i].Expected); in TEST() 434 bool U32Success = StringRef(Unsigned[i].Str).getAsInteger(0, U32); in TEST() 435 if (static_cast<uint32_t>(Unsigned[i].Expected) == Unsigned[i].Expected) { in TEST() [all …]
|
/external/clang/test/Index/ |
D | index-templates.cpp | 42 typedef unsigned Unsigned; typedef 44 template<typename T, Unsigned Value> 54 f<Unsigned, OneDimension, array>(array<Unsigned, OneDimension>()); in template_exprs() 55 Z4().getAs<Unsigned>(); in template_exprs()
|
/external/clang/test/Sema/ |
D | bitfield.c | 59 typedef unsigned Unsigned; typedef 63 typedef __typeof__(t5.n) Unsigned; // Bitfield is unsigned typedef 75 typedef __typeof__(+(t5.n++)) Unsigned; // Post-increment is underspecified, but seems to typedef 76 typedef __typeof__(+(t5.n--)) Unsigned; // also act like compound-assignment. typedef
|
/external/vixl/doc/ |
D | supported-instructions.md | 1322 Unsigned bitfield insert with zero at right. 1332 Unsigned bitfield move. 1342 Unsigned bitfield extract. 1352 Unsigned integer divide. 1359 Unsigned long multiply and accumulate: 32 x 32 + 64 -> 64-bit. 1369 Unsigned long multiply and subtract: 64 - (32 x 32) -> 64-bit. 1379 Unsigned extend byte. 1386 Unsigned extend halfword. 1393 Unsigned extend word. 3992 Unsigned absolute difference and accumulate. [all …]
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
D | DWARFDebugInfoEntry.cpp | 326 ((DWARFCompileUnit*)cu)->SetBaseAddress(form_value.Unsigned()); in Extract() 788 lo_pc = form_value.Unsigned(); in GetDIENamesAndRanges() 796 lo_pc = form_value.Unsigned(); in GetDIENamesAndRanges() 800 hi_pc = form_value.Unsigned(); in GetDIENamesAndRanges() 813 debug_ranges->FindRanges(form_value.Unsigned(), ranges); in GetDIENamesAndRanges() 842 decl_file = form_value.Unsigned(); in GetDIENamesAndRanges() 847 decl_line = form_value.Unsigned(); in GetDIENamesAndRanges() 852 decl_column = form_value.Unsigned(); in GetDIENamesAndRanges() 857 call_file = form_value.Unsigned(); in GetDIENamesAndRanges() 862 call_line = form_value.Unsigned(); in GetDIENamesAndRanges() [all …]
|
D | DWARFFormValue.cpp | 283 uint64_t uvalue = Unsigned(); in Dump() 521 uint64_t a = a_value.Unsigned(); in Compare() 522 uint64_t b = b_value.Unsigned(); in Compare() 563 uint64_t a_len = a_value.Unsigned(); in Compare() 564 uint64_t b_len = b_value.Unsigned(); in Compare() 570 return memcmp(a_value.BlockData(), b_value.BlockData(), a_value.Unsigned()); in Compare()
|
D | SymbolFileDWARF.cpp | 1458 uval64 = form_value.Unsigned(); in ParseTemplateDIE() 1752 …: decl.SetFile(sc.comp_unit->GetSupportFiles().GetFileSpecAtIndex(form_value.Unsigned())); break; in ParseChildMembers() 1753 case DW_AT_decl_line: decl.SetLine(form_value.Unsigned()); break; in ParseChildMembers() 1754 case DW_AT_decl_column: decl.SetColumn(form_value.Unsigned()); break; in ParseChildMembers() 1757 case DW_AT_bit_offset: bit_offset = form_value.Unsigned(); break; in ParseChildMembers() 1758 case DW_AT_bit_size: bit_size = form_value.Unsigned(); break; in ParseChildMembers() 1759 case DW_AT_byte_size: byte_size = form_value.Unsigned(); break; in ParseChildMembers() 1766 uint32_t block_length = form_value.Unsigned(); in ParseChildMembers() 1788 member_byte_offset = form_value.Unsigned(); in ParseChildMembers() 1792 … case DW_AT_accessibility: accessibility = DW_ACCESS_to_AccessType (form_value.Unsigned()); break; in ParseChildMembers() [all …]
|
D | DWARFFormValue.h | 61 uint64_t Unsigned() const { return m_value.value.uval; } in Unsigned() function
|
/external/dexmaker/src/dx/java/com/android/dx/util/ |
D | Unsigned.java | 22 public final class Unsigned { class 23 private Unsigned() {} in Unsigned() method in Unsigned
|
D | Uint.java | 30 return Unsigned.compare(intValue, uint.intValue); in compareTo()
|
/external/llvm/include/llvm/ADT/ |
D | APSInt.h | 267 static APSInt getMaxValue(uint32_t numBits, bool Unsigned) { in getMaxValue() argument 268 return APSInt(Unsigned ? APInt::getMaxValue(numBits) in getMaxValue() 269 : APInt::getSignedMaxValue(numBits), Unsigned); in getMaxValue() 274 static APSInt getMinValue(uint32_t numBits, bool Unsigned) { in getMinValue() argument 275 return APSInt(Unsigned ? APInt::getMinValue(numBits) in getMinValue() 276 : APInt::getSignedMinValue(numBits), Unsigned); in getMinValue()
|
/external/openfst/src/include/fst/ |
D | string.h | 106 template <class Unsigned> 108 CompactFst<A, StringCompactor<A>, Unsigned> *fst) const { in Compile() 112 template <class Unsigned> 114 CompactFst<A, WeightedStringCompactor<A>, Unsigned> *fst,
|
D | compact-fst.h | 135 typedef U Unsigned; typedef 174 Unsigned States(ssize_t i) const { return states_[i]; } in States() 190 Unsigned *states_; 229 states_ = new Unsigned[nstates_ + 1]; in CompactFstData() 338 states_ = new Unsigned[nstates_ + 1]; in CompactFstData() 377 size_t b = (data->nstates_ + 1) * sizeof(Unsigned); in Read() 384 data->states_ = static_cast<Unsigned *>( in Read() 418 (nstates_ + 1) * sizeof(Unsigned)); in Write() 463 typedef U Unsigned; typedef 568 Unsigned i, num_arcs; in NumArcs() [all …]
|
D | const-fst.h | 56 typedef U Unsigned; typedef 114 Unsigned pos; // Start of state's arcs in *arcs_ 115 Unsigned narcs; // Number of arcs (per state) 116 Unsigned niepsilons; // # of input epsilons 117 Unsigned noepsilons; // # of output epsilons 267 typedef U Unsigned; typedef
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | APSIntType.h | 25 APSIntType(uint32_t Width, bool Unsigned) in APSIntType() argument 26 : BitWidth(Width), IsUnsigned(Unsigned) {} in APSIntType()
|
/external/clang/include/clang/ASTMatchers/Dynamic/ |
D | VariantValue.h | 256 VariantValue(unsigned Unsigned); 267 void setUnsigned(unsigned Unsigned); 313 unsigned Unsigned; member
|
/external/protobuf/gtest/test/ |
D | gtest_output_test_golden_win.txt | 373 [----------] 2 tests from Unsigned/TypedTestP/0, where TypeParam = unsigned char 374 [ RUN ] Unsigned/TypedTestP/0.Success 375 [ OK ] Unsigned/TypedTestP/0.Success 376 [ RUN ] Unsigned/TypedTestP/0.Failure 382 [ FAILED ] Unsigned/TypedTestP/0.Failure 383 [----------] 2 tests from Unsigned/TypedTestP/1, where TypeParam = unsigned int 384 [ RUN ] Unsigned/TypedTestP/1.Success 385 [ OK ] Unsigned/TypedTestP/1.Success 386 [ RUN ] Unsigned/TypedTestP/1.Failure 392 [ FAILED ] Unsigned/TypedTestP/1.Failure [all …]
|
/external/llvm/test/MC/Disassembler/AArch64/ |
D | neon-instructions.txt | 142 # Vector Absolute Difference and Accumulate (Signed, Unsigned) 143 # Vector Absolute Difference (Signed, Unsigned) 199 # Vector Compare Mask Higher or Same (Unsigned Integer) 211 # Vector Compare Mask Higher (Unsigned Integer) 308 # Vector Integer Halving Add (Unsigned) 310 # Vector Integer Halving Sub (Unsigned) 327 # Vector Integer Rouding Halving Add (Unsigned) 344 # Vector Integer Saturating Add (Unsigned) 346 # Vector Integer Saturating Sub (Unsigned) 365 # Scalar Integer Saturating Add (Unsigned) [all …]
|
/external/llvm/include/llvm/Support/ |
D | ScaledNumber.h | 436 uint64_t Unsigned = N == INT64_MIN ? UINT64_C(1) << 63 : uint64_t(-N); in splitSigned() local 437 return std::make_pair(Unsigned, true); in splitSigned() 661 std::pair<uint64_t, bool> Unsigned = splitSigned(N); in scale() local 662 return joinSigned(scale(Unsigned.first), Unsigned.second); in scale() 665 std::pair<uint64_t, bool> Unsigned = splitSigned(N); in scaleByInverse() local 666 return joinSigned(scaleByInverse(Unsigned.first), Unsigned.second); in scaleByInverse()
|
/external/clang/lib/ASTMatchers/Dynamic/ |
D | VariantValue.cpp | 248 VariantValue::VariantValue(unsigned Unsigned) : Type(VT_Nothing) { in VariantValue() argument 249 setUnsigned(Unsigned); in VariantValue() 304 return Value.Unsigned; in getUnsigned() 310 Value.Unsigned = NewValue; in setUnsigned()
|
/external/e2fsprogs/tests/f_h_unsigned/ |
D | name | 1 Unsigned HTREE directory
|