/third_party/openssl/crypto/modes/ |
D | xts128.c | 37 } tweak, scratch; in CRYPTO_xts128_encrypt() local 43 memcpy(tweak.c, iv, 16); in CRYPTO_xts128_encrypt() 45 (*ctx->block2) (tweak.c, tweak.c, ctx->key2); in CRYPTO_xts128_encrypt() 53 scratch.u[0] ^= tweak.u[0]; in CRYPTO_xts128_encrypt() 54 scratch.u[1] ^= tweak.u[1]; in CRYPTO_xts128_encrypt() 56 scratch.u[0] = ((u64_a1 *)inp)[0] ^ tweak.u[0]; in CRYPTO_xts128_encrypt() 57 scratch.u[1] = ((u64_a1 *)inp)[1] ^ tweak.u[1]; in CRYPTO_xts128_encrypt() 61 scratch.u[0] ^= tweak.u[0]; in CRYPTO_xts128_encrypt() 62 scratch.u[1] ^= tweak.u[1]; in CRYPTO_xts128_encrypt() 65 ((u64_a1 *)out)[0] = scratch.u[0] ^= tweak.u[0]; in CRYPTO_xts128_encrypt() [all …]
|
/third_party/openssl/crypto/aes/asm/ |
D | aesni-x86_64.pl | 1766 my @tweak=map("%xmm$_",(10..15)); 1767 my ($twmask,$twres,$twtmp)=("%xmm8","%xmm9",@tweak[4]); 1816 movdqa $inout0,@tweak[5] 1827 movdqa @tweak[5],@tweak[$i] 1829 paddq @tweak[5],@tweak[5] 1831 pxor $rndkey0,@tweak[$i] 1832 pxor $twtmp,@tweak[5] 1836 movdqa @tweak[5],@tweak[4] 1838 paddq @tweak[5],@tweak[5] 1840 pxor $rndkey0,@tweak[4] [all …]
|
D | aesp8-ppc.pl | 1926 my ($tweak,$seven,$eighty7,$tmp,$tweak1) = map("v$_",(8..12)); 1951 lvx $tweak,0,$ivp # load [unaligned] iv 1955 vperm $tweak,$tweak,$inptail,$inpperm 1976 vxor $tweak,$tweak,$rndkey0 1983 vcipher $tweak,$tweak,$rndkey1 1987 vcipher $tweak,$tweak,$rndkey0 1993 vcipher $tweak,$tweak,$rndkey1 1996 vcipherlast $tweak,$tweak,$rndkey0 2036 vxor $inout,$inout,$tweak 2060 vxor $rndkey0,$rndkey0,$tweak [all …]
|
D | aes-s390x.pl | 1637 my $tweak=16*$SIZE_T+16; # or $stdframe-16, bottom of the frame... 1656 lmg $i2,$i3,$tweak($sp) # put aside the tweak value 1662 la %r1,$tweak-16($sp) 1670 stmg $i2,$i3,$tweak($sp) # "re-seat" the tweak value 1675 lrvg $s0,$tweak+0($sp) # load the last tweak 1676 lrvg $s1,$tweak+8($sp) 1677 stmg %r0,%r3,$tweak-32($sp) # wipe copy of the key 1717 lrvg $s0,$tweak+0($s2) # load the tweak value in little-endian 1718 lrvg $s1,$tweak+8($s2) 1834 la $s2,$tweak($sp) [all …]
|
D | aesni-x86.pl | 1125 { my ($tweak,$twtmp,$twres,$twmask)=($rndkey1,$rndkey0,$inout0,$inout1); 1155 &movdqa ($tweak,$inout0); 1158 &pcmpgtd($twtmp,$tweak); # broadcast upper bits 1176 &movdqa (&QWP(16*$i,"esp"),$tweak); 1177 &paddq ($tweak,$tweak); # &psllq($tweak,1); 1179 &pcmpgtd ($twtmp,$tweak); # broadcast upper bits 1180 &pxor ($tweak,$twres); 1183 &movdqa (&QWP(16*$i++,"esp"),$tweak); 1184 &paddq ($tweak,$tweak); # &psllq($tweak,1); 1188 &pxor ($inout5,$tweak); [all …]
|
/third_party/mesa3d/src/gallium/drivers/virgl/ |
D | virgl_driinfo.h.in | 2 // To add a new tweak: 3 // 1. Define the tweak in util/driconf.h and also add 4 // the tweak name as define to virgl_protocol.h 5 // 2. Add the tweak here with the appropriated default value 6 // 3. Add the code to query the tweak in virgl_create_screen 7 // 4. Add the code to send the tweak to the host in virgl_send_tweaks 8 // 5. Implement the tweak in virglrenderer
|
/third_party/glib/gio/tests/ |
D | appinfo-test-actions.desktop | 3 Actions=frob;tweak;twiddle;broken; 10 [Desktop Action tweak] 12 Exec=touch tweak
|
D | org.gtk.test.dbusappinfo.desktop | 4 Actions=frob;tweak;twiddle;quit; 11 [Desktop Action tweak]
|
/third_party/openssl/crypto/aes/asm/arm32/ |
D | bsaes-armv7.S | 1585 ldr r0, [ip] @ pointer to input tweak 1587 @ generate initial tweak 1592 mov r0,sp @ pointer to initial tweak 1601 sub r12, #48 @ place for tweak[9] 1625 0: sub sp, #0x90 @ place for tweak[9] 1628 vld1.8 {q8}, [r0] @ initial tweak 1698 vst1.64 {q8}, [r0,:128] @ next round tweak 1731 vld1.64 {q8}, [r0,:128] @ next round tweak 1810 vst1.64 {q15}, [r0,:128] @ next round tweak 1841 vld1.64 {q8}, [r0,:128] @ next round tweak [all …]
|
/third_party/boost/libs/gil/example/cmake/ |
D | README.md | 26 Optionally, edit [CMakeSettings.json](CMakeSettings.json) and tweak any options you require. 39 Optionally, edit [cmake-variants.yaml](cmake-variants.yaml)and tweak any options you require.
|
/third_party/mbedtls/library/ |
D | aes.c | 511 mbedtls_aes_init( &ctx->tweak ); in mbedtls_aes_xts_init() 520 mbedtls_aes_free( &ctx->tweak ); in mbedtls_aes_xts_free() 755 ret = mbedtls_aes_setkey_enc( &ctx->tweak, key2, key2bits ); in mbedtls_aes_xts_setkey_enc() 780 ret = mbedtls_aes_setkey_enc( &ctx->tweak, key2, key2bits ); in mbedtls_aes_xts_setkey_dec() 1122 unsigned char tweak[16]; in mbedtls_aes_crypt_xts() local 1142 ret = mbedtls_aes_crypt_ecb( &ctx->tweak, MBEDTLS_AES_ENCRYPT, in mbedtls_aes_crypt_xts() 1143 data_unit, tweak ); in mbedtls_aes_crypt_xts() 1158 memcpy( prev_tweak, tweak, sizeof( tweak ) ); in mbedtls_aes_crypt_xts() 1159 mbedtls_gf128mul_x_ble( tweak, tweak ); in mbedtls_aes_crypt_xts() 1163 tmp[i] = input[i] ^ tweak[i]; in mbedtls_aes_crypt_xts() [all …]
|
/third_party/skia/third_party/externals/opengl-registry/extensions/IBM/ |
D | README.txt | 25 tweaks to the original extension. One tweak is to disallow the 27 what we talked about at the ARB meeting. The second tweak is
|
/third_party/openGLES/extensions/IBM/ |
D | README.txt | 25 tweaks to the original extension. One tweak is to disallow the 27 what we talked about at the ARB meeting. The second tweak is
|
/third_party/boost/tools/build/test/ |
D | test-config-example.jam | 8 # and tweak it. When tests are run, only this file will be loaded,
|
/third_party/flutter/flutter/examples/catalog/bin/ |
D | index.md.template | 7 …e - but they're complete applications. They should be easy to try out and tweak with your favorite…
|
/third_party/unity/examples/example_3/ |
D | readme.txt | 8 versions of IAR. You can tweak the yaml files to get those versions running.
|
/third_party/cJSON/tests/unity/examples/example_3/ |
D | readme.txt | 8 versions of IAR. You can tweak the yaml files to get those versions running.
|
/third_party/libevdev/ |
D | meson.build | 121 executable('libevdev-tweak-device', 122 sources: ['tools/libevdev-tweak-device.c'], 126 install_man('tools/libevdev-tweak-device.1',
|
/third_party/libcoap/examples/contiki/ |
D | README | 29 creating the resources, tweak the number of pre-allocated resources
|
/third_party/libcoap/examples/lwip/ |
D | README | 29 creating the resources, tweak the number of pre-allocated resources
|
/third_party/node/deps/npm/node_modules/meant/ |
D | CHANGELOG.md | 19 * **package:** tweak the line ([915d949](https://github.com/watilde/meant/commit/915d949))
|
/third_party/boost/libs/gil/example/clang-format/ |
D | README.md | 9 It may be necessary to manually tweak the formatting generated by this `.clang-format` file.
|
/third_party/mbedtls/include/mbedtls/ |
D | aes.h | 103 mbedtls_aes_context MBEDTLS_PRIVATE(tweak); /*!< The AES context used for tweak
|
/third_party/flutter/skia/tools/fm/ |
D | fm.cpp | 116 std::function<void(GrContextOptions*)> tweak = [](GrContextOptions*){}; in __anon684cdf960202() member 121 source->tweak = [gm](GrContextOptions* options) { gm->modifyGrContextOptions(options); }; in init() 518 source.tweak(&options); in main()
|
/third_party/boost/boost/archive/impl/ |
D | basic_text_iarchive.ipp | 42 // borland tweak
|