/external/guava/guava/src/com/google/common/hash/ |
D | Sink.java | 28 public interface Sink { interface 35 Sink putByte(byte b); in putByte() 43 Sink putBytes(byte[] bytes); in putBytes() 56 Sink putBytes(byte[] bytes, int off, int len); in putBytes() 61 Sink putShort(short s); in putShort() 66 Sink putInt(int i); in putInt() 71 Sink putLong(long l); in putLong() 76 Sink putFloat(float f); in putFloat() 81 Sink putDouble(double d); in putDouble() 86 Sink putBoolean(boolean b); in putBoolean() [all …]
|
D | Funnels.java | 39 public void funnel(byte[] from, Sink into) { in funnel() 58 public void funnel(CharSequence from, Sink into) { in funnel()
|
D | Funnel.java | 32 void funnel(T from, Sink into); in funnel()
|
D | Hasher.java | 30 public interface Hasher extends Sink {
|
/external/guava/guava-tests/test/com/google/common/hash/ |
D | AbstractStreamingHasherTest.java | 29 Sink sink = new Sink(4); in testSanity() 34 Sink sink = new Sink(4); // byte order insignificant here in testBytes() 47 Sink sink = new Sink(4); in testShort() 55 Sink sink = new Sink(4); in testInt() 63 Sink sink = new Sink(8); in testLong() 71 Sink sink = new Sink(4); in testChar() 79 Sink sink = new Sink(4); in testFloat() 87 Sink sink = new Sink(8); in testDouble() 95 Sink sink = new Sink(4); in testCorrectExceptions() 119 List<Sink> sinks = Lists.newArrayList(); in testExhaustive() [all …]
|
D | HashTestUtils.java | 79 @Override public void funnel(Object object, Sink byteSink) { 86 @Override void performAction(Random random, Iterable<? extends Sink> sinks) { in PUT_BOOLEAN() 88 for (Sink sink : sinks) { in PUT_BOOLEAN() 94 @Override void performAction(Random random, Iterable<? extends Sink> sinks) { in PUT_BYTE() 96 for (Sink sink : sinks) { in PUT_BYTE() 102 @Override void performAction(Random random, Iterable<? extends Sink> sinks) { in PUT_SHORT() 104 for (Sink sink : sinks) { in PUT_SHORT() 110 @Override void performAction(Random random, Iterable<? extends Sink> sinks) { in PUT_CHAR() 112 for (Sink sink : sinks) { in PUT_CHAR() 118 @Override void performAction(Random random, Iterable<? extends Sink> sinks) { in PUT_INT() [all …]
|
D | FunnelsTest.java | 20 Sink byteSink = EasyMock.createMock(Sink.class); in testForBytes() 37 Sink byteSink = EasyMock.createMock(Sink.class); in testForStrings() 52 Sink byteSink = new AbstractStreamingHasher(4, 4) { in assertNullsThrowException()
|
/external/llvm/lib/Target/Mips/ |
D | MipsSEISelLowering.cpp | 160 MachineBasicBlock *Sink = F->CreateMachineBasicBlock(LLVM_BB); in emitBPOSGE32() local 163 F->insert(It, Sink); in emitBPOSGE32() 166 Sink->splice(Sink->begin(), BB, llvm::next(MachineBasicBlock::iterator(MI)), in emitBPOSGE32() 168 Sink->transferSuccessorsAndUpdatePHIs(BB); in emitBPOSGE32() 173 FBB->addSuccessor(Sink); in emitBPOSGE32() 174 TBB->addSuccessor(Sink); in emitBPOSGE32() 183 BuildMI(*FBB, FBB->end(), DL, TII->get(Mips::B)).addMBB(Sink); in emitBPOSGE32() 191 BuildMI(*Sink, Sink->begin(), DL, TII->get(Mips::PHI), in emitBPOSGE32() 196 return Sink; in emitBPOSGE32()
|
/external/llvm/test/Transforms/Sink/ |
D | basic.ll | 6 ; Sink should sink the load past the store (which doesn't overlap) into 40 ; Sink to the nearest post-dominator
|
/external/llvm/lib/Transforms/Scalar/ |
D | CMakeLists.txt | 32 Sink.cpp
|
D | Android.mk | 34 Sink.cpp \
|
/external/webkit/Source/WebKit/mac/Carbon/ |
D | CarbonWindowFrame.m | 140 // Sink a method invocation. 146 // Sink a method invocation. 152 // Sink a method invocation. 158 // Sink a method invocation.
|
/external/llvm/test/Transforms/LICM/ |
D | sinking.ll | 7 ; Sink readonly function. 25 ; Sink readnone function out of loop with unknown memory behavior.
|
/external/llvm/test/CodeGen/X86/ |
D | sink-hoist.ll | 65 ; Sink instructions with dead EFLAGS defs.
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | ExprEngine.cpp | 1139 const ExplodedNode *Sink = in processCFGBlockEntrance() local 1163 Engine.blocksExhausted.push_back(std::make_pair(L, Sink)); in processCFGBlockEntrance()
|
/external/llvm/lib/Support/ |
D | CommandLine.cpp | 142 else if (O->getMiscFlags() & cl::Sink) // Remember sink options in GetOptionInfo()
|
/external/llvm/docs/ |
D | CommandLine.rst | 1183 .. _cl::Sink: 1185 * The **cl::Sink** modifier is used to handle unknown options. If there is at 1186 least one option with ``cl::Sink`` modifier specified, the parser passes
|
/external/llvm/include/llvm/Support/ |
D | CommandLine.h | 137 Sink = 0x04 // Should this cl::list eat all unknown options? enumerator
|