/external/dng_sdk/source/ |
dng_fingerprint.h | 227 // FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4. 234 static inline void FF (uint32 &a,
|
/external/elfutils/lib/ |
md5.c | 276 /* #define FF(b, c, d) ((b & c) | (~b & d)) */ 277 #define FF(b, c, d) (d ^ (b & (c ^ d))) 278 #define FG(b, c, d) FF (d, b, c) 324 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \
|
sha1.c | 194 /* #define FF(b, c, d) ((b & c) | (~b & d)) */ 195 #define FF(b, c, d) (d ^ (b & (c ^ d))) 255 e = CYCLIC (a, 5) + FF (b, c, d) + e + W (i) + K0; \ 295 OP (16, FF, E, A, B, C, D, K0); 296 OP (17, FF, D, E, A, B, C, K0); 297 OP (18, FF, C, D, E, A, B, K0); 298 OP (19, FF, B, C, D, E, A, K0);
|
/external/libvncserver/common/ |
md5.c | 287 /* #define FF(b, c, d) ((b & c) | (~b & d)) */ 288 #define FF(b, c, d) (d ^ (b & (c ^ d))) 289 #define FG(b, c, d) FF (d, b, c) 338 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \
|
/external/ppp/pppd/ |
md5.c | 73 /* FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4 */ 75 #define FF(a, b, c, d, x, s, ac) \ 214 FF ( a, b, c, d, in[ 0], S11, UL(3614090360)); /* 1 */ 215 FF ( d, a, b, c, in[ 1], S12, UL(3905402710)); /* 2 */ 216 FF ( c, d, a, b, in[ 2], S13, UL( 606105819)); /* 3 */ 217 FF ( b, c, d, a, in[ 3], S14, UL(3250441966)); /* 4 */ 218 FF ( a, b, c, d, in[ 4], S11, UL(4118548399)); /* 5 */ 219 FF ( d, a, b, c, in[ 5], S12, UL(1200080426)); /* 6 */ 220 FF ( c, d, a, b, in[ 6], S13, UL(2821735955)); /* 7 */ 221 FF ( b, c, d, a, in[ 7], S14, UL(4249261313)); /* 8 * [all...] |
/external/syslinux/core/lwip/src/netif/ppp/ |
md5.c | 81 /* FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4 */ 83 #define FF(a, b, c, d, x, s, ac) \ 229 FF ( a, b, c, d, in[ 0], S11, UL(3614090360)); /* 1 */ 230 FF ( d, a, b, c, in[ 1], S12, UL(3905402710)); /* 2 */ 231 FF ( c, d, a, b, in[ 2], S13, UL( 606105819)); /* 3 */ 232 FF ( b, c, d, a, in[ 3], S14, UL(3250441966)); /* 4 */ 233 FF ( a, b, c, d, in[ 4], S11, UL(4118548399)); /* 5 */ 234 FF ( d, a, b, c, in[ 5], S12, UL(1200080426)); /* 6 */ 235 FF ( c, d, a, b, in[ 6], S13, UL(2821735955)); /* 7 */ 236 FF ( b, c, d, a, in[ 7], S14, UL(4249261313)); /* 8 * [all...] |
/external/guava/guava/src/com/google/common/base/ |
Ascii.java | 181 public static final byte FF = 12;
|
/external/libjpeg-turbo/md5/ |
md5.c | 97 * FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4. 100 #define FF(a, b, c, d, x, s, ac) { \ 241 FF (a, b, c, d, x[ 0], S11, 0xd76aa478); /* 1 */ 242 FF (d, a, b, c, x[ 1], S12, 0xe8c7b756); /* 2 */ 243 FF (c, d, a, b, x[ 2], S13, 0x242070db); /* 3 */ 244 FF (b, c, d, a, x[ 3], S14, 0xc1bdceee); /* 4 */ 245 FF (a, b, c, d, x[ 4], S11, 0xf57c0faf); /* 5 */ 246 FF (d, a, b, c, x[ 5], S12, 0x4787c62a); /* 6 */ 247 FF (c, d, a, b, x[ 6], S13, 0xa8304613); /* 7 */ 248 FF (b, c, d, a, x[ 7], S14, 0xfd469501); /* 8 * [all...] |
/external/llvm/lib/MC/ |
MCFragment.cpp | 393 const MCFillFragment *FF = cast<MCFillFragment>(this); 394 OS << " Value:" << FF->getValue() << " Size:" << FF->getSize();
|
MCAssembler.cpp | 495 const MCFillFragment &FF = cast<MCFillFragment>(F); 496 uint8_t V = FF.getValue(); 503 uint64_t Size = FF.getSize();
|
/external/syslinux/com32/libutil/ |
md5.c | 54 * FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4. 57 #define FF(a, b, c, d, x, s, ac) { \ 183 FF(a, b, c, d, x[0], S11, 0xd76aa478); /* 1 */ 184 FF(d, a, b, c, x[1], S12, 0xe8c7b756); /* 2 */ 185 FF(c, d, a, b, x[2], S13, 0x242070db); /* 3 */ 186 FF(b, c, d, a, x[3], S14, 0xc1bdceee); /* 4 */ 187 FF(a, b, c, d, x[4], S11, 0xf57c0faf); /* 5 */ 188 FF(d, a, b, c, x[5], S12, 0x4787c62a); /* 6 */ 189 FF(c, d, a, b, x[6], S13, 0xa8304613); /* 7 */ 190 FF(b, c, d, a, x[7], S14, 0xfd469501); /* 8 * [all...] |
/frameworks/base/services/net/java/android/net/util/ |
NetworkConstants.java | 56 private static final byte FF = asByte(0xff); 58 FF, FF, FF, FF, FF, FF
|
/prebuilts/gdb/darwin-x86/lib/python2.7/curses/ |
ascii.py | 17 FF = 0x0c # ^L 42 "BS", "HT", "LF", "VT", "FF", "CR", "SO", "SI",
|
/prebuilts/gdb/linux-x86/lib/python2.7/curses/ |
ascii.py | 17 FF = 0x0c # ^L 42 "BS", "HT", "LF", "VT", "FF", "CR", "SO", "SI",
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/ |
ascii.py | 17 FF = 0x0c # ^L 42 "BS", "HT", "LF", "VT", "FF", "CR", "SO", "SI",
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/ |
ascii.py | 17 FF = 0x0c # ^L 42 "BS", "HT", "LF", "VT", "FF", "CR", "SO", "SI",
|
/toolchain/binutils/binutils-2.25/libiberty/ |
md5.c | 271 /* #define FF(b, c, d) ((b & c) | (~b & d)) */ 272 #define FF(b, c, d) (d ^ (b & (c ^ d))) 273 #define FG(b, c, d) FF (d, b, c) 318 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
Arrays2Test.java | 57 public void test_binarySearch$FF() {
|
ArraysTest.java | 189 public void test_binarySearch$FF() { 673 public void test_fill$FF() { [all...] |
/external/swiftshader/third_party/LLVM/lib/MC/ |
MCAssembler.cpp | 443 MCFillFragment &FF = cast<MCFillFragment>(F); 445 assert(FF.getValueSize() && "Invalid virtual align in concrete fragment!"); 447 for (uint64_t i = 0, e = FF.getSize() / FF.getValueSize(); i != e; ++i) { 448 switch (FF.getValueSize()) { 451 case 1: OW->Write8 (uint8_t (FF.getValue())); break; 452 case 2: OW->Write16(uint16_t(FF.getValue())); break; 453 case 4: OW->Write32(uint32_t(FF.getValue())); break; 454 case 8: OW->Write64(uint64_t(FF.getValue())); break; 891 const MCFillFragment *FF = cast<MCFillFragment>(this) [all...] |
/external/valgrind/coregrind/ |
m_stacktrace.c | 170 UInt FF; // unwind for which cache indicates FPUnwind can be used. 407 if (debug) unwind_case = "FF"; 408 if (do_stats) stats.FF++; 461 "Ca %u FF %u " 467 stats.Ca, stats.FF, [all...] |
/external/clang/test/SemaCXX/ |
attr-noreturn.cpp | 81 struct FF : AA, virtual BB {}; 98 FF f; 114 const FF& ff = FF(); local
|
/external/icu/icu4c/source/common/ |
uprops.h | 323 FF =0x000c,
|
/external/pcre/dist2/src/ |
pcre2_dfa_match.c | [all...] |
pcre2_match.c | [all...] |