HomeSort by relevance Sort by last modified time
    Searched defs:you (Results 1 - 2 of 2) sorted by null

  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
Exchanger.java 320 Node you = (Node)y; // Transfer item local
321 if (you.compareAndSet(null, item)) {
322 LockSupport.unpark(you.waiter);
323 return you.item;
537 Node you = (Node)y; local
538 if (you.compareAndSet(null, node.item)) {
539 LockSupport.unpark(you.waiter);
540 return you.item;
  /external/dropbear/libtomcrypt/
crypt.tex 136 You may be wondering, \textit{Tom, why did you write a crypto library. I already have one.} Well the reason falls into
147 and store data in a format independent of the platform. This means if you encrypt with Blowfish on a PPC it should decrypt
148 on an x86 with zero problems. The consistent API also means that if you learn how to use Blowfish with the library you
167 are essentially structures with pointers to functions. While you can still call particular functions
180 mode routines for every single cipher. That means every time you add or remove a cipher from the library
181 you have to update the associated support code as well. In LibTomCrypt the associated code (\textit{chaining modes in this case})
197 The RC2 and RC4 symmetric ciphers are not under patents but are under trademark regulations. This means you can use
198 the ciphers you just can't advertise that you are doing so.
    [all...]

Completed in 39 milliseconds