/external/tremolo/Tremolo/ |
D | codebook.c | 168 long chase=0; in _make_words() local 174 if(chase>=top){ in _make_words() 175 if (chase < 0 || chase >= n) return 1; in _make_words() 177 r[chase*2]=top; in _make_words() 178 r[chase*2+1]=0; in _make_words() 180 if (chase < 0 || chase >= n || chase*2+bit > n*2+1) return 1; in _make_words() 181 if(!r[chase*2+bit]) in _make_words() 182 r[chase*2+bit]=top; in _make_words() 183 chase=r[chase*2+bit]; in _make_words() 184 if (chase < 0 || chase >= n) return 1; in _make_words() [all …]
|
D | dpen.s | 103 MOV r7, #0 @ r7 = chase 106 ADC r2, r6, r7, LSL #1 @ r8 = &t[chase*2+C] 112 AND r7, r7, #0x7F @ r7 = chase 118 MOV r0, r7 @ return chase 129 MOV r7, r10 @ r7 = chase=next 131 ADC r8, r6, r7 @ r8 = t+chase+bit 132 LDRB r10,[r8], -r6 @ r10= next=t[chase+bit] r8=chase+bit 145 CMP r8, r7 @ if bit==0 (chase+bit==chase) (sets C) 146 LDRBNE r14,[r6, r7] @ r14= t[chase] 148 ADC r12,r8, r6 @ r12= chase+bit+1+t [all …]
|
/external/skqp/src/pathops/ |
D | SkPathOpsOp.cpp | 15 static bool findChaseOp(SkTDArray<SkOpSpanBase*>& chase, SkOpSpanBase** startPtr, in findChaseOp() argument 17 while (chase.count()) { in findChaseOp() 19 chase.pop(&span); in findChaseOp() 29 *chase.insert(0) = span; in findChaseOp() 31 *chase.append() = span; in findChaseOp() 97 *chase.insert(0) = span; in findChaseOp() 99 *chase.append() = span; in findChaseOp() 122 SkTDArray<SkOpSpanBase*> chase; in bridgeOp() local 133 SkOpSegment* next = current->findNextOp(&chase, &nextStart, &nextEnd, in bridgeOp() 181 SkASSERT(!SkPathOpsDebug::ChaseContains(chase, last)); in bridgeOp() [all …]
|
D | SkPathOpsCommon.cpp | 82 SkOpSegment* FindChase(SkTDArray<SkOpSpanBase*>* chase, SkOpSpanBase** startPtr, in FindChase() argument 84 while (chase->count()) { in FindChase() 86 chase->pop(&span); in FindChase() 95 *chase->insert(0) = span; in FindChase() 97 *chase->append() = span; in FindChase() 144 *chase->insert(0) = span; in FindChase() 146 *chase->append() = span; in FindChase()
|
D | SkPathOpsSimplify.cpp | 23 SkTDArray<SkOpSpanBase*> chase; in bridgeWinding() local 33 SkOpSegment* next = current->findNextWinding(&chase, &nextStart, &nextEnd, in bridgeWinding() 67 SkASSERT(!SkPathOpsDebug::ChaseContains(chase, last)); in bridgeWinding() 68 *chase.append() = last; in bridgeWinding() 78 current = FindChase(&chase, &start, &end); in bridgeWinding()
|
D | SkPathOpsCommon.h | 19 SkOpSegment* FindChase(SkTDArray<SkOpSpanBase*>* chase, SkOpSpanBase** startPtr,
|
D | SkOpSegment.h | 214 SkOpSegment* findNextOp(SkTDArray<SkOpSpanBase*>* chase, SkOpSpanBase** nextStart, 217 SkOpSegment* findNextWinding(SkTDArray<SkOpSpanBase*>* chase, SkOpSpanBase** nextStart,
|
D | SkOpSegment.cpp | 538 SkOpSegment* SkOpSegment::findNextOp(SkTDArray<SkOpSpanBase*>* chase, SkOpSpanBase** nextStart, in findNextOp() argument 619 SkASSERT(!SkPathOpsDebug::ChaseContains(*chase, last)); in findNextOp() 620 *chase->append() = last; in findNextOp() 645 SkOpSegment* SkOpSegment::findNextWinding(SkTDArray<SkOpSpanBase*>* chase, in findNextWinding() argument 715 SkASSERT(!SkPathOpsDebug::ChaseContains(*chase, last)); in findNextWinding() 716 *chase->append() = last; in findNextWinding()
|
/external/skia/src/pathops/ |
D | SkPathOpsOp.cpp | 15 static bool findChaseOp(SkTDArray<SkOpSpanBase*>& chase, SkOpSpanBase** startPtr, in findChaseOp() argument 17 while (chase.count()) { in findChaseOp() 19 chase.pop(&span); in findChaseOp() 29 *chase.insert(0) = span; in findChaseOp() 31 *chase.append() = span; in findChaseOp() 97 *chase.insert(0) = span; in findChaseOp() 99 *chase.append() = span; in findChaseOp() 122 SkTDArray<SkOpSpanBase*> chase; in bridgeOp() local 133 SkOpSegment* next = current->findNextOp(&chase, &nextStart, &nextEnd, in bridgeOp() 181 SkASSERT(!SkPathOpsDebug::ChaseContains(chase, last)); in bridgeOp() [all …]
|
D | SkPathOpsCommon.cpp | 82 SkOpSegment* FindChase(SkTDArray<SkOpSpanBase*>* chase, SkOpSpanBase** startPtr, in FindChase() argument 84 while (chase->count()) { in FindChase() 86 chase->pop(&span); in FindChase() 95 *chase->insert(0) = span; in FindChase() 97 *chase->append() = span; in FindChase() 144 *chase->insert(0) = span; in FindChase() 146 *chase->append() = span; in FindChase()
|
D | SkPathOpsSimplify.cpp | 23 SkTDArray<SkOpSpanBase*> chase; in bridgeWinding() local 33 SkOpSegment* next = current->findNextWinding(&chase, &nextStart, &nextEnd, in bridgeWinding() 67 SkASSERT(!SkPathOpsDebug::ChaseContains(chase, last)); in bridgeWinding() 68 *chase.append() = last; in bridgeWinding() 78 current = FindChase(&chase, &start, &end); in bridgeWinding()
|
D | SkPathOpsCommon.h | 19 SkOpSegment* FindChase(SkTDArray<SkOpSpanBase*>* chase, SkOpSpanBase** startPtr,
|
D | SkOpSegment.h | 214 SkOpSegment* findNextOp(SkTDArray<SkOpSpanBase*>* chase, SkOpSpanBase** nextStart, 217 SkOpSegment* findNextWinding(SkTDArray<SkOpSpanBase*>* chase, SkOpSpanBase** nextStart,
|
D | SkOpSegment.cpp | 538 SkOpSegment* SkOpSegment::findNextOp(SkTDArray<SkOpSpanBase*>* chase, SkOpSpanBase** nextStart, in findNextOp() argument 619 SkASSERT(!SkPathOpsDebug::ChaseContains(*chase, last)); in findNextOp() 620 *chase->append() = last; in findNextOp() 645 SkOpSegment* SkOpSegment::findNextWinding(SkTDArray<SkOpSpanBase*>* chase, in findNextWinding() argument 715 SkASSERT(!SkPathOpsDebug::ChaseContains(*chase, last)); in findNextWinding() 716 *chase->append() = last; in findNextWinding()
|
/external/sonivox/jet_tools/JetCreator/ |
D | JetCreatorhlp.dat | 74 chase controllers = This option will force JET to chase controllers up to the beginning of a given … 94 chase controllers = If on, MIDI CC messages and program changes will be read from the beginning of … 109 chase controllers = If on, MIDI CC messages and program changes will be read from the beginning of …
|
/external/mockito/src/test/java/org/mockitousage/customization/ |
D | BDDMockitoTest.java | 361 police.chase(car); in should_pass_fluent_bdd_scenario_with_ordered_verification_for_two_mocks() 365 then(police).should(inOrder).chase(car); in should_pass_fluent_bdd_scenario_with_ordered_verification_for_two_mocks() 387 void chase(Car car) { in chase() method in BDDMockitoTest.Police
|
/external/rust/crates/crossbeam-deque/ |
D | Cargo.toml.orig | 16 keywords = ["chase-lev", "lock-free", "scheduler", "scheduling"]
|
D | Cargo.toml | 22 keywords = ["chase-lev", "lock-free", "scheduler", "scheduling"]
|
/external/llvm-project/llvm/test/CodeGen/Hexagon/ |
D | swp-prolog-phi4.ll | 3 ; Test that the name rewriter code doesn't chase the Phi operands for
|
/external/mesa3d/docs/relnotes/ |
D | 17.3.0.rst | 218 - Performance regression: car chase, manhattan
|
/external/libnetfilter_conntrack/ |
D | ltmain.sh | 3404 LTWRAPPER_DEBUGPRINTF (("(main) found exe (before symlink chase) at : %s\n", 3408 LTWRAPPER_DEBUGPRINTF (("(main) found exe (after symlink chase) at : %s\n", 3655 Does not chase symlinks, even on platforms that support them.
|
/external/google-breakpad/autotools/ |
D | ltmain.sh | 3404 LTWRAPPER_DEBUGPRINTF (("(main) found exe (before symlink chase) at : %s\n", 3408 LTWRAPPER_DEBUGPRINTF (("(main) found exe (after symlink chase) at : %s\n", 3655 Does not chase symlinks, even on platforms that support them.
|
/external/libnfnetlink/ |
D | ltmain.sh | 3404 LTWRAPPER_DEBUGPRINTF (("(main) found exe (before symlink chase) at : %s\n", 3408 LTWRAPPER_DEBUGPRINTF (("(main) found exe (after symlink chase) at : %s\n", 3655 Does not chase symlinks, even on platforms that support them.
|
/external/libogg/ |
D | ltmain.sh | 3404 LTWRAPPER_DEBUGPRINTF (("(main) found exe (before symlink chase) at : %s\n", 3408 LTWRAPPER_DEBUGPRINTF (("(main) found exe (after symlink chase) at : %s\n", 3655 Does not chase symlinks, even on platforms that support them.
|
/external/rust/crates/aho-corasick/src/packed/teddy/ |
D | README.md | 114 To cut to the chase, Teddy works by using bitsets. In particular, Teddy creates
|