HomeSort by relevance Sort by last modified time
    Searched full:wrap_mode (Results 1 - 25 of 34) sorted by null

1 2

  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
CipherWrapThread.java 39 cip.init(Cipher.WRAP_MODE, key);
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_texture.c 41 wrap_mode(unsigned pipe) function
141 so->wrap = (wrap_mode(cso->wrap_s) << NV30_3D_TEX_WRAP_S__SHIFT) |
142 (wrap_mode(cso->wrap_t) << NV30_3D_TEX_WRAP_T__SHIFT) |
143 (wrap_mode(cso->wrap_r) << NV30_3D_TEX_WRAP_R__SHIFT);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseStreamCipher.java 211 if ((opmode == Cipher.ENCRYPT_MODE) || (opmode == Cipher.WRAP_MODE))
230 case Cipher.WRAP_MODE:
BaseWrapCipher.java 191 case Cipher.WRAP_MODE:
BaseBlockCipher.java 672 if ((opmode == Cipher.ENCRYPT_MODE) || (opmode == Cipher.WRAP_MODE))
696 case Cipher.WRAP_MODE:
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_sample_aos.c 71 * \param wrap_mode one of PIPE_TEX_WRAP_x
83 unsigned wrap_mode,
93 switch(wrap_mode) {
132 * \param wrap_mode one of PIPE_TEX_WRAP_x
140 unsigned wrap_mode,
146 switch(wrap_mode) {
185 * \param wrap_mode one of PIPE_TEX_WRAP_x
200 unsigned wrap_mode,
222 switch(wrap_mode) {
277 switch(wrap_mode) {
    [all...]
lp_bld_sample_soa.c 272 unsigned wrap_mode,
284 switch(wrap_mode) {
465 * \param wrap_mode one of PIPE_TEX_WRAP_x
473 unsigned wrap_mode)
481 switch(wrap_mode) {
    [all...]
  /development/samples/Vault/src/com/example/android/vault/
SecretKeyWrapper.java 99 mCipher.init(Cipher.WRAP_MODE, mPair.getPublic());
  /external/mesa3d/src/gallium/tests/graw/
graw_util.h 286 unsigned wrap_mode,
295 sampler_desc.wrap_r = wrap_mode;
  /libcore/luni/src/main/java/javax/crypto/
Cipher.java 101 public static final int WRAP_MODE = 3;
735 && mode != WRAP_MODE) {
760 * WRAP_MODE} or {@code UNWRAP_MODE}).
798 * WRAP_MODE} or {@code UNWRAP_MODE}).
842 * WRAP_MODE} or {@code UNWRAP_MODE}).
    [all...]
CipherSpi.java 176 * WRAP_MODE} or {@code UNWRAP_MODE}).
208 * WRAP_MODE} or {@code UNWRAP_MODE}).
246 * WRAP_MODE} or {@code UNWRAP_MODE}).
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreCipherSpiBase.java 159 case Cipher.WRAP_MODE:
526 "Cipher must be initialized in Cipher.WRAP_MODE to wrap keys");
607 "Cipher must be initialized in Cipher.WRAP_MODE to wrap keys");
740 case Cipher.WRAP_MODE:
741 return "WRAP_MODE";
    [all...]
AndroidKeyStoreRSACipherSpi.java 382 case Cipher.WRAP_MODE:
399 case Cipher.WRAP_MODE:
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_code.h 171 unsigned wrap_mode : 3; member in struct:r300_fragment_program_external_state::__anon16432
radeon_program_tex.c 129 rc_wrap_mode wrapmode = compiler->state.unit[inst->U.I.TexSrcUnit].wrap_mode;
  /external/mesa3d/src/gallium/drivers/r300/
r300_fs.c 198 state->unit[i].wrap_mode = RC_WRAP_REPEAT;
202 state->unit[i].wrap_mode = RC_WRAP_MIRRORED_REPEAT;
208 state->unit[i].wrap_mode = RC_WRAP_MIRRORED_CLAMP;
212 state->unit[i].wrap_mode = RC_WRAP_NONE;
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLCipherRSA.java 155 if (opmode == Cipher.ENCRYPT_MODE || opmode == Cipher.WRAP_MODE) {
OpenSSLCipher.java 426 if (opmode == Cipher.ENCRYPT_MODE || opmode == Cipher.WRAP_MODE) {
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherTest.java 801 c.init(Cipher.WRAP_MODE, CIPHER_KEY_DES, ap, new SecureRandom());
917 c.init(Cipher.WRAP_MODE, CIPHER_KEY_DES, ap, new SecureRandom());
928 c.init(Cipher.WRAP_MODE, CIPHER_KEY_DES, ap, new SecureRandom());
943 c.init(Cipher.WRAP_MODE, CIPHER_KEY_DES, ap, new SecureRandom())
    [all...]
  /cts/tests/tests/keystore/src/android/keystore/cts/
BlockCipherTestBase.java     [all...]
CipherTest.java 303 cipher.init(Cipher.WRAP_MODE, key);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
CipherSpi.java 338 case Cipher.WRAP_MODE:
  /libcore/luni/src/test/java/libcore/javax/crypto/
CipherTest.java 137 return Cipher.WRAP_MODE;
512 setExpectedOutputSize("AESWRAP", Cipher.WRAP_MODE, 8);
578 setExpectedOutputSize("DESEDEWRAP", Cipher.WRAP_MODE, 16);
    [all...]
  /external/selinux/policycoreutils/sepolicy/sepolicy/
sepolicy.glade     [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/pkcs12/
PKCS12KeyStoreSpi.java 665 cipher.init(Cipher.WRAP_MODE, keyFact.generateSecret(pbeSpec), defParams);
    [all...]

Completed in 8553 milliseconds

1 2