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

1 2 3 4 5

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
AlgorithmParametersSpi.java 1 package org.bouncycastle.jcajce.provider.asymmetric.dh;
81 throw new InvalidParameterSpecException("unknown parameter spec passed to DH parameters object.");
115 throw new IOException("Not a valid DH Parameter encoding.");
119 throw new IOException("Not a valid DH Parameter encoding.");
KeyFactorySpi.java 1 package org.bouncycastle.jcajce.provider.asymmetric.dh;
AlgorithmParameterGeneratorSpi.java 1 package org.bouncycastle.jcajce.provider.asymmetric.dh;
38 throw new InvalidAlgorithmParameterException("DH parameter generator requires a DHGenParameterSpec for initialisation");
66 params = createParametersInstance("DH");
KeyAgreementSpi.java 1 package org.bouncycastle.jcajce.provider.asymmetric.dh;
113 throw new InvalidKeyException("Invalid DH PublicKey");
KeyPairGeneratorSpi.java 1 package org.bouncycastle.jcajce.provider.asymmetric.dh;
36 super("DH");
  /external/icu/icu4c/source/tools/genbrk/
genbrk.cpp 103 DataHeader dh ={ variable
310 uprv_memcpy(dh.info.formatVersion, ((RBBIDataHeader *)outData)->fFormatVersion, sizeof(dh.info.formatVersion));
317 pData = udata_create(outDir, NULL, outFileName, &(dh.info), copyright, &status);
  /external/avb/libavb/
avb_descriptor.c 91 const AvbDescriptor* dh = (const AvbDescriptor*)p; local
92 avb_assert_aligned(dh);
93 uint64_t nb_following = avb_be64toh(dh->num_bytes_following);
106 if (foreach_func(dh, user_data) == 0) {
  /external/icu/icu4c/source/tools/gencfu/
gencfu.cpp 106 DataHeader dh ={ variable
258 uprv_memcpy(dh.info.formatVersion,
260 sizeof(dh.info.formatVersion));
267 pData = udata_create(outDir, NULL, outFileName, &(dh.info), copyright, &status);
  /external/libmojo/mojo/edk/system/
message_for_transit.cc 92 DispatcherHeader* dh = &dispatcher_headers[i]; local
96 dh->type = static_cast<int32_t>(d->GetType());
97 dh->num_bytes = info.num_bytes;
98 dh->num_ports = info.num_ports;
99 dh->num_platform_handles = info.num_handles;
  /frameworks/base/core/java/android/text/style/
DrawableMarginSpan.java 50 int dh = mDrawable.getIntrinsicHeight(); local
53 mDrawable.setBounds(ix, itop, ix+dw, itop+dh);
  /external/boringssl/src/crypto/dh/
params.c 53 #include <openssl/dh.h>
190 static DH *get_standard_parameters(const struct standard_parameters *params,
192 DH *dh = DH_new(); local
193 if (!dh) {
197 dh->p = BN_dup(&params->p);
198 dh->q = BN_dup(&params->q);
199 dh->g = BN_dup(&params->g);
200 if (!dh->p || !dh->q || !dh->g)
    [all...]
dh.c 57 #include <openssl/dh.h>
75 DH *DH_new(void) {
76 DH *dh = OPENSSL_malloc(sizeof(DH)); local
77 if (dh == NULL) {
78 OPENSSL_PUT_ERROR(DH, ERR_R_MALLOC_FAILURE);
82 OPENSSL_memset(dh, 0, sizeof(DH));
84 CRYPTO_MUTEX_init(&dh->method_mont_p_lock)
    [all...]
  /external/icu/icu4c/source/common/
rbbidata.cpp 66 const DataHeader *dh = udm->pHeader; local
67 int32_t headerSize = dh->dataHeader.headerSize;
69 dh->info.isBigEndian == U_IS_BIG_ENDIAN &&
70 dh->info.charsetFamily == U_CHARSET_FAMILY &&
71 dh->info.dataFormat[0] == 0x42 && // dataFormat="Brk "
72 dh->info.dataFormat[1] == 0x72 &&
73 dh->info.dataFormat[2] == 0x6b &&
74 dh->info.dataFormat[3] == 0x20)
81 const char *dataAsBytes = reinterpret_cast<const char *>(dh);
  /external/libpcap/
pcap-libdlpi.c 101 dlpi_handle_t dh; local
109 retv = dlpi_open(p->opt.source, &dh, DLPI_RAW|DLPI_PASSIVE);
122 pd->dlpi_hd = dh;
  /external/libvpx/libvpx/vpx_dsp/
psnr.c 86 const int dh = height % 16; local
98 if (dh > 0) {
99 encoder_variance(&a[(height - dh) * a_stride], a_stride,
100 &b[(height - dh) * b_stride], b_stride, width - dw, dh,
148 const int dh = height % 16; local
156 if (dh > 0) {
157 encoder_highbd_8_variance(&a[(height - dh) * a_stride], a_stride,
158 &b[(height - dh) * b_stride], b_stride,
159 width - dw, dh, &sse, &sum)
    [all...]
  /external/libvpx/libvpx/vpx_scale/generic/
vpx_scale.c 481 int dh = (vscale - 1 + src->y_height * vratio) / vscale; local
485 src->y_height, (unsigned char *)dst->y_buffer, dst->y_stride, dw, dh,
489 for (i = 0; i < dh; i++)
493 if (dh < (int)dst->y_height)
494 for (i = dh - 1; i < (int)dst->y_height; i++)
496 dst->y_buffer + (dh - 2) * dst->y_stride, dst->y_width + 1);
500 dw / 2, dh / 2, temp_area, temp_height, hscale, hratio, vscale,
509 if (dh / 2 < (int)dst->uv_height)
510 for (i = dh / 2 - 1; i < (int)dst->y_height / 2; i++)
512 dst->u_buffer + (dh / 2 - 2) * dst->uv_stride, dst->uv_width)
    [all...]
  /external/openssh/
dh.c 1 /* $OpenBSD: dh.c,v 1.57 2015/05/27 23:39:18 dtucker Exp $ */
31 #include <openssl/dh.h>
39 #include "dh.h"
145 DH *
216 dh_pub_is_valid(DH *dh, BIGNUM *dh_pub)
224 logit("invalid public DH value: negative");
228 logit("invalid public DH value: <= 1");
236 if (!BN_sub(tmp, dh->p, BN_value_one()) ||
239 logit("invalid public DH value: >= p-1")
283 DH *dh; local
303 DH *dh; local
    [all...]
  /external/valgrind/VEX/priv/
s390_disasm.c 416 UInt dh, dl, x, b; local
418 dh = va_arg(args, UInt);
423 p = dxb_operand(p, (dh << 12) | dl, x, b, 1 /* signed_displacement */);
  /external/wpa_supplicant_8/src/eap_server/
ikev2.h 19 int dh; member in struct:ikev2_proposal_data
34 const struct dh_group *dh; member in struct:ikev2_initiator_data
  /frameworks/base/services/core/java/com/android/server/wm/
StrictModeFlash.java 66 final int dh = mLastDH; local
68 Rect dirty = new Rect(0, 0, dw, dh);
83 c.clipRect(new Rect(0, 0, mThickness, dh), Region.Op.REPLACE);
86 c.clipRect(new Rect(dw - mThickness, 0, dw, dh), Region.Op.REPLACE);
89 c.clipRect(new Rect(0, dh - mThickness, dw, dh), Region.Op.REPLACE);
109 void positionSurface(int dw, int dh) {
110 if (mLastDW == dw && mLastDH == dh) {
114 mLastDH = dh;
115 mSurfaceControl.setSize(dw, dh);
    [all...]
  /prebuilts/misc/windows/sdl2/test/
testgl2.c 220 int dw, dh; local
302 SDL_GetWindowSize(state->windows[0], &dw, &dh);
303 SDL_Log("Window Size : %d,%d\n", dw, dh);
304 SDL_GL_GetDrawableSize(state->windows[0], &dw, &dh);
305 SDL_Log("Draw Size : %d,%d\n", dw, dh);
  /system/core/libpixelflinger/codeflinger/
load_store.cpp 244 int dh = d.format.c[component].h; local
246 int dbits = dh - dl;
360 int shift = sh-dh;
  /external/boringssl/src/crypto/bn/
div.c 71 BN_ULONG dh, dl, q, ret = 0, th, tl, t; local
91 dh = (d & BN_MASK2h) >> BN_BITS4;
94 if ((h >> BN_BITS4) == dh) {
97 q = h / dh;
100 th = q * dh;
109 th -= dh;
  /external/boringssl/src/include/openssl/
evp.h 524 * example, this is used to set the peer's key in (EC)DH.) It returns one on
745 DH *dh; member in union:evp_pkey_st::__anon13351
    [all...]
  /external/boringssl/src/ssl/
ssl_ecdh.c 225 DH_free((DH *)ctx->data);
229 DH *dh = (DH *)ctx->data; local
231 assert(dh != NULL);
232 assert(dh->priv_key == NULL);
236 return DH_generate_key(dh) &&
237 BN_bn2cbb_padded(out, BN_num_bytes(dh->p), dh->pub_key);
243 DH *dh = (DH *)ctx->data local
    [all...]

Completed in 554 milliseconds

1 2 3 4 5