HomeSort by relevance Sort by last modified time
    Searched refs:opmode (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium_org/third_party/skia/third_party/lua/src/
lopcodes.c 62 #define opmode(t,a,b,c,m) (((t)<<7) | ((a)<<6) | ((b)<<4) | ((c)<<2) | (m)) macro
66 opmode(0, 1, OpArgR, OpArgN, iABC) /* OP_MOVE */
67 ,opmode(0, 1, OpArgK, OpArgN, iABx) /* OP_LOADK */
68 ,opmode(0, 1, OpArgN, OpArgN, iABx) /* OP_LOADKX */
69 ,opmode(0, 1, OpArgU, OpArgU, iABC) /* OP_LOADBOOL */
70 ,opmode(0, 1, OpArgU, OpArgN, iABC) /* OP_LOADNIL */
71 ,opmode(0, 1, OpArgU, OpArgN, iABC) /* OP_GETUPVAL */
72 ,opmode(0, 1, OpArgU, OpArgK, iABC) /* OP_GETTABUP */
73 ,opmode(0, 1, OpArgR, OpArgK, iABC) /* OP_GETTABLE */
74 ,opmode(0, 0, OpArgK, OpArgK, iABC) /* OP_SETTABUP *
    [all...]
  /libcore/luni/src/main/java/javax/crypto/
Cipher.java 592 * {@code opmode}.
604 * @param opmode
614 public final void init(int opmode, Key key) throws InvalidKeyException {
621 init(opmode, key, secureRandom);
630 * {@code opmode}.
642 * @param opmode
654 * if the specified opmode is invalid.
656 public final void init(int opmode, Key key, SecureRandom random) throws InvalidKeyException {
657 checkMode(opmode);
661 getSpi(key).engineInit(opmode, key, random)
    [all...]
CipherSpi.java 161 * {@code opmode}.
173 * @param opmode
185 protected abstract void engineInit(int opmode, Key key, SecureRandom random)
194 * {@code opmode}.
205 * @param opmode
222 protected abstract void engineInit(int opmode, Key key,
232 * {@code opmode}.
243 * @param opmode
260 protected abstract void engineInit(int opmode, Key key,
  /external/apache-harmony/crypto/src/test/support/common/java/org/apache/harmony/crypto/tests/support/
MyCipher.java 80 protected void engineInit(int opmode, Key key, SecureRandom random)
85 protected void engineInit(int opmode, Key key,
91 protected void engineInit(int opmode, Key key, AlgorithmParameters params,
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLCipherRSA.java 154 private void engineInitInternal(int opmode, Key key) throws InvalidKeyException {
155 if (opmode == Cipher.ENCRYPT_MODE || opmode == Cipher.WRAP_MODE) {
157 } else if (opmode == Cipher.DECRYPT_MODE || opmode == Cipher.UNWRAP_MODE) {
160 throw new InvalidParameterException("Unsupported opmode " + opmode);
192 protected void engineInit(int opmode, Key key, SecureRandom random) throws InvalidKeyException {
193 engineInitInternal(opmode, key);
197 protected void engineInit(int opmode, Key key, AlgorithmParameterSpec params
    [all...]
OpenSSLCipher.java 243 private void engineInitInternal(int opmode, Key key, byte[] iv, SecureRandom random)
245 if (opmode == Cipher.ENCRYPT_MODE || opmode == Cipher.WRAP_MODE) {
247 } else if (opmode == Cipher.DECRYPT_MODE || opmode == Cipher.UNWRAP_MODE) {
250 throw new InvalidParameterException("Unsupported opmode " + opmode);
304 protected void engineInit(int opmode, Key key, SecureRandom random) throws InvalidKeyException {
306 engineInitInternal(opmode, key, null, random);
313 protected void engineInit(int opmode, Key key, AlgorithmParameterSpec params
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/support/
MyCipher.java 83 protected void engineInit(int opmode, Key key, SecureRandom random)
88 protected void engineInit(int opmode, Key key,
94 protected void engineInit(int opmode, Key key, AlgorithmParameters params,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseStreamCipher.java 144 int opmode,
221 if ((opmode == Cipher.ENCRYPT_MODE) || (opmode == Cipher.WRAP_MODE))
237 switch (opmode)
248 throw new InvalidParameterException("unknown opmode " + opmode + " passed");
258 int opmode,
287 engineInit(opmode, key, paramSpec, random);
292 int opmode,
299 engineInit(opmode, key, (AlgorithmParameterSpec)null, random)
    [all...]
BaseWrapCipher.java 128 int opmode,
171 switch (opmode)
188 int opmode,
218 engineInit(opmode, key, paramSpec, random);
222 int opmode,
229 engineInit(opmode, key, (AlgorithmParameterSpec)null, random);
BaseBlockCipher.java 446 int opmode,
669 if ((opmode == Cipher.ENCRYPT_MODE) || (opmode == Cipher.WRAP_MODE))
690 switch (opmode)
701 throw new InvalidParameterException("unknown opmode " + opmode + " passed");
711 int opmode,
745 engineInit(opmode, key, paramSpec, random);
751 int opmode,
758 engineInit(opmode, key, (AlgorithmParameterSpec)null, random)
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherSpiTest.java 83 protected void engineInit(int opmode, Key key, SecureRandom random)
85 super.engineInit(opmode, key, random);
89 protected void engineInit(int opmode, Key key, AlgorithmParameterSpec params,
91 super.engineInit(opmode, key, params, random);
95 protected void engineInit(int opmode, Key key, AlgorithmParameters params,
97 super.engineInit(opmode, key, params, random);
340 protected void engineInit(int opmode, Key key, SecureRandom random)
344 protected void engineInit(int opmode, Key key,
349 protected void engineInit(int opmode, Key key, AlgorithmParameters params,
  /libcore/luni/src/test/java/libcore/javax/crypto/
MockCipherSpi.java 97 protected void engineInit(int opmode, Key key, SecureRandom random) throws InvalidKeyException {
102 protected void engineInit(int opmode, Key key, AlgorithmParameterSpec params,
108 protected void engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCEStreamCipher.java 170 int opmode,
247 if ((opmode == Cipher.ENCRYPT_MODE) || (opmode == Cipher.WRAP_MODE))
261 switch (opmode)
277 int opmode,
306 engineInit(opmode, key, paramSpec, random);
311 int opmode,
318 engineInit(opmode, key, (AlgorithmParameterSpec)null, random);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
CipherSpi.java 243 int opmode,
255 if (privateKeyOnly && opmode == Cipher.ENCRYPT_MODE)
265 if (publicKeyOnly && opmode == Cipher.ENCRYPT_MODE)
331 switch (opmode)
342 throw new InvalidParameterException("unknown opmode " + opmode + " passed to RSA");
347 int opmode,
368 engineInit(opmode, key, paramSpec, random);
372 int opmode,
379 engineInit(opmode, key, (AlgorithmParameterSpec)null, random)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/crypto/internal/
NullCipherSpi.java 76 public void engineInit(int opmode, Key key, SecureRandom random)
82 public void engineInit(int opmode, Key key, AlgorithmParameterSpec params,
89 public void engineInit(int opmode, Key key, AlgorithmParameters params,
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/crypto/
CipherFactory.java 94 * @param opmode One of Cipher.{ENCRYPT,DECRYPT}_MODE.
97 public Cipher getCipher(int opmode) {
103 cipher.init(opmode, data.key, new IvParameterSpec(data.iv));
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
CipherSpiTest.java 253 protected void engineInit(int opmode, Key key, SecureRandom random)
257 protected void engineInit(int opmode, Key key,
262 protected void engineInit(int opmode, Key key, AlgorithmParameters params,
  /external/mksh/src/
tree.c 302 wdvarput(struct shf *shf, const char *wp, int quotelevel, int opmode)
324 if ((opmode & WDS_MAGIC) &&
335 if (opmode & WDS_TPUTS) {
339 if (!(opmode & WDS_KEEPQ))
371 if (opmode & WDS_TPUTS) {
377 if (opmode & WDS_TPUTS) {
389 wp = wdvarput(shf, wp, 0, opmode);
396 if (opmode & WDS_MAGIC) {
409 if (opmode & WDS_MAGIC)
648 wdstrip(const char *wp, int opmode)
    [all...]
  /external/qemu/hw/core/
dma.c 233 int op, ai, dir, opmode; local
237 opmode = (data >> 6) & 3;
239 linfo ("ichan %d, op %d, ai %d, dir %d, opmode %d\n",
240 ichan, op, ai, dir, opmode);
336 int dir, opmode; local
339 opmode = (r->mode >> 6) & 3;
344 if (opmode != 1) {
345 dolog ("DMA not in single mode select %#x\n", opmode);
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
802.11.h 2935 uint16 opmode; \/* operation mode *\/ member in struct:ht_add_ie
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_bsd.c 64 enum ieee80211_opmode opmode; /* operation mode */ member in struct:bsd_driver_data
357 if (drv->opmode == IEEE80211_M_IBSS ||
358 drv->opmode == IEEE80211_M_AHDEMO)
    [all...]
  /device/lge/mako/camera/mm-camera-interface/
mm_camera_stream.c 371 static int mm_camera_util_set_op_mode(int fd, int opmode)
376 s_ctrl.value = opmode;
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 

Completed in 2635 milliseconds

1 2