Searched refs:opmode (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dlopcodes.c62 #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(
[all...]
/external/apache-harmony/crypto/src/test/support/common/java/org/apache/harmony/crypto/tests/support/
H A DMyCipher.java80 protected void engineInit(int opmode, Key key, SecureRandom random) argument
85 protected void engineInit(int opmode, Key key, argument
91 protected void engineInit(int opmode, Key key, AlgorithmParameters params, argument
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLCipherRSA.java154 private void engineInitInternal(int opmode, Key key) throws InvalidKeyException { argument
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 { argument
193 engineInitInternal(opmode, key);
197 protected void engineInit(int opmode, Ke argument
208 engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random) argument
[all...]
H A DOpenSSLCipher.java243 private void engineInitInternal(int opmode, Key key, byte[] iv, SecureRandom random) argument
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 { argument
306 engineInitInternal(opmode, key, null, random);
313 protected void engineInit(int opmode, Ke argument
327 engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
H A DBaseStreamCipher.java144 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, ke
143 engineInit( int opmode, Key key, AlgorithmParameterSpec params, SecureRandom random) argument
257 engineInit( int opmode, Key key, AlgorithmParameters params, SecureRandom random) argument
291 engineInit( int opmode, Key key, SecureRandom random) argument
[all...]
H A DBaseWrapCipher.java128 int opmode,
171 switch (opmode)
188 int opmode,
218 engineInit(opmode, key, paramSpec, random);
222 int opmode,
229 engineInit(opmode, key, (AlgorithmParameterSpec)null, random);
127 engineInit( int opmode, Key key, AlgorithmParameterSpec params, SecureRandom random) argument
187 engineInit( int opmode, Key key, AlgorithmParameters params, SecureRandom random) argument
221 engineInit( int opmode, Key key, SecureRandom random) argument
H A DBaseBlockCipher.java446 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, ke
445 engineInit( int opmode, Key key, AlgorithmParameterSpec params, SecureRandom random) argument
710 engineInit( int opmode, Key key, AlgorithmParameters params, SecureRandom random) argument
750 engineInit( int opmode, Key key, SecureRandom random) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJCEStreamCipher.java170 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);
169 engineInit( int opmode, Key key, AlgorithmParameterSpec params, SecureRandom random) argument
276 engineInit( int opmode, Key key, AlgorithmParameters params, SecureRandom random) argument
310 engineInit( int opmode, Key key, SecureRandom random) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
H A DCipherSpi.java243 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, ke
242 engineInit( int opmode, Key key, AlgorithmParameterSpec params, SecureRandom random) argument
346 engineInit( int opmode, Key key, AlgorithmParameters params, SecureRandom random) argument
371 engineInit( int opmode, Key key, SecureRandom random) argument
[all...]
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/crypto/
H A DCipherFactory.java94 * @param opmode One of Cipher.{ENCRYPT,DECRYPT}_MODE.
97 public Cipher getCipher(int opmode) { argument
103 cipher.init(opmode, data.key, new IvParameterSpec(data.iv));
/external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
H A DCipherSpiTest.java253 protected void engineInit(int opmode, Key key, SecureRandom random) argument
257 protected void engineInit(int opmode, Key key, argument
262 protected void engineInit(int opmode, Key key, AlgorithmParameters params, argument
/external/mksh/src/
H A Dtree.c302 wdvarput(struct shf *shf, const char *wp, int quotelevel, int opmode) argument
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) argument
[all...]
/external/qemu/hw/core/
H A Ddma.c233 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);
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver_bsd.c64 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)
1551 drv->opmode = get80211opmode(drv);
/external/wpa_supplicant_8/src/drivers/
H A Ddriver_bsd.c64 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)
1551 drv->opmode = get80211opmode(drv);
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Ddriver_bsd.c64 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)
1551 drv->opmode = get80211opmode(drv);
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 2184 milliseconds