HomeSort by relevance Sort by last modified time
    Searched refs:dh (Results 76 - 100 of 140) sorted by null

1 2 34 5 6

  /external/chromium/third_party/icu/source/tools/genctd/
genctd.cpp 102 DataHeader dh ={ variable
410 pData = udata_create(outDir, NULL, outFileName, &(dh.info), copyright, &status);
  /external/icu4c/tools/genctd/
genctd.cpp 99 DataHeader dh ={ variable
364 pData = udata_create(outDir, NULL, outFileName, &(dh.info), copyright, &status);
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/Xv/
Xv.c 430 unsigned int dw, unsigned int dh
453 req->drw_h = dh;
470 unsigned int dw, unsigned int dh
492 req->drw_h = dh;
509 unsigned int dw, unsigned int dh
531 req->drw_h = dh;
548 unsigned int dw, unsigned int dh
570 req->drw_h = dh;
  /system/core/libpixelflinger/codeflinger/
load_store.cpp 237 int dh = d.format.c[component].h; local
239 int dbits = dh - dl;
353 int shift = sh-dh;
  /external/chromium/net/third_party/nss/ssl/
ssl3prot.h 237 SSL3ServerDHParams dh; member in union:__anon2589::__anon2590
  /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/crypto/pem/
pem_all.c 126 #include <openssl/dh.h>
292 IMPLEMENT_PEM_rw_const(DHparams, DH, PEM_STRING_DHPARAMS, DHparams)
  /external/webkit/WebCore/rendering/
RenderView.cpp 609 // Instead of this dh computation we should keep the result
611 int dh = 0; local
613 dh += c->height() + c->marginTop() + c->marginBottom();
615 if (dh > h)
616 h = dh;
RenderTableSection.cpp 516 int dh = toAdd; local
532 int toAdd = min(dh, (totalHeight * m_grid[r].height.rawValue() / (100 * percentScaleFactor)) - rh);
537 dh -= toAdd;
550 int toAdd = dh / numAuto;
552 dh -= toAdd;
558 if (dh > 0 && m_rowPos[totalRows]) {
565 add += dh * (m_rowPos[r + 1] - prev) / tot;
    [all...]
  /frameworks/base/core/java/android/widget/
ProgressBar.java 866 int dh = 0; local
869 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
872 dh += mPaddingTop + mPaddingBottom;
875 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/openssl/ssl/
s3_clnt.c 160 #include <openssl/dh.h>
317 /* Check if it is anon DH/ECDH */
395 /* EAY EAY EAY need to check for DH fix cert
1222 DH *dh=NULL; local
2929 DH *dh; local
    [all...]
  /external/ipsec-tools/src/racoon/
oakley.c 143 /* set DH MODP */
206 "failed to get DH buffer.\n");
218 * compute sharing secret of DH
219 * IN: *dh, *pub, *priv, *pub_p
223 oakley_dh_compute(dh, pub, priv, pub_p, gxy)
224 const struct dhgroup *dh;
230 if ((*gxy = vmalloc(dh->prime->l)) == NULL) {
232 "failed to get DH buffer.\n");
239 switch (dh->type) {
241 if (eay_dh_compute(dh->prime, dh->gen1, pub, priv, pub_p, gxy) < 0)
    [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/wpa_supplicant/
tls_openssl.c     [all...]
  /frameworks/base/services/java/com/android/server/
WindowManagerService.java 1297 final int dh = mDisplay.getHeight(); local
1704 final int dh = mDisplay.getHeight(); local
1745 final int dh = mDisplay.getHeight(); local
4984 final int dh = rotated ? mInitialDisplayWidth : mInitialDisplayHeight; local
10151 final int dh = mLastDH; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/hermes/
x86p_32.asm 942 and dh,0e0h
947 shr dh,3
955 or dl,dh
986 and dh,0e0h
991 shr dh,3
995 or ah,dh
x86p_16.asm 423 mov dh,[esi+2]
431 mov dh,[esi+6]
456 mov dh,[esi+2]
  /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/openssl/crypto/dsa/
dsa.h 83 # include <openssl/dh.h>
247 /* Convert DSA structure (key or just parameters) into DH structure
249 DH *DSA_dup_DH(const DSA *r);
dsa_lib.c 70 #include <openssl/dh.h>
276 DH *DSA_dup_DH(const DSA *r)
279 * DH has p, optional length, g, optional pub_key, optional priv_key.
282 DH *ret = NULL;
  /external/openssl/crypto/engine/
eng_openssl.c 80 #include <openssl/dh.h>
  /external/openssl/include/openssl/
dsa.h 83 # include <openssl/dh.h>
247 /* Convert DSA structure (key or just parameters) into DH structure
249 DH *DSA_dup_DH(const DSA *r);

Completed in 1073 milliseconds

1 2 34 5 6