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

12 3 4 5 6

  /external/openssl/apps/
gendh.c 77 #include <openssl/dh.h>
95 DH *dh=NULL; local
203 BIO_printf(bio_err,"Generating DH parameters, %d bit long safe prime, generator %d\n",num,g);
206 if(((dh = DH_new()) == NULL) || !DH_generate_parameters_ex(dh, num, g, &cb))
211 if (!PEM_write_bio_DHparams(out,dh))
218 if (dh != NULL) DH_free(dh);
Android.mk 15 dh.c \
  /external/kernel-headers/original/linux/
dccp.h 258 static inline unsigned int __dccp_basic_hdr_len(const struct dccp_hdr *dh)
260 return sizeof(*dh) + (dh->dccph_x ? sizeof(struct dccp_hdr_ext) : 0);
265 const struct dccp_hdr *dh = dccp_hdr(skb); local
266 return __dccp_basic_hdr_len(dh);
271 const struct dccp_hdr *dh = dccp_hdr(skb); local
272 __u64 seq_nr = ntohs(dh->dccph_seq);
274 if (dh->dccph_x != 0)
277 seq_nr += (u32)dh->dccph_seq2 << 16;
308 static inline unsigned int __dccp_hdr_len(const struct dccp_hdr *dh)
    [all...]
  /external/libvpx/vpx_scale/generic/
vpxscale.c 618 int dh = (vscale - 1 + src->y_height * vratio) / vscale; local
622 (unsigned char *) dst->y_buffer, dst->y_stride, dw, dh,
626 for (i = 0; i < dh; i++)
629 if (dh < (int)dst->y_height)
630 for (i = dh - 1; i < (int)dst->y_height; i++)
631 duck_memcpy(dst->y_buffer + i * dst->y_stride, dst->y_buffer + (dh - 2) * dst->y_stride, dst->y_width + 1);
634 (unsigned char *) dst->u_buffer, dst->uv_stride, dw / 2, dh / 2,
641 if (dh / 2 < (int)dst->uv_height)
642 for (i = dh / 2 - 1; i < (int)dst->y_height / 2; i++)
643 duck_memcpy(dst->u_buffer + i * dst->uv_stride, dst->u_buffer + (dh / 2 - 2)*dst->uv_stride, dst->uv_width)
899 int dh = scale_vars->expanded_frame_height; local
937 dst_yuv_config->uv_stride, dw, dh); local
943 dst_yuv_config->uv_stride, dw, dh); local
    [all...]
  /external/libvpx/vpx_scale/leapster/
vpxscale_lf.c 460 int dh = (vscale - 1 + src->y_height * vratio) / vscale; local
464 (unsigned char *) dst->y_buffer, dst->y_stride, dw, dh,
468 for (i = 0; i < dh; i++)
471 if (dh < (int)dst->y_height)
472 for (i = dh - 1; i < (int)dst->y_height; i++)
473 duck_memcpy(dst->y_buffer + i * dst->y_stride, dst->y_buffer + (dh - 2) * dst->y_stride, dst->y_width + 1);
476 (unsigned char *) dst->u_buffer, dst->uv_stride, dw / 2, dh / 2,
483 if (dh / 2 < (int)dst->uv_height)
484 for (i = dh / 2 - 1; i < (int)dst->y_height / 2; i++)
485 duck_memcpy(dst->u_buffer + i * dst->uv_stride, dst->u_buffer + (dh / 2 - 2)*dst->uv_stride, dst->uv_width)
701 int dh = scale_vars->expanded_frame_height; local
739 dst_yuv_config->uv_stride, dw, dh); local
745 dst_yuv_config->uv_stride, dw, dh); local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
ikev2.h 25 int dh; member in struct:ikev2_proposal_data
41 const struct dh_group *dh; member in struct:ikev2_responder_data
ikev2.c 59 data->dh);
96 pad_len = data->dh->prime_len - wpabuf_len(shared);
122 /* DH parameters are not needed anymore, so free them */
223 prop->dh = transform_id;
351 prop.dh = -1;
357 prop.encr != -1 && prop.dh != -1) {
359 data->dh = dh_groups_get(prop.dh);
379 data->proposal.integ, data->proposal.dh);
392 * DH Group # (16 bits
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
ikev2.h 25 int dh; member in struct:ikev2_proposal_data
40 const struct dh_group *dh; member in struct:ikev2_initiator_data
ikev2.c 63 data->dh);
88 pad_len = data->dh->prime_len - wpabuf_len(shared);
109 /* DH parameters are not needed anymore, so free them */
205 transform_id == data->proposal.dh)
206 prop->dh = transform_id;
333 prop.dh = -1;
339 prop.encr != -1 && prop.dh != -1) {
362 data->proposal.integ, data->proposal.dh);
375 * DH Group # (16 bits)
391 wpa_printf(MSG_DEBUG, "IKEV2: KEr DH Group #%u", group)
    [all...]
  /external/quake/quake/src/QW/client/
surf8.asm 281 mov bh,dh
284 mov ch,dh
292 mov bh,dh
295 mov ch,dh
304 mov bh,dh
306 mov ch,dh
314 mov bh,dh
317 mov ch,dh
326 mov bh,dh
328 mov ch,dh
    [all...]
surf16.asm 280 mov ah,dh
282 mov ch,dh
294 mov ah,dh
296 mov ch,dh
308 mov ah,dh
310 mov ch,dh
322 mov ah,dh
324 mov ch,dh
337 mov ah,dh
339 mov ch,dh
    [all...]
  /frameworks/base/core/java/android/text/style/
DrawableMarginSpan.java 51 int dh = mDrawable.getIntrinsicHeight(); local
57 mDrawable.setBounds(ix, itop, ix+dw, itop+dh);
  /frameworks/base/core/java/android/widget/
AbsSeekBar.java 269 int dh = 0;
272 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
273 dh = Math.max(thumbHeight, dh);
276 dh += mPaddingTop + mPaddingBottom;
279 resolveSize(dh, heightMeasureSpec));
  /external/grub/stage1/
stage1.S 257 movb %dh, %al
265 movb %dh, %ah
323 movb 11(%si), %dh
331 * %dh = head
484 movb $0, %dh
491 movb $1, %dh
  /external/libvpx/examples/includes/geshi/contrib/
cssgen.php 268 $dh = opendir($geshi_lang_path); variable
270 $file = readdir($dh);
275 $file = readdir($dh);
279 $file = readdir($dh);
281 closedir($dh);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
StatusBarIconView.java 195 int dh = r.top + th + r.bottom; local
196 if (dh < mNumberBackground.getMinimumWidth()) {
197 dh = mNumberBackground.getMinimumWidth();
199 mNumberY = h-r.bottom-((dh-r.top-th-r.bottom)/2);
200 mNumberBackground.setBounds(w-dw, h-dh, w, h);
  /external/tcpdump/
print-wb.c 311 wb_dops(const struct dophdr *dh, u_int32_t ss, u_int32_t es)
315 register int t = dh->dh_type;
322 u_int32_t ts = EXTRACT_32BITS(&dh->dh_ts);
332 dh = DOP_NEXT(dh);
333 if ((u_char *)dh > snapend) {
  /external/openssl/patches/
apps_Android.mk 15 dh.c \
  /external/openssl/ssl/
ssltest.c 182 #include <openssl/dh.h>
234 static DH *get_dh512(void);
235 static DH *get_dh1024(void);
236 static DH *get_dh1024dsa(void);
363 /* The SSL API does not allow us to look at temporary RSA/DH keys,
480 DH *dh; local
553 fprintf(stderr,"ignoring -dhe1024, since I'm compiled without DH\n");
561 fprintf(stderr,"ignoring -dhe1024, since I'm compiled without DH\n");
853 dh=get_dh1024dsa()
2310 DH *dh; local
2338 DH *dh; local
2376 DH *dh; local
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/serializer/utils/
AttList.java 76 * @param dh DOMHelper
78 public AttList(NamedNodeMap attrs, DOM2Helper dh)
83 m_dh = dh;
  /libcore/luni/src/main/java/org/apache/xml/utils/
AttList.java 67 * @param dh DOMHelper
69 public AttList(NamedNodeMap attrs, DOMHelper dh)
74 m_dh = dh;
  /external/chromium/third_party/icu/source/tools/genbrk/
genbrk.cpp 99 DataHeader dh ={ variable
305 uprv_memcpy(dh.info.formatVersion, ((RBBIDataHeader *)outData)->fFormatVersion, sizeof(dh.info.formatVersion));
312 pData = udata_create(outDir, NULL, outFileName, &(dh.info), copyright, &status);
  /external/chromium/third_party/icu/source/tools/gencfu/
gencfu.cpp 99 DataHeader dh ={ variable
256 uprv_memcpy(dh.info.formatVersion,
258 sizeof(dh.info.formatVersion));
265 pData = udata_create(outDir, NULL, outFileName, &(dh.info), copyright, &status);
  /external/icu4c/tools/genbrk/
genbrk.cpp 99 DataHeader dh ={ variable
306 uprv_memcpy(dh.info.formatVersion, ((RBBIDataHeader *)outData)->fFormatVersion, sizeof(dh.info.formatVersion));
313 pData = udata_create(outDir, NULL, outFileName, &(dh.info), copyright, &status);
  /external/icu4c/tools/gencfu/
gencfu.cpp 99 DataHeader dh ={ variable
257 uprv_memcpy(dh.info.formatVersion,
259 sizeof(dh.info.formatVersion));
266 pData = udata_create(outDir, NULL, outFileName, &(dh.info), copyright, &status);

Completed in 1378 milliseconds

12 3 4 5 6