HomeSort by relevance Sort by last modified time
    Searched defs:des (Results 1 - 25 of 36) sorted by null

1 2

  /external/valgrind/none/tests/s390x/
troo.c 24 uint8_t des[20]; variable
79 printf(" %x", des[i]);
90 assert(sizeof des >= sizeof src);
97 cc = run_test(&src, &tran_table, &des, 0, 0xca);
102 cc = run_test(&src, &tran_table, &des, 5, 0xee);
106 cc = run_test(&src, &tran_table, &des, 10, 0x00);
110 memset((char *)&des, 0, 10);
113 cc = run_test(&src, &tran_table, &des, 5, 0xff); /* 1st byte matches */
117 cc = run_test(&src, &tran_table, &des, 5, 0xbb); /* 2nd byte matches */
121 cc = run_test(&src, &tran_table, &des, 10, 0xea)
    [all...]
trot.c 25 uint16_t des[40]; variable
80 printf(" %hx", des[i]);
92 assert(sizeof des >= sizeof src);
99 cc = run_test(&src, &tran_table, &des, 0, 0x0);
103 cc = run_test(&src, &tran_table, &des, 0, 0xcaca);
108 cc = run_test(&src, &tran_table, &des, 3, 0xeeee);
112 cc = run_test(&src, &tran_table, &des, 10, 0xeeee);
116 memset((uint16_t *)&des, 0, 10);
119 cc = run_test(&src, &tran_table, &des, 5, 0xffff);
123 cc = run_test(&src, &tran_table, &des, 5, 0xcccc)
    [all...]
trto.c 24 uint8_t des[20]; variable
79 printf(" %x", des[i]);
90 assert(sizeof des <= sizeof src);
97 cc = run_test(&src, &tran_table, &des, 0, 0x0);
101 cc = run_test(&src, &tran_table, &des, 0, 0xca);
106 cc = run_test(&src, &tran_table, &des, 12, 0xee);
110 cc = run_test(&src, &tran_table, &des, 20, 0x00);
114 memset((uint16_t *)&des, 0, 10);
117 cc = run_test(&src, &tran_table, &des, 12, 0xff);
121 cc = run_test(&src, &tran_table, &des, 12, 0xcc)
    [all...]
trtt.c 25 uint16_t des[20]; variable
81 printf(" %hx", des[i]);
93 assert(sizeof des <= sizeof src);
100 cc = run_test(&src, &tran_table, &des, 0, 0x0);
104 cc = run_test(&src, &tran_table, &des, 0, 0xcaca);
109 cc = run_test(&src, &tran_table, &des, 4, 0xdada);
113 cc = run_test(&src, &tran_table, &des, 10, 0x00);
117 memset((uint16_t *)&des, 0, 10);
120 cc = run_test(&src, &tran_table, &des, 10, 0xffff);
124 cc = run_test(&src, &tran_table, &des, 10, 0xcccc)
    [all...]
  /external/libvpx/libvpx/vpx_scale/generic/
gen_scalers.c 42 unsigned char *des = dest; local
54 des[0] = (unsigned char) a;
55 des[1] = (unsigned char)((b * 192 + c * 64 + 128) >> 8);
56 des[2] = (unsigned char)((c * 128 + d * 128 + 128) >> 8);
57 des[3] = (unsigned char)((d * 64 + e * 192 + 128) >> 8);
60 des += 4;
74 unsigned char *des = dest; local
85 des[0 * dest_pitch] = (unsigned char) a;
86 des[1 * dest_pitch] = (unsigned char)((b * 192 + c * 64 + 128) >> 8);
87 des[2 * dest_pitch] = (unsigned char)((c * 128 + d * 128 + 128) >> 8)
123 unsigned char *des = dest; local
152 unsigned char *des = dest; local
198 unsigned char *des = dest; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/generic/
gen_scalers.c 42 unsigned char *des = dest; local
54 des[0] = (unsigned char) a;
55 des[1] = (unsigned char)((b * 192 + c * 64 + 128) >> 8);
56 des[2] = (unsigned char)((c * 128 + d * 128 + 128) >> 8);
57 des[3] = (unsigned char)((d * 64 + e * 192 + 128) >> 8);
60 des += 4;
74 unsigned char *des = dest; local
85 des[0 * dest_pitch] = (unsigned char) a;
86 des[1 * dest_pitch] = (unsigned char)((b * 192 + c * 64 + 128) >> 8);
87 des[2 * dest_pitch] = (unsigned char)((c * 128 + d * 128 + 128) >> 8)
123 unsigned char *des = dest; local
152 unsigned char *des = dest; local
198 unsigned char *des = dest; local
    [all...]
  /external/wpa_supplicant_8/src/crypto/
crypto_internal-cipher.c 38 } des; member in union:crypto_cipher::__anon27010
91 des_key_setup(key, ctx->u.des.ek, ctx->u.des.dk);
92 os_memcpy(ctx->u.des.cbc, iv, 8);
151 des_block_encrypt(ctx->u.des.cbc, ctx->u.des.ek,
152 ctx->u.des.cbc);
153 os_memcpy(crypt, ctx->u.des.cbc, 8);
214 des_block_decrypt(crypt, ctx->u.des.dk, plain);
216 plain[j] ^= ctx->u.des.cbc[j]
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSUtils.java 46 private static final Set<String> des = new HashSet<String>(); field in class:CMSUtils
50 des.add("DES");
51 des.add("DESEDE");
53 // des.add(OIWObjectIdentifiers.desCBC.getId());
54 // des.add(PKCSObjectIdentifiers.des_EDE3_CBC.getId());
55 // des.add(PKCSObjectIdentifiers.des_EDE3_CBC.getId());
56 // des.add(PKCSObjectIdentifiers.id_alg_CMS3DESwrap.getId());
64 return des.contains(name);
  /external/opencv/cvaux/src/
cvmorphcontours.cpp 110 double d0, d1, d2, des, t_zero; local
255 des = Q1.y*Q1.y - Q0.y*Q2.y;
259 if( des >= 0 )
261 t_zero = ( Q0.y - Q1.y + sqrt(des) )/( Q0.y - 2*Q1.y + Q2.y );
268 t_zero = ( Q0.y - Q1.y - sqrt(des) )/( Q0.y - 2*Q1.y + Q2.y );
277 des = d1*d1 - d0*d2;
281 if( des >= 0 )
283 t_zero = ( d0 - d1 - sqrt(des) )/( d0 - 2*d1 + d2 );
291 t_zero = ( d0 - d1 + sqrt(des) )/( d0 - 2*d1 + d2 );
  /ndk/tests/build/issue56508-gcc4.7-ICE/jni/
extraMachine.c 87 Sint16 des; member in struct:filerep
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
BaseAgreementSpi.java 43 private static final Hashtable des = new Hashtable(); field in class:BaseAgreementSpi
52 keySizes.put("DES", i64);
96 defaultOids.put("DES", OIWObjectIdentifiers.desCBC);
104 nameTable.put(OIWObjectIdentifiers.desECB.getId(), "DES");
105 nameTable.put(OIWObjectIdentifiers.desCBC.getId(), "DES");
106 nameTable.put(OIWObjectIdentifiers.desCFB.getId(), "DES");
107 nameTable.put(OIWObjectIdentifiers.desOFB.getId(), "DES");
136 oids.put("DES", OIWObjectIdentifiers.desCBC);
138 des.put("DES", "DES")
    [all...]
  /external/libvncserver/webclients/java-applet/
VncViewer.jar 
  /external/libvncserver/webclients/java-applet/ssl/
SignedUltraViewerSSL.jar 
SignedVncViewer.jar 
UltraViewerSSL.jar 
VncViewer.jar 
  /external/libxml2/
xmlschemas.c 2791 xmlChar *des = NULL; local
2831 xmlChar *des = NULL, *strA = NULL; local
2864 xmlChar *des = NULL; local
2881 BAD_CAST des, attr->name, (const xmlChar *) msg, NULL, NULL); local
2938 xmlChar *des = NULL, *msg = NULL; local
3032 xmlChar *des = NULL, *strT = NULL; local
3061 xmlChar *des = NULL; local
3089 xmlChar *des = NULL; local
3094 BAD_CAST des, BAD_CAST name1, BAD_CAST name2, NULL, NULL); local
3214 xmlChar *des = NULL; local
8478 xmlChar *des = NULL; local
    [all...]
  /frameworks/base/core/java/android/widget/
TextView.java 7062 int des = -1; local
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.6/
httpclient-4.2.6.jar 
  /prebuilts/devtools/tools/lib/
httpclient-4.1.1.jar 
  /prebuilts/tools/common/http-client/
httpclient-4.1.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.1.1/
httpclient-4.1.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.1/
httpclient-4.2.1.jar 
  /prebuilts/tools/common/offline-m2/org/apache/httpcomponents/httpclient/4.1.1/
httpclient-4.1.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.3.2/
httpclient-4.3.2.jar 

Completed in 822 milliseconds

1 2