HomeSort by relevance Sort by last modified time
    Searched defs:Sink (Results 1 - 9 of 9) 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...]
  /external/llvm/lib/Target/Mips/
MipsSEISelLowering.cpp 145 // b $sink
148 // $sink:
160 MachineBasicBlock *Sink = F->CreateMachineBasicBlock(LLVM_BB);
163 F->insert(It, Sink);
165 // Transfer the remainder of BB and its successor edges to Sink.
166 Sink->splice(Sink->begin(), BB, llvm::next(MachineBasicBlock::iterator(MI)),
168 Sink->transferSuccessorsAndUpdatePHIs(BB);
173 FBB->addSuccessor(Sink);
174 TBB->addSuccessor(Sink);
    [all...]
  /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...]
  /external/llvm/include/llvm/Support/
CommandLine.h 137 Sink = 0x04 // Should this cl::list eat all unknown options?
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp     [all...]
  /prebuilts/devtools/tools/lib/
jython-2.5.3.jar 
  /prebuilts/misc/common/jython/
jython.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/
jython-2.5.3.jar 

Completed in 91 milliseconds