/third_party/node/deps/v8/src/codegen/ |
D | machine-type.cc | 11 bool IsSubtype(MachineRepresentation rep1, MachineRepresentation rep2) { in IsSubtype() argument 12 if (rep1 == rep2) return true; in IsSubtype() 13 switch (rep1) { in IsSubtype()
|
D | machine-type.h | 55 bool IsSubtype(MachineRepresentation rep1, MachineRepresentation rep2); 57 #define ASSERT_CONSECUTIVE(rep1, rep2) \ argument 58 static_assert(static_cast<uint8_t>(MachineRepresentation::k##rep1) + 1 == \ 60 #rep1 " and " #rep2 " must be consecutive.");
|
/third_party/lzma/Java/SevenZip/Compression/LZMA/ |
D | Decoder.java | 209 int rep0 = 0, rep1 = 0, rep2 = 0, rep3 = 0; in Code() local 245 distance = rep1; in Code() 255 rep2 = rep1; in Code() 257 rep1 = rep0; in Code() 269 rep2 = rep1; in Code() 270 rep1 = rep0; in Code()
|
/third_party/python/Lib/ |
D | codeop.py | 109 rep1 = repr(err1) 111 if "was never closed" in rep1 and "was never closed" in rep2: 113 if rep1 == rep2:
|
/third_party/lzma/CS/7zip/Compress/LZMA/ |
D | LzmaDecoder.cs | 237 uint rep0 = 0, rep1 = 0, rep2 = 0, rep3 = 0; in Code() 289 distance = rep1; in Code() 300 rep2 = rep1; in Code() 302 rep1 = rep0; in Code() 311 rep2 = rep1; in Code() 312 rep1 = rep0; in Code()
|
/third_party/lzma/CPP/7zip/Bundles/LzmaSpec/ |
D | LzmaSpec.cpp | 474 UInt32 rep0 = 0, rep1 = 0, rep2 = 0, rep3 = 0; in Decode() local 517 dist = rep1; in Decode() 527 rep2 = rep1; in Decode() 529 rep1 = rep0; in Decode() 538 rep2 = rep1; in Decode() 539 rep1 = rep0; in Decode()
|
/third_party/lzma/Asm/x86/ |
D | LzmaDecOpt.asm | 528 rep1 dd ? define 557 rep1 dd ? define 633 COPY_VAR(rep1) 1151 mov dist, LOC rep1 1152 mov LOC rep1, dist2 1242 ; rep2 = rep1; 1243 ; rep1 = rep0; 1250 mov LOC rep1, t1 1290 RESTORE_VAR(rep1)
|
/third_party/lzma/C/ |
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 366 distance = rep1; in LZMA_DECODE_REAL() 383 rep2 = rep1; in LZMA_DECODE_REAL() 385 rep1 = rep0; in LZMA_DECODE_REAL() 533 rep2 = rep1; in LZMA_DECODE_REAL() 534 rep1 = rep0; in LZMA_DECODE_REAL() 604 p->reps[1] = rep1; in LZMA_DECODE_REAL()
|
/third_party/node/deps/v8/src/compiler/ |
D | representation-change.cc | 75 Truncation::TruncationKind Truncation::Generalize(TruncationKind rep1, in Generalize() argument 77 if (LessGeneral(rep1, rep2)) return rep2; in Generalize() 78 if (LessGeneral(rep2, rep1)) return rep1; in Generalize() 80 if (LessGeneral(rep1, TruncationKind::kOddballAndBigIntToNumber) && in Generalize() 85 if (LessGeneral(rep1, TruncationKind::kAny) && in Generalize() 104 bool Truncation::LessGeneral(TruncationKind rep1, TruncationKind rep2) { in LessGeneral() argument 105 switch (rep1) { in LessGeneral()
|
D | representation-change.h | 108 static TruncationKind Generalize(TruncationKind rep1, TruncationKind rep2); 111 static bool LessGeneral(TruncationKind rep1, TruncationKind rep2);
|
/third_party/lzma/DOC/ |
D | lzma-specification.txt | 927 UInt32 rep0 = 0, rep1 = 0, rep2 = 0, rep3 = 0; 1021 rep2 = rep1; 1022 rep1 = rep0; 1091 UInt32 dist = rep1; 1092 rep1 = rep0; 1097 rep2 = rep1; 1098 rep1 = rep0; 1104 rep2 = rep1; 1105 rep1 = rep0;
|
/third_party/toybox/toys/pending/ |
D | xzcat.c | 1291 uint32_t rep1; member 1797 s->lzma.rep2 = s->lzma.rep1; in lzma_match() 1798 s->lzma.rep1 = s->lzma.rep0; in lzma_match() 1843 tmp = s->lzma.rep1; in lzma_rep_match() 1852 s->lzma.rep2 = s->lzma.rep1; in lzma_rep_match() 1855 s->lzma.rep1 = s->lzma.rep0; in lzma_rep_match() 1916 s->lzma.rep1 = 0; in lzma_reset()
|
/third_party/lzma/Asm/arm64/ |
D | LzmaDecOpt.S | 178 #define rep1 w21 macro 756 LOAD_LZMA_PAIR rep0, rep1, offset_rep0 1024 mov rep2, rep1 1025 mov rep1, rep0
|
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_bc_finalize.cpp | 225 repeat_node *rep1 = static_cast<repeat_node*>(repdep1); in finalize_if() local 226 if (rep1->target != r && rep1->target->is_loop()) in finalize_if()
|
D | notes.markdown | 399 McConnell](http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.38.4210&rep=rep1&type=pdf) 403 Streich](http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.33.6974&rep=rep1&type=pdf)
|
/third_party/node/deps/v8/src/objects/ |
D | map-updater.cc | 31 Representation rep1, Handle<FieldType> type1, Representation rep2, in GeneralizeFieldType() argument 36 if (Map::FieldTypeIsCleared(rep1, *type1) || in GeneralizeFieldType()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
D | cord_ring_test.cc | 1455 CordRep* rep1 = external ? MakeExternal(str1) : MakeFlat(str1); in TEST_F() local 1457 CordRepRing* ring = CordRepRing::Append(CordRepRing::Create(rep1), rep2); in TEST_F()
|
/third_party/libbpf/.github/actions/build-selftests/ |
D | vmlinux.h | 59071 uint32_t rep1; member 59528 uint32_t rep1; member
|