Searched refs:Truncation (Results 1 – 11 of 11) sorted by relevance
/external/v8/src/compiler/ |
D | representation-change.h | 15 class Truncation final { 18 static Truncation None() { return Truncation(TruncationKind::kNone); } in None() 19 static Truncation Bool() { return Truncation(TruncationKind::kBool); } in Bool() 20 static Truncation Word32() { return Truncation(TruncationKind::kWord32); } in Word32() 21 static Truncation Word64() { return Truncation(TruncationKind::kWord64); } in Word64() 22 static Truncation Float64() { return Truncation(TruncationKind::kFloat64); } in Float64() 23 static Truncation Any() { return Truncation(TruncationKind::kAny); } in Any() 25 static Truncation Generalize(Truncation t1, Truncation t2) { in Generalize() 26 return Truncation(Generalize(t1.kind(), t2.kind())); in Generalize() 50 bool operator==(Truncation other) const { return kind() == other.kind(); } [all …]
|
D | representation-change.cc | 17 const char* Truncation::description() const { in description() 55 Truncation::TruncationKind Truncation::Generalize(TruncationKind rep1, in Generalize() 76 bool Truncation::LessGeneral(TruncationKind rep1, TruncationKind rep2) { in LessGeneral() 347 Truncation truncation) { in GetTaggedRepresentationFor() 422 Truncation truncation) { in GetFloat32RepresentationFor()
|
D | simplified-lowering.cc | 223 Truncation old_truncation = truncation_; in AddUse() 224 truncation_ = Truncation::Generalize(truncation_, info.truncation()); in AddUse() 235 Truncation truncation() const { return truncation_; } in truncation() 253 Truncation truncation_ = Truncation::None(); // Information about uses. 840 Truncation use) { in GetOutputInfoForPhi() 868 void VisitSelect(Node* node, Truncation truncation, in VisitSelect() 892 void VisitPhi(Node* node, Truncation truncation, in VisitPhi() 1134 void LowerToCheckedInt32Mul(Node* node, Truncation truncation, in LowerToCheckedInt32Mul() 1158 void VisitSpeculativeAdditiveOp(Node* node, Truncation truncation, in VisitSpeculativeAdditiveOp() 1219 void VisitSpeculativeNumberModulus(Node* node, Truncation truncation, in VisitSpeculativeNumberModulus() [all …]
|
/external/v8/src/inspector/ |
D | BUILD.gn | 101 "/wd4267", # Truncation from size_t to int. 102 "/wd4305", # Truncation from 'type1' to 'type2'.
|
/external/pcre/dist2/testdata/ |
D | testoutput11-16 | 582 ** Truncation will probably give the wrong result. 584 ** Truncation will probably give the wrong result. 586 ** Truncation will probably give the wrong result. 588 ** Truncation will probably give the wrong result.
|
D | testoutput9 | 11 ** Truncation will probably give the wrong result. 15 ** Truncation will probably give the wrong result.
|
/external/llvm/test/CodeGen/AArch64/ |
D | ldst-unscaledimm.ll | 174 ; Truncation from 64-bits
|
D | ldst-unsignedimm.ll | 144 ; Truncation from 64-bits
|
/external/libchrome/base/strings/ |
D | safe_sprintf_unittest.cc | 480 TEST(SafeSPrintfTest, Truncation) { in TEST() argument
|
/external/v8/gypfiles/ |
D | standalone.gypi | 934 4302, # Truncation from 'type 1' to 'type 2' 935 4309, # Truncation of constant value
|
/external/v8/ |
D | ChangeLog | 16377 [turbofan] Truncation of Bit/Word8/16 to Word32 is a no-op (Chromium
|