Home
last modified time | relevance | path

Searched refs:Truncation (Results 1 – 15 of 15) sorted by relevance

/external/v8/src/compiler/
Drepresentation-change.h17 class Truncation final {
20 static Truncation None() { in None()
21 return Truncation(TruncationKind::kNone, kIdentifyZeros); in None()
23 static Truncation Bool() { in Bool()
24 return Truncation(TruncationKind::kBool, kIdentifyZeros); in Bool()
26 static Truncation Word32() { in Word32()
27 return Truncation(TruncationKind::kWord32, kIdentifyZeros); in Word32()
29 static Truncation Word64() { in Word64()
30 return Truncation(TruncationKind::kWord64, kIdentifyZeros); in Word64()
32 static Truncation Float64(IdentifyZeros identify_zeros = kDistinguishZeros) {
[all …]
Drepresentation-change.cc19 const char* Truncation::description() const { in description()
68 Truncation::TruncationKind Truncation::Generalize(TruncationKind rep1, in Generalize()
88 IdentifyZeros Truncation::GeneralizeIdentifyZeros(IdentifyZeros i1, in GeneralizeIdentifyZeros()
98 bool Truncation::LessGeneral(TruncationKind rep1, TruncationKind rep2) { in LessGeneral()
119 bool Truncation::LessGeneralIdentifyZeros(IdentifyZeros i1, IdentifyZeros i2) { in LessGeneralIdentifyZeros()
397 Truncation truncation) { in GetTaggedRepresentationFor()
480 Truncation truncation) { in GetFloat32RepresentationFor()
655 CHECK(Truncation::Any(kIdentifyZeros) in GetWord32RepresentationFor()
Dsimplified-lowering.cc252 Truncation old_truncation = truncation_; in AddUse()
253 truncation_ = Truncation::Generalize(truncation_, info.truncation()); in AddUse()
264 Truncation truncation() const { return truncation_; } in truncation()
282 Truncation truncation_ = Truncation::None(); // Information about uses.
858 void VisitNoop(Node* node, Truncation truncation) { in VisitNoop()
926 Truncation use) { in GetOutputInfoForPhi()
953 void VisitSelect(Node* node, Truncation truncation, in VisitSelect()
978 void VisitPhi(Node* node, Truncation truncation, in VisitPhi()
1260 void LowerToCheckedInt32Mul(Node* node, Truncation truncation, in LowerToCheckedInt32Mul()
1282 void VisitSpeculativeIntegerAdditiveOp(Node* node, Truncation truncation, in VisitSpeculativeIntegerAdditiveOp()
[all …]
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_TruncateDiv.pbtxt5 Truncation designates that negative numbers will round fractional quantities
/external/pcre/dist2/testdata/
Dtestoutput11-16582 ** 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.
Dtestoutput911 ** Truncation will probably give the wrong result.
15 ** Truncation will probably give the wrong result.
Dtestoutput12-161421 ** Truncation will probably give the wrong result.
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/
Dldst-unscaledimm.ll174 ; Truncation from 64-bits
Dldst-unsignedimm.ll144 ; Truncation from 64-bits
/external/llvm/test/CodeGen/AArch64/
Dldst-unscaledimm.ll174 ; Truncation from 64-bits
Dldst-unsignedimm.ll144 ; Truncation from 64-bits
/external/libchrome/base/strings/
Dsafe_sprintf_unittest.cc482 TEST(SafeSPrintfTest, Truncation) { in TEST() argument
/external/v8/gypfiles/
Dstandalone.gypi934 4302, # Truncation from 'type 1' to 'type 2'
935 4309, # Truncation of constant value
/external/scapy/test/
Dtls.uts29 t5 = a(b'\x0c'*16).digest("Test With Truncation") == b'\x56\x46\x1e\xf2\x34\x2e\xdc\x00\xf9\xba\xb9…
46 t5 = a(b'\x0c'*20).digest("Test With Truncation") == b'\x4c\x1a\x03\x42\x4b\x55\xe0\x7f\xe7\xf2\x7b…
260 t5 = _tls_P_MD5(b'\x0c'*16, b"Test With Truncation", 64) == b'\xb3>\xfaj\xc8\x95S\xcd\xdd\xea\x8b\x…
272 t5 = _tls_P_SHA1(b'\x0c'*20, b"Test With Truncation", 80) == b'`\x1d\xe4\x98Q\xa1\xdbW\xc5a\xa9@\x8…
284 t5 = _tls_PRF(b'\x0c'*20, b"Test Label KKKKKKKKK", b"Test With Truncation", 80) == b"gq\xa5\xc4\xf5…
296 t5 = _ssl_PRF(b'\x0c'*20, b"Test With Truncation", 80) == b"\x85\xf5\xe8\xd2\xddW$\x14\xde\x84\x08@…
/external/v8/
DChangeLog41278 [turbofan] Truncation of Bit/Word8/16 to Word32 is a no-op (Chromium