HomeSort by relevance Sort by last modified time
    Searched refs:Sink (Results 1 - 18 of 18) sorted by null

  /external/guava/guava/src/com/google/common/hash/
Sink.java 28 public interface Sink {
30 * Puts a byte into this sink.
35 Sink putByte(byte b);
38 * Puts an array of bytes into this sink.
43 Sink putBytes(byte[] bytes);
46 * Puts a chunk of an array of bytes into this sink. {@code bytes[off]} is the first byte written,
56 Sink putBytes(byte[] bytes, int off, int len);
59 * Puts a short into this sink.
61 Sink putShort(short s);
64 * Puts an int into this sink
    [all...]
Funnel.java 20 * An object which can send data from an object of type {@code T} into a {@code Sink}.
28 * Sends a stream of data from the {@code from} object into the sink {@code into}. There
32 void funnel(T from, Sink into);
Funnels.java 39 public void funnel(byte[] from, Sink into) {
58 public void funnel(CharSequence from, Sink into) {
Hasher.java 22 * A {@link Sink} that can compute a hash code after reading the input. Each hasher should
30 public interface Hasher extends Sink {
  /external/guava/guava-tests/test/com/google/common/hash/
AbstractStreamingHasherTest.java 27 /** Test we get the HashCode that is created by the sink. Later we ignore the result */
29 Sink sink = new Sink(4); local
30 assertEquals(0xDeadBeef, sink.makeHash().asInt());
34 Sink sink = new Sink(4); // byte order insignificant here local
36 sink.putByte((byte) 1);
37 sink.putBytes(new byte[] { 2, 3, 4, 5, 6 })
47 Sink sink = new Sink(4); local
55 Sink sink = new Sink(4); local
63 Sink sink = new Sink(8); local
71 Sink sink = new Sink(4); local
79 Sink sink = new Sink(4); local
87 Sink sink = new Sink(8); local
95 Sink sink = new Sink(4); local
    [all...]
HashTestUtils.java 79 @Override public void funnel(Object object, Sink byteSink) {
86 @Override void performAction(Random random, Iterable<? extends Sink> sinks) {
88 for (Sink sink : sinks) {
89 sink.putBoolean(value);
94 @Override void performAction(Random random, Iterable<? extends Sink> sinks) {
96 for (Sink sink : sinks) {
97 sink.putByte((byte) value);
102 @Override void performAction(Random random, Iterable<? extends Sink> sinks)
    [all...]
FunnelsTest.java 20 Sink byteSink = EasyMock.createMock(Sink.class);
37 Sink byteSink = EasyMock.createMock(Sink.class);
52 Sink byteSink = new AbstractStreamingHasher(4, 4) {
  /external/llvm/lib/Transforms/Scalar/
Android.mk 33 Sink.cpp \
  /external/llvm/lib/Target/Mips/
MipsSEISelLowering.cpp 764 // b $sink
767 // $sink:
779 MachineBasicBlock *Sink = F->CreateMachineBasicBlock(LLVM_BB);
782 F->insert(It, Sink);
784 // Transfer the remainder of BB and its successor edges to Sink.
785 Sink->splice(Sink->begin(), BB, llvm::next(MachineBasicBlock::iterator(MI)),
787 Sink->transferSuccessorsAndUpdatePHIs(BB);
792 FBB->addSuccessor(Sink);
793 TBB->addSuccessor(Sink);
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp     [all...]
  /external/llvm/include/llvm/Support/
CommandLine.h 138 Sink = 0x04 // Should this cl::list eat all unknown options?
    [all...]
  /external/llvm/lib/Support/
CommandLine.cpp 155 else if (O->getMiscFlags() & cl::Sink) // Remember sink options
    [all...]
  /prebuilts/devtools/tools/lib/
jython-standalone-2.5.3.jar 
  /prebuilts/misc/common/jython/
jython.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/
jython-2.5.3.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython-standalone/2.5.3/
jython-standalone-2.5.3.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 

Completed in 359 milliseconds