Home
last modified time | relevance | path

Searched refs:rep2 (Results 1 – 11 of 11) sorted by relevance

/external/v8/src/compiler/
Drepresentation-change.cc58 TruncationKind rep2) { in Generalize() argument
59 if (LessGeneral(rep1, rep2)) return rep2; in Generalize()
60 if (LessGeneral(rep2, rep1)) return rep1; in Generalize()
63 LessGeneral(rep2, TruncationKind::kFloat64)) { in Generalize()
73 bool Truncation::LessGeneral(TruncationKind rep1, TruncationKind rep2) { in LessGeneral() argument
78 return rep2 == TruncationKind::kBool || rep2 == TruncationKind::kAny; in LessGeneral()
80 return rep2 == TruncationKind::kWord32 || in LessGeneral()
81 rep2 == TruncationKind::kWord64 || in LessGeneral()
82 rep2 == TruncationKind::kFloat64 || rep2 == TruncationKind::kAny; in LessGeneral()
84 return rep2 == TruncationKind::kWord64; in LessGeneral()
[all …]
Drepresentation-change.h69 static TruncationKind Generalize(TruncationKind rep1, TruncationKind rep2);
70 static bool LessGeneral(TruncationKind rep1, TruncationKind rep2);
/external/lzma/Java/SevenZip/Compression/LZMA/
DDecoder.java209 int rep0 = 0, rep1 = 0, rep2 = 0, rep3 = 0; in Code() local
249 distance = rep2; in Code()
253 rep3 = rep2; in Code()
255 rep2 = rep1; in Code()
268 rep3 = rep2; in Code()
269 rep2 = rep1; in Code()
/external/lzma/CS/7zip/Compress/LZMA/
DLzmaDecoder.cs237 uint rep0 = 0, rep1 = 0, rep2 = 0, rep3 = 0; in Code()
294 distance = rep2; in Code()
298 rep3 = rep2; in Code()
300 rep2 = rep1; in Code()
310 rep3 = rep2; in Code()
311 rep2 = rep1; in Code()
/external/lzma/CPP/7zip/Bundles/LzmaSpec/
DLzmaSpec.cpp472 UInt32 rep0 = 0, rep1 = 0, rep2 = 0, rep3 = 0; in Decode() local
519 dist = rep2; in Decode()
523 rep3 = rep2; in Decode()
525 rep2 = rep1; in Decode()
535 rep3 = rep2; in Decode()
536 rep2 = rep1; in Decode()
/external/lzma/xz-embedded/
Dxz_dec_lzma2.c136 uint32_t rep2; member
654 s->lzma.rep3 = s->lzma.rep2; in lzma_match()
655 s->lzma.rep2 = s->lzma.rep1; in lzma_match()
704 tmp = s->lzma.rep2; in lzma_rep_match()
707 s->lzma.rep3 = s->lzma.rep2; in lzma_rep_match()
710 s->lzma.rep2 = s->lzma.rep1; in lzma_rep_match()
775 s->lzma.rep2 = 0; in lzma_reset()
/external/lzma/C/
DLzmaDec.c145 UInt32 rep0 = p->reps[0], rep1 = p->reps[1], rep2 = p->reps[2], rep3 = p->reps[3]; in LzmaDec_DecodeReal() local
277 distance = rep2; in LzmaDec_DecodeReal()
283 rep3 = rep2; in LzmaDec_DecodeReal()
285 rep2 = rep1; in LzmaDec_DecodeReal()
394 rep3 = rep2; in LzmaDec_DecodeReal()
395 rep2 = rep1; in LzmaDec_DecodeReal()
453 p->reps[2] = rep2; in LzmaDec_DecodeReal()
/external/toybox/toys/pending/
Dxzcat.c1298 uint32_t rep2; member
1802 s->lzma.rep3 = s->lzma.rep2; in lzma_match()
1803 s->lzma.rep2 = s->lzma.rep1; in lzma_match()
1852 tmp = s->lzma.rep2; in lzma_rep_match()
1855 s->lzma.rep3 = s->lzma.rep2; in lzma_rep_match()
1858 s->lzma.rep2 = s->lzma.rep1; in lzma_rep_match()
1923 s->lzma.rep2 = 0; in lzma_reset()
/external/lzma/DOC/
Dlzma-specification.txt926 UInt32 rep0 = 0, rep1 = 0, rep2 = 0, rep3 = 0;
1019 rep3 = rep2;
1020 rep2 = rep1;
1095 UInt32 dist = rep2;
1096 rep2 = rep1;
1102 rep3 = rep2;
1103 rep2 = rep1;
/external/v8/src/
Dobjects.h5660 Representation rep1, Handle<HeapType> type1, Representation rep2,
Dobjects.cc3263 Representation rep2, in GeneralizeFieldType() argument
3269 if (FieldTypeIsCleared(rep1, *type1) || FieldTypeIsCleared(rep2, *type2)) { in GeneralizeFieldType()