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

1 2

  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
CipherSymmetricKeyThread.java 46 Cipher cip = Cipher.getInstance(getAlgName() + "/" + getMode() + "/" + local
56 cip.init(Cipher.ENCRYPT_MODE, key, ivspec);
57 cip.doFinal(input, 0, input.length, output);
58 outputSize = cip.getOutputSize(input.length);
59 iv = cip.getIV();
61 cip.init(Cipher.DECRYPT_MODE, key, ivspec);
62 cip.doFinal(output, 0, outputSize, decrypted);
64 cip.init(Cipher.ENCRYPT_MODE, key);
65 cip.doFinal(input, 0, input.length, output);
66 outputSize = cip.getOutputSize(input.length)
    [all...]
CipherPBEThread.java 46 Cipher cip = Cipher.getInstance(getAlgName() + "/" + getMode() + "/" + local
52 cip.init(Cipher.ENCRYPT_MODE, key, parSpec);
53 cip.doFinal(input, 0, input.length, output);
54 int outputSize = cip.getOutputSize(input.length);
55 cip.init(Cipher.DECRYPT_MODE, key, parSpec);
56 cip.doFinal(output, 0, outputSize, decrypted);
CipherRSAThread.java 40 Cipher cip = Cipher.getInstance(getAlgName() + "/" + getMode() + "/" + local
42 cip.init(Cipher.ENCRYPT_MODE, kp.getPublic());
43 cip.doFinal(input, 0, input.length, output);
44 int outputSize = cip.getOutputSize(input.length);
45 cip.init(Cipher.DECRYPT_MODE, kp.getPrivate());
46 cip.doFinal(output, 0, outputSize, decrypted);
CipherWrapThread.java 37 Cipher cip = Cipher.getInstance(getAlgName()); local
39 cip.init(Cipher.WRAP_MODE, key);
40 byte[] output = cip.wrap(key);
41 cip.init(Cipher.UNWRAP_MODE, key);
42 Key decrypted = cip.unwrap(output, getAlgName(), Cipher.SECRET_KEY);
  /external/clang/test/CodeGen/
conditional.c 23 const int* cip; local
25 cip = 0 ? vp : cip;
  /external/clang/test/SemaCXX/
overloaded-builtin-operators.cpp 129 void test_with_ptrs(VolatileIntPtr vip, ConstIntPtr cip, ShortRef sr,
131 const int& cir1 = cip[sr];
132 const int& cir2 = sr[cip];
135 bool b1 = (vip == cip);
136 long p1 = vip - cip;
154 int const &icr2 = 17[cip];
address-space-conversion.cpp 27 const int *cip,
46 (void)const_cast<int_ptr>(cip);
  /external/clang/test/Sema/
conditional-expr.c 22 const int *cip; local
23 vp = (0 ? vp : cip); // expected-warning {{discards qualifiers}}
24 vp = (0 ? cip : vp); // expected-warning {{discards qualifiers}}
format-strings-scanf.c 157 void test_qualifiers(const int *cip, volatile int* vip,
160 scanf("%d", cip); // expected-warning{{format specifies type 'int *' but the argument has type 'const int *'}}
161 scanf("%n", cip); // expected-warning{{format specifies type 'int *' but the argument has type 'const int *'}}
format-strings.c 629 void test_qualifiers(volatile int *vip, const int *cip,
631 printf("%n", cip); // expected-warning{{format specifies type 'int *' but the argument has type 'const int *'}}
635 printf("%p", cip); // No warning.
    [all...]
  /prebuilts/go/darwin-x86/src/net/
platform_test.go 126 cip := ParseIP(client)
127 if cip != nil {
128 if !supportsIPv4 && cip.To4() != nil {
131 if !supportsIPv6 && cip.To16() != nil && cip.To4() == nil {
141 if ip.To16() != nil && ip.To4() == nil && cip.To4() != nil { // a pair of IPv6 server and IPv4 client
144 if (ip.To4() != nil || ip == nil) && cip.To16() != nil && cip.To4() == nil { // a pair of IPv4 server and IPv6 client
  /prebuilts/go/linux-x86/src/net/
platform_test.go 126 cip := ParseIP(client)
127 if cip != nil {
128 if !supportsIPv4 && cip.To4() != nil {
131 if !supportsIPv6 && cip.To16() != nil && cip.To4() == nil {
141 if ip.To16() != nil && ip.To4() == nil && cip.To4() != nil { // a pair of IPv6 server and IPv4 client
144 if (ip.To4() != nil || ip == nil) && cip.To16() != nil && cip.To4() == nil { // a pair of IPv4 server and IPv6 client
  /development/vndk/tools/header-checker/header-abi-dumper/src/
abi_wrappers.h 35 const clang::CompilerInstance *cip);
38 const clang::CompilerInstance *cip);
abi_wrappers.cpp 31 const clang::CompilerInstance *cip)
32 : cip_(cip),
37 const clang::CompilerInstance *cip) {
38 clang::SourceManager &sm = cip->getSourceManager();
  /external/clang/test/SemaTemplate/
instantiate-method.cpp 71 void test_converts_to(ConvertsTo<int> ci, ConvertsTo<int *> cip) {
73 int *ip = cip;
  /external/syslinux/com32/hdt/
hdt-dump-pxe.c 68 in.s_addr = hardware->pxe.dhcpdata.cip;
  /external/ImageMagick/coders/
Android.mk 32 cip.c\
Make.com 32 $call Make cip.c
152 $library/create libCoders.olb aai,art,avs,bgr,bmp,braille,clip,clipboard,cip, -
  /external/syslinux/com32/modules/
prdhcp.c 123 " cip:%08X\n", p->opcode, p->Hardware, p->Hardlen, p->Gatehops,
124 ntohl(p->ident), ntohs(p->seconds), ntohs(p->Flags), ntohl(p->cip));
  /external/syslinux/core/fs/pxe/
pxe.h 97 uint32_t cip; /* Cient IP */ member in struct:bootp_t
  /external/libpng/contrib/libtests/
makepng.c 1463 chunk_insert *cip; local
    [all...]
  /external/tcpdump/
Android.mk 49 print-cip.c \
  /external/ppp/pppd/
ipv6cp.c 905 u_char *cip, *next; /* Pointer to current and next CIs */ local
926 cip = p = next; /* Remember begining of CI */
1045 if (ucp != cip)
1046 BCOPY(cip, ucp, cilen); /* Move it */
    [all...]
ipxcp.c 996 u_char *cip, *next; /* Pointer to current and next CIs */ local
1017 cip = p = next; /* Remember begining of CI */
1249 if (ucp != cip)
1250 BCOPY(cip, ucp, cilen); /* Move it */
    [all...]
  /external/syslinux/core/lwip/src/netif/ppp/
ipcp.c 877 u_char *cip, *next; /* Pointer to current and next CIs */ local
905 cip = p = next; /* Remember begining of CI */
1157 if (ucp != cip) {
1158 BCOPY(cip, ucp, cilen); /* Move it */
    [all...]

Completed in 1121 milliseconds

1 2