/third_party/node/deps/v8/src/codegen/ |
H A D | machine-type.cc | 11 bool IsSubtype(MachineRepresentation rep1, MachineRepresentation rep2) { in IsSubtype() argument 12 if (rep1 == rep2) return true; in IsSubtype() 16 return rep2 == MachineRepresentation::kTagged; in IsSubtype() 18 return rep2 == MachineRepresentation::kCompressed; in IsSubtype()
|
H A D | machine-type.h | 55 bool IsSubtype(MachineRepresentation rep1, MachineRepresentation rep2); 57 #define ASSERT_CONSECUTIVE(rep1, rep2) \ 59 static_cast<uint8_t>(MachineRepresentation::k##rep2), \ 60 #rep1 " and " #rep2 " must be consecutive.");
|
/third_party/python/Lib/ |
H A D | codeop.py | 78 rep2 = repr(err2) 79 if "was never closed" in rep1 and "was never closed" in rep2: 81 if rep1 == rep2:
|
/third_party/lzma/Java/SevenZip/Compression/LZMA/ |
H A D | Decoder.java | 209 int rep0 = 0, rep1 = 0, rep2 = 0, rep3 = 0;
in Code() 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()
|
/third_party/lzma/CPP/7zip/Bundles/LzmaSpec/ |
H A D | LzmaSpec.cpp | 474 UInt32 rep0 = 0, rep1 = 0, rep2 = 0, rep3 = 0;
in Decode() local 521 dist = rep2;
in Decode() 525 rep3 = rep2;
in Decode() 527 rep2 = rep1;
in Decode() 537 rep3 = rep2;
in Decode() 538 rep2 = rep1;
in Decode()
|
/third_party/lzma/CS/7zip/Compress/LZMA/ |
H A 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()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | representation-change.cc | 76 TruncationKind rep2) { in Generalize() 77 if (LessGeneral(rep1, rep2)) return rep2; in Generalize() 78 if (LessGeneral(rep2, rep1)) return rep1; in Generalize() 81 LessGeneral(rep2, TruncationKind::kOddballAndBigIntToNumber)) { in Generalize() 86 LessGeneral(rep2, TruncationKind::kAny)) { in Generalize() 104 bool Truncation::LessGeneral(TruncationKind rep1, TruncationKind rep2) { in LessGeneral() argument 109 return rep2 == TruncationKind::kBool || rep2 == TruncationKind::kAny; in LessGeneral() 111 return rep2 in LessGeneral() 75 Generalize(TruncationKind rep1, TruncationKind rep2) Generalize() argument [all...] |
H A D | representation-change.h | 108 static TruncationKind Generalize(TruncationKind rep1, TruncationKind rep2); 111 static bool LessGeneral(TruncationKind rep1, TruncationKind rep2);
|
/third_party/lzma/Asm/x86/ |
H A D | LzmaDecOpt.asm | 529 rep2 dd ?
define 558 rep2 dd ?
define 634 COPY_VAR(rep2)
896 mov x2, LOC rep2
905 ; rep3 = rep2;
906 ; rep2 = rep1;
915 mov LOC rep2, x1
1161 mov dist2, LOC rep2
1162 mov LOC rep2, dist
1241 ; rep3 = rep2;
[all...] |
/third_party/lzma/C/ |
H A D | LzmaDec.c | 238 UInt32 rep0 = p->reps[0], rep1 = p->reps[1], rep2 = p->reps[2], rep3 = p->reps[3];
in LZMA_DECODE_REAL() local 375 distance = rep2;
in LZMA_DECODE_REAL() 381 rep3 = rep2;
in LZMA_DECODE_REAL() 383 rep2 = rep1;
in LZMA_DECODE_REAL() 532 rep3 = rep2;
in LZMA_DECODE_REAL() 533 rep2 = rep1;
in LZMA_DECODE_REAL() 605 p->reps[2] = rep2;
in LZMA_DECODE_REAL()
|
/third_party/toybox/toys/pending/ |
H A D | xzcat.c | 1292 uint32_t rep2; member 1332 /* If 0, distance of a repeated match is rep2. Otherwise it is rep3. */ 1796 s->lzma.rep3 = s->lzma.rep2; in lzma_match() 1797 s->lzma.rep2 = s->lzma.rep1; in lzma_match() 1846 tmp = s->lzma.rep2; in lzma_rep_match() 1849 s->lzma.rep3 = s->lzma.rep2; in lzma_rep_match() 1852 s->lzma.rep2 = s->lzma.rep1; in lzma_rep_match() 1917 s->lzma.rep2 = 0; in lzma_reset()
|
/third_party/lzma/Asm/arm64/ |
H A D | LzmaDecOpt.S | 179 #define rep2 w22 define 757 LOAD_LZMA_PAIR rep2, rep3, offset_rep2 1023 mov rep3, rep2 1024 mov rep2, rep1 1290 mov dist, rep2 1291 mov rep2, rep1 1300 mov rep3, rep2 1301 mov rep2, rep1 1422 mov rep3, rep2 1423 mov rep2, rep [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | map-updater.cc | 31 Representation rep1, Handle<FieldType> type1, Representation rep2, in GeneralizeFieldType() 37 Map::FieldTypeIsCleared(rep2, *type2)) { in GeneralizeFieldType() 30 GeneralizeFieldType( Representation rep1, Handle<FieldType> type1, Representation rep2, Handle<FieldType> type2, Isolate* isolate) GeneralizeFieldType() argument
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
H A D | cord_ring_test.cc | 1456 CordRep* rep2 = external ? MakeExternal(str2) : MakeFlat(str2); in TEST_F() local 1457 CordRepRing* ring = CordRepRing::Append(CordRepRing::Create(rep1), rep2); in TEST_F()
|