Searched refs:rep2 (Results 1 – 11 of 11) sorted by relevance
/external/v8/src/compiler/ |
D | representation-change.cc | 58 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 …]
|
D | representation-change.h | 69 static TruncationKind Generalize(TruncationKind rep1, TruncationKind rep2); 70 static bool LessGeneral(TruncationKind rep1, TruncationKind rep2);
|
/external/lzma/Java/SevenZip/Compression/LZMA/ |
D | Decoder.java | 209 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/ |
D | LzmaDecoder.cs | 237 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/ |
D | LzmaSpec.cpp | 472 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/ |
D | xz_dec_lzma2.c | 136 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/ |
D | LzmaDec.c | 145 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/ |
D | xzcat.c | 1298 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/ |
D | lzma-specification.txt | 926 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/ |
D | objects.h | 5660 Representation rep1, Handle<HeapType> type1, Representation rep2,
|
D | objects.cc | 3263 Representation rep2, in GeneralizeFieldType() argument 3269 if (FieldTypeIsCleared(rep1, *type1) || FieldTypeIsCleared(rep2, *type2)) { in GeneralizeFieldType()
|