Home
last modified time | relevance | path

Searched refs:FF (Results 1 - 25 of 32) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/
H A DcontrolFlowSelfReferentialLoop.js6 function FF(a,b,c,d,x,s,ac) {
35 a=FF(a,b,c,d,x[k+0], S11,0xD76AA478);
36 d=FF(d,a,b,c,x[k+1], S12,0xE8C7B756);
37 c=FF(c,d,a,b,x[k+2], S13,0x242070DB);
38 b=FF(b,c,d,a,x[k+3], S14,0xC1BDCEEE);
39 a=FF(a,b,c,d,x[k+4], S11,0xF57C0FAF);
40 d=FF(d,a,b,c,x[k+5], S12,0x4787C62A);
41 c=FF(c,d,a,b,x[k+6], S13,0xA8304613);
42 b=FF(b,c,d,a,x[k+7], S14,0xFD469501);
43 a=FF(
[all...]
H A DjsDeclarationsEnums.js22 export { F as FF };
70 exports.K = exports.I = exports.H = exports.G = exports.F = exports.FF = exports.EE = exports.E = exports.D = exports.C = exports.B = exports.A = void 0;
93 exports.FF = F;
168 export { DD as D, E as EE, F as FF };
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_fingerprint.cpp512 FF (a, b, c, d, x[ 0], S11, 0xd76aa478); /* 1 */ in MD5Transform()
513 FF (d, a, b, c, x[ 1], S12, 0xe8c7b756); /* 2 */ in MD5Transform()
514 FF (c, d, a, b, x[ 2], S13, 0x242070db); /* 3 */ in MD5Transform()
515 FF (b, c, d, a, x[ 3], S14, 0xc1bdceee); /* 4 */ in MD5Transform()
516 FF (a, b, c, d, x[ 4], S11, 0xf57c0faf); /* 5 */ in MD5Transform()
517 FF (d, a, b, c, x[ 5], S12, 0x4787c62a); /* 6 */ in MD5Transform()
518 FF (c, d, a, b, x[ 6], S13, 0xa8304613); /* 7 */ in MD5Transform()
519 FF (b, c, d, a, x[ 7], S14, 0xfd469501); /* 8 */ in MD5Transform()
520 FF (a, b, c, d, x[ 8], S11, 0x698098d8); /* 9 */ in MD5Transform()
521 FF ( in MD5Transform()
[all...]
H A Ddng_fingerprint.h227 // FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4.
234 static inline void FF (uint32 &a, in FF() function in dng_md5_printer
/third_party/python/Modules/
H A Dmd5module.c112 #define FF(a,b,c,d,M,s,t) \ macro
143 FF(a,b,c,d,W[0],7,0xd76aa478UL) in md5_compress()
144 FF(d,a,b,c,W[1],12,0xe8c7b756UL) in md5_compress()
145 FF(c,d,a,b,W[2],17,0x242070dbUL) in md5_compress()
146 FF(b,c,d,a,W[3],22,0xc1bdceeeUL) in md5_compress()
147 FF(a,b,c,d,W[4],7,0xf57c0fafUL) in md5_compress()
148 FF(d,a,b,c,W[5],12,0x4787c62aUL) in md5_compress()
149 FF(c,d,a,b,W[6],17,0xa8304613UL) in md5_compress()
150 FF(b,c,d,a,W[7],22,0xfd469501UL) in md5_compress()
151 FF( in md5_compress()
[all...]
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_inst.h108 #define FF(name, hi4, lo4, hi45, lo45, hi5, lo5, hi6, lo6, \ macro
129 FF(name, \
292 FF(flag_reg_nr,
313 FF(nib_control,
357 FF(3src_a16_dst_reg_file,
789 FF(mlen,
797 FF(rlen,
805 FF(header_present,
821 FF(gateway_subfuncid,
829 FF(sfi
1323 #undef FF global() macro
[all...]
/third_party/musl/src/crypt/
H A Dcrypt_md5.c25 #define FF(a,b,c,d,w,s,t) a += F(b,c,d) + w + t; a = rol(a,s) + b macro
59 FF(a,b,c,d, W[i], 7, tab[i]); i++; in processblock()
60 FF(d,a,b,c, W[i], 12, tab[i]); i++; in processblock()
61 FF(c,d,a,b, W[i], 17, tab[i]); i++; in processblock()
62 FF(b,c,d,a, W[i], 22, tab[i]); i++; in processblock()
/third_party/node/deps/openssl/openssl/crypto/sm3/
H A Dsm3_local.h54 #define RND(A, B, C, D, E, F, G, H, TJ, Wi, Wj, FF, GG) \
59 const SM3_WORD TT1 = FF(A, B, C) + D + (SS1 ^ A12) + (Wj); \
/third_party/openssl/crypto/sm3/
H A Dsm3_local.h54 #define RND(A, B, C, D, E, F, G, H, TJ, Wi, Wj, FF, GG) \
59 const SM3_WORD TT1 = FF(A, B, C) + D + (SS1 ^ A12) + (Wj); \
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
H A DMCFragment.cpp386 const auto *FF = cast<MCFillFragment>(this); in dump() local
387 OS << " Value:" << static_cast<unsigned>(FF->getValue()) in dump()
388 << " ValueSize:" << static_cast<unsigned>(FF->getValueSize()) in dump()
389 << " NumValues:" << FF->getNumValues(); in dump()
H A DMCAssembler.cpp299 auto &FF = cast<MCFillFragment>(F); in computeFragmentSize() local
301 if (!FF.getNumValues().evaluateAsAbsolute(NumValues, Layout)) { in computeFragmentSize()
302 getContext().reportError(FF.getLoc(), in computeFragmentSize()
306 int64_t Size = NumValues * FF.getValueSize(); in computeFragmentSize()
308 getContext().reportError(FF.getLoc(), "invalid number of bytes"); in computeFragmentSize()
579 const MCFillFragment &FF = cast<MCFillFragment>(F); in writeFragment() local
580 uint64_t V = FF.getValue(); in writeFragment()
581 unsigned VSize = FF.getValueSize(); in writeFragment()
/third_party/backends/lib/
H A Dmd5.c291 /* #define FF(b, c, d) ((b & c) | (~b & d)) */
292 #define FF(b, c, d) (d ^ (b & (c ^ d))) macro
293 #define FG(b, c, d) FF (d, b, c)
339 a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \ in md5_process_block()
/third_party/vk-gl-cts/executor/
H A DxeXMLWriter.cpp56 case 12: return "&lt;FF&gt;"; in getEscapeEntity()
/third_party/libevdev/libevdev/
H A Dlibevdev-int.h298 max_mask(FF, ff); in type_to_mask_const()
321 max_mask(FF, ff); in type_to_mask()
/third_party/python/Lib/curses/
H A Dascii.py17 FF = 0x0c # ^L variable
42 "BS", "HT", "LF", "VT", "FF", "CR", "SO", "SI",
H A Dtextpad.py144 elif ch == curses.ascii.FF: # ^l
/third_party/icu/icu4c/source/common/
H A Duprops.h318 FF =0x000c, enumerator
/third_party/node/deps/icu-small/source/common/
H A Duprops.h318 FF =0x000c, enumerator
/third_party/skia/third_party/externals/icu/source/common/
H A Duprops.h317 FF =0x000c, enumerator
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DIfConversion.cpp908 MachineBasicBlock *FF = FalseBBI.FalseBB; in ValidForkedDiamond() local
916 if (!FF) in ValidForkedDiamond()
917 FF = getNextBlock(*FalseBBI.BB); in ValidForkedDiamond()
923 if (!((TT == FT && TF == FF) || (TF == FT && TT == FF))) in ValidForkedDiamond()
927 if (TF == FT && TT == FF) { in ValidForkedDiamond()
/third_party/vk-gl-cts/framework/qphelper/
H A DqpXmlWriter.c76 case 12: repl = "&lt;FF&gt;"; break; in writeEscaped()
/third_party/mbedtls/library/
H A Daes.c120 V(0D, F2, F2, FF), V(BD, 6B, 6B, D6), V(B1, 6F, 6F, DE), V(54, C5, C5, 91), \
150 V(30, 10, 10, 20), V(1A, FF, FF, E5), V(0E, F3, F3, FD), V(6D, D2, D2, BF), \
178 V(49, CE, CE, 87), V(FF, 55, 55, AA), V(78, 28, 28, 50), V(7A, DF, DF, A5), \
267 V(B5, 8D, 54, 91), V(05, 5D, C4, 71), V(6F, D4, 06, 04), V(FF, 15, 50, 60), \
272 V(FB, FF, 0E, FD), V(56, 38, 85, 0F), V(1E, D5, AE, 3D), V(27, 39, 2D, 36), \
293 V(65, 6E, 95, E6), V(7E, E6, FF, AA), V(08, CF, BC, 21), V(E6, E8, 15, EF), \
307 V(72, C3, 1D, 16), V(0C, 25, E2, BC), V(8B, 49, 3C, 28), V(41, 95, 0D, FF), \
/third_party/pcre2/pcre2/src/
H A Dpcre2_dfa_match.c3398 #define FF (PCRE2_NOTEMPTY_SET|PCRE2_NE_ATST_SET) in pcre2_dfa_match() macro
3400 options |= (re->flags & FF) / ((FF & (~FF+1)) / (OO & (~OO+1))); in pcre2_dfa_match()
3401 #undef FF in pcre2_dfa_match() macro
H A Dpcre2_match.c6414 #define FF (PCRE2_NOTEMPTY_SET|PCRE2_NE_ATST_SET) in pcre2_match() macro
6416 options |= (re->flags & FF) / ((FF & (~FF+1)) / (OO & (~OO+1))); in pcre2_match()
6417 #undef FF in pcre2_match() macro
/third_party/rust/crates/regex/regex-syntax/src/hir/
H A Dmod.rs1628 let range = ClassUnicodeRange::new('\u{00FF}', '\0'); in class_range_canonical_unicode()
1630 assert_eq!('\u{00FF}', range.end()); in class_range_canonical_unicode()

Completed in 35 milliseconds

12