HomeSort by relevance Sort by last modified time
    Searched refs:dh (Results 101 - 125 of 208) sorted by null

1 2 3 45 6 7 8 9

  /external/openssl/apps/
s_server.c 184 #include <openssl/dh.h>
216 static DH *load_dh_param(const char *dhfile);
217 static DH *get_dh512(void);
237 static DH *get_dh512(void)
239 DH *dh=NULL; local
241 if ((dh=DH_new()) == NULL) return(NULL);
242 dh->p=BN_bin2bn(dh512_p,sizeof(dh512_p),NULL);
243 dh->g=BN_bin2bn(dh512_g,sizeof(dh512_g),NULL);
244 if ((dh->p == NULL) || (dh->g == NULL)
1650 DH *dh=NULL; local
    [all...]
  /external/wpa_supplicant_8/src/crypto/
tls_openssl.c     [all...]
  /external/wpa_supplicant_8/src/tls/
tlsv1_cred.c 353 const u8 *dh, size_t len)
358 pos = dh;
359 end = dh + len;
372 wpa_printf(MSG_DEBUG, "DH: DH parameters did not start with a "
385 wpa_printf(MSG_DEBUG, "DH: No INTEGER tag found for p; "
390 wpa_hexdump(MSG_MSGDUMP, "DH: prime (p)", hdr.payload, hdr.length);
407 wpa_printf(MSG_DEBUG, "DH: No INTEGER tag found for g; "
412 wpa_hexdump(MSG_MSGDUMP, "DH: base (g)", hdr.payload, hdr.length);
426 static const char *pem_dhparams_begin = "-----BEGIN DH PARAMETERS-----"
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
KeyAgreementSpi.java 1 package org.bouncycastle.jcajce.provider.asymmetric.dh;
BCDHPrivateKey.java 1 package org.bouncycastle.jcajce.provider.asymmetric.dh;
104 return "DH";
BCDHPublicKey.java 1 package org.bouncycastle.jcajce.provider.asymmetric.dh;
75 throw new IllegalArgumentException("invalid info structure in DH public key");
111 return "DH";
  /external/openssl/crypto/dh/
dhtest.c 1 /* crypto/dh/dhtest.c */
80 printf("No DH support\n");
84 #include <openssl/dh.h>
99 DH *a;
100 DH *b=NULL;
191 fprintf(stderr,"Error in DH routines\n");
  /external/openssl/ssl/
s3_lib.c 162 #include <openssl/dh.h>
335 /* The DH ciphers */
354 0, /* not implemented (non-ephemeral DH) */
370 0, /* not implemented (non-ephemeral DH) */
386 0, /* not implemented (non-ephemeral DH) */
402 0, /* not implemented (non-ephemeral DH) */
418 0, /* not implemented (non-ephemeral DH) */
432 /* The Ephemeral DH ciphers */
1012 0, /* not implemented (non-ephemeral DH) */
1125 0, /* not implemented (non-ephemeral DH) */
3175 DH *dh = (DH *)parg; local
3510 DH *new=NULL,*dh; local
    [all...]
s3_clnt.c 163 #include <openssl/dh.h>
347 /* Check if it is anon DH/ECDH */
436 /* EAY EAY EAY need to check for DH fix cert
1354 DH *dh=NULL; local
3251 DH *dh; local
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ProgressBarICS.java 807 int dh = 0; local
810 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
814 dh += getPaddingTop() + getPaddingBottom();
817 resolveSize(dh, heightMeasureSpec));
  /external/quake/quake/src/QW/client/
d_polysa.s 874 movb %dh,%ah
892 movb %dh,%ah
910 movb %dh,%ah
928 movb %dh,%ah
946 movb %dh,%ah
964 movb %dh,%ah
982 movb %dh,%ah
1000 movb %dh,%ah
    [all...]
  /external/quake/quake/src/WinQuake/
d_polysa.s 874 movb %dh,%ah
892 movb %dh,%ah
910 movb %dh,%ah
928 movb %dh,%ah
946 movb %dh,%ah
964 movb %dh,%ah
982 movb %dh,%ah
1000 movb %dh,%ah
    [all...]
  /external/skia/src/effects/
SkBlurMask.cpp 425 int dh = sh + 2*ry; local
430 for (int y = 0; y < dh; y++) {
489 int dh = sh + 2*ry; local
496 for (int y = 0; y < dh; y++) {
592 int dh = sh + 2*ry; local
597 for (int y = 0; y < dh; y++) {
683 int dh = sh + 2*ry; local
690 for (int y = 0; y < dh; y++) {
    [all...]
  /external/libyuv/files/source/
convert_argb.cc 909 // TODO(fbarchard): review w and h requirement. dw and dh may be enough.
915 int dw, int dh) {
931 ARGBBuffers bufs = { argb, argb_stride, dw, dh };
942 ret = mjpeg_decoder.DecodeToCallback(&JpegI420ToARGB, &bufs, dw, dh);
953 ret = mjpeg_decoder.DecodeToCallback(&JpegI422ToARGB, &bufs, dw, dh);
964 ret = mjpeg_decoder.DecodeToCallback(&JpegI444ToARGB, &bufs, dw, dh);
975 ret = mjpeg_decoder.DecodeToCallback(&JpegI411ToARGB, &bufs, dw, dh);
982 ret = mjpeg_decoder.DecodeToCallback(&JpegI400ToARGB, &bufs, dw, dh);
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderTableSection.cpp 524 int dh = toAdd; local
540 int toAdd = min(dh, static_cast<int>((totalHeight * m_grid[r].logicalHeight.percent() / 100) - rh));
545 dh -= toAdd;
558 int toAdd = dh / numAuto;
560 dh -= toAdd;
566 if (dh > 0 && m_rowPos[totalRows]) {
573 add += dh * (m_rowPos[r + 1] - prev) / tot;
    [all...]
  /external/ipsec-tools/src/racoon/
oakley.c 146 /* set DH MODP */
209 "failed to get DH buffer.\n");
221 * compute sharing secret of DH
222 * IN: *dh, *pub, *priv, *pub_p
226 oakley_dh_compute(dh, pub, priv, pub_p, gxy)
227 const struct dhgroup *dh;
233 if ((*gxy = vmalloc(dh->prime->l)) == NULL) {
235 "failed to get DH buffer.\n");
242 switch (dh->type) {
244 if (eay_dh_compute(dh->prime, dh->gen1, pub, priv, pub_p, gxy) < 0)
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
WindowManagerService.java 1577 final int dh = displayInfo.appHeight; local
1971 final int dh = displayInfo.appHeight; local
2031 final int dh = displayInfo.appHeight; local
5316 int dw, dh; local
6412 int dh = realdh; local
7906 final int dh = displayInfo.logicalHeight; local
8625 final int dh = displayInfo.logicalHeight; local
    [all...]
  /external/grub/stage2/
asm.S 324 xorb %dh, %dh
1014 movb 0x14(%ebp), %dh
1154 movb %dh, %al
1224 movb $0, %dh
    [all...]
start.S 232 movb 11(%si), %dh
242 * %dh = head
  /external/openssl/crypto/aes/asm/
aes-x86_64.S 30 movzbl %dh,%esi
48 movzbl %dh,%esi
91 movzbl %dh,%esi
120 movzbl %dh,%edi
189 movzbl %dh,%ebp
215 movzbl %dh,%esi
418 movzbl %dh,%esi
450 movzbl %dh,%esi
474 movzbl %dh,%edi
530 movzbl %dh,%es
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/hermes/
x86p_32.asm 941 and dh,0e0h
946 shr dh,3
954 or dl,dh
985 and dh,0e0h
990 shr dh,3
994 or ah,dh
x86p_16.asm 423 mov dh,[esi+2]
431 mov dh,[esi+6]
456 mov dh,[esi+2]
  /system/core/libpixelflinger/codeflinger/
load_store.cpp 259 int dh = d.format.c[component].h; local
261 int dbits = dh - dl;
375 int shift = sh-dh;
  /external/openssl/crypto/bn/
bn_asm.c 241 BN_ULONG dh,dl,q,ret=0,th,tl,t; local
258 dh=(d&BN_MASK2h)>>BN_BITS4;
262 if ((h>>BN_BITS4) == dh)
265 q=h/dh;
267 th=q*dh;
278 th-=dh;
  /external/openssh/
Android.mk 16 monitor_fdpass.c rijndael.c ssh-dss.c ssh-ecdsa.c ssh-rsa.c dh.c \

Completed in 771 milliseconds

1 2 3 45 6 7 8 9