Home
last modified time | relevance | path

Searched refs:BlockPair (Results 1 – 6 of 6) sorted by relevance

/external/zxing/core/src/main/java/com/google/zxing/qrcode/encoder/
DBlockPair.java19 final class BlockPair { class
24 BlockPair(byte[] data, byte[] errorCorrection) { in BlockPair() method in BlockPair
DEncoder.java442 Collection<BlockPair> blocks = new ArrayList<>(numRSBlocks); in interleaveWithECBytes()
455 blocks.add(new BlockPair(dataBytes, ecBytes)); in interleaveWithECBytes()
469 for (BlockPair block : blocks) { in interleaveWithECBytes()
478 for (BlockPair block : blocks) { in interleaveWithECBytes()
/external/llvm/tools/llvm-diff/
DDifferenceEngine.cpp132 typedef std::pair<BasicBlock*, BasicBlock*> BlockPair; typedef in __anon8fd41d530111::FunctionDifferenceEngine
142 bool operator()(const BlockPair &Old, const BlockPair &New) { in operator ()()
149 PriorityQueue<BlockPair, QueueSorter, 20> Queue;
168 Queue.insert(BlockPair(L, R)); in tryUnify()
186 BlockPair Pair = Queue.remove_min(); in processQueue()
/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/
DMachineSink.cpp1143 auto BlockPair = std::make_pair(From, To); in hasStoreBetween() local
1147 if (HasStoreCache.find(BlockPair) != HasStoreCache.end()) in hasStoreBetween()
1148 return HasStoreCache[BlockPair]; in hasStoreBetween()
1150 if (StoreInstrCache.find(BlockPair) != StoreInstrCache.end()) in hasStoreBetween()
1151 return llvm::any_of(StoreInstrCache[BlockPair], [&](MachineInstr *I) { in hasStoreBetween()
1188 HasStoreCache[BlockPair] = true; in hasStoreBetween()
1202 HasStoreCache[BlockPair] = true; in hasStoreBetween()
1214 StoreInstrCache[BlockPair].push_back(&I); in hasStoreBetween()
1221 HasStoreCache[BlockPair] = false; in hasStoreBetween()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyFixIrreducibleControlFlow.cpp127 using BlockPair = std::pair<MachineBasicBlock *, MachineBasicBlock *>; in calculate() typedef
128 SmallVector<BlockPair, 4> WorkList; in calculate()
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/WebAssembly/
DWebAssemblyFixIrreducibleControlFlow.cpp139 using BlockPair = std::pair<MachineBasicBlock *, MachineBasicBlock *>; in calculate() typedef
140 SmallVector<BlockPair, 4> WorkList; in calculate()