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

1 2 3 4 5 6 7 8 910

  /external/llvm/test/MC/X86/
encoder-fail.s 3 movzx %dh, %rsi
  /external/sonic/debian/
rules 12 dh $@
  /external/boringssl/src/crypto/dh/
dh.c 57 #include <openssl/dh.h>
76 DH *DH_new(void) {
77 DH *dh = (DH *)OPENSSL_malloc(sizeof(DH)); local
78 if (dh == NULL) {
79 OPENSSL_PUT_ERROR(DH, ERR_R_MALLOC_FAILURE);
83 memset(dh, 0, sizeof(DH));
    [all...]
check.c 57 #include <openssl/dh.h>
64 int DH_check_pub_key(const DH *dh, const BIGNUM *pub_key, int *ret) {
77 if (!BN_copy(&q, dh->p) ||
93 int DH_check(const DH *dh, int *ret) {
121 if (dh->q) {
122 if (BN_cmp(dh->g, BN_value_one()) <= 0) {
124 } else if (BN_cmp(dh->g, dh->p) >= 0)
    [all...]
internal.h 70 /* DH_check_standard_parameters checks if the parameters in |dh| are well
71 * known and safe. If so, it sets |dh->priv_length| to an appropriately smaller
73 void DH_check_standard_parameters(DH *dh);
params.c 53 #include <openssl/dh.h>
252 static DH *get_standard_parameters(const struct standard_parameters *params,
254 DH *dh = DH_new(); local
255 if (!dh) {
259 dh->p = BN_dup(&params->p);
260 dh->q = BN_dup(&params->q);
261 dh->g = BN_dup(&params->g);
262 if (!dh->p || !dh->q || !dh->g)
    [all...]
dh_asn1.c 56 #include <openssl/dh.h>
73 DH_free((DH *)*pval);
81 ASN1_SIMPLE(DH, p, BIGNUM), ASN1_SIMPLE(DH, g, BIGNUM),
82 ASN1_OPT(DH, priv_length, ZLONG)} ASN1_SEQUENCE_END_cb(DH, DHparams);
84 IMPLEMENT_ASN1_ENCODE_FUNCTIONS_const_fname(DH, DHparams, DHparams)
  /external/wpa_supplicant_8/src/crypto/
dh_groups.h 24 struct wpabuf * dh_init(const struct dh_group *dh, struct wpabuf **priv);
27 const struct dh_group *dh);
  /external/tcpdump/
print-dccp.c 80 #define DCCPH_CCVAL(dh) (((dh)->dccph_ccval_cscov >> 4) & 0xF)
81 #define DCCPH_CSCOV(dh) (((dh)->dccph_ccval_cscov) & 0xF)
83 #define DCCPH_X(dh) ((dh)->dccph_xtr & 1)
84 #define DCCPH_TYPE(dh) (((dh)->dccph_xtr >> 1) & 0xF)
191 static inline u_int dccp_csum_coverage(const struct dccp_hdr* dh, u_int len)
195 if (DCCPH_CSCOV(dh) == 0
225 const struct dccp_hdr *dh = (const struct dccp_hdr *)bp; local
245 const struct dccp_hdr *dh = (const struct dccp_hdr *)bp; local
273 const struct dccp_hdr *dh; local
    [all...]
  /external/boringssl/src/include/openssl/
dh.h 71 /* DH contains functions for performing Diffie-Hellman key agreement in
77 /* DH_new returns a new, empty DH object or NULL on error. */
78 OPENSSL_EXPORT DH *DH_new(void);
80 /* DH_free decrements the reference count of |dh| and frees it if the reference
82 OPENSSL_EXPORT void DH_free(DH *dh);
84 /* DH_up_ref increments the reference count of |dh|. */
85 OPENSSL_EXPORT int DH_up_ref(DH *dh);
90 * These functions return new DH objects with standard parameters. They retur
    [all...]
  /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...]
InputConsumerImpl.java 70 void layout(int dw, int dh) {
71 mWindowHandle.touchableRegion.set(0, 0, dw, dh);
75 mWindowHandle.frameBottom = dh;
  /external/curl/tests/
mem-include-scan.pl 84 opendir(my $dh, $dir) || die "can't opendir $dir: $!";
85 my @cfiles = grep { /\.c\z/ && -f "$dir/$_" } readdir($dh);
86 closedir $dh;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
SAXParserTest.java 213 // MyDefaultHandler dh = new MyDefaultHandler();
215 // parser.parse(is, dh, ParsingSupport.XML_SYSTEM_ID);
216 // HashMap refHm = dh.createData();
314 MyDefaultHandler dh = new MyDefaultHandler(); local
315 parser.parse(list_wf[i], dh);
316 assertTrue(SAXParserTestSupport.equalsMaps(hm, dh.createData()));
321 MyDefaultHandler dh = new MyDefaultHandler(); local
322 parser.parse(list_nwf[i], dh);
330 MyDefaultHandler dh = new MyDefaultHandler(); local
331 parser.parse((File) null, dh);
349 MyHandler dh = new MyHandler(); local
362 MyHandler dh = new MyHandler(); local
375 MyHandler dh = new MyHandler(); local
404 MyDefaultHandler dh = new MyDefaultHandler(); local
412 MyDefaultHandler dh = new MyDefaultHandler(); local
421 MyDefaultHandler dh = new MyDefaultHandler(); local
445 MyHandler dh = new MyHandler(); local
453 MyHandler dh = new MyHandler(); local
462 MyHandler dh = new MyHandler(); local
497 MyDefaultHandler dh = new MyDefaultHandler(); local
505 MyDefaultHandler dh = new MyDefaultHandler(); local
515 MyDefaultHandler dh = new MyDefaultHandler(); local
536 MyDefaultHandler dh = new MyDefaultHandler(); local
549 MyDefaultHandler dh = new MyDefaultHandler(); local
563 MyDefaultHandler dh = new MyDefaultHandler(); local
643 MyHandler dh = new MyHandler(); local
651 MyHandler dh = new MyHandler(); local
660 MyHandler dh = new MyHandler(); local
684 MyHandler dh = new MyHandler(); local
692 MyHandler dh = new MyHandler(); local
701 MyHandler dh = new MyHandler(); local
727 MyDefaultHandler dh = new MyDefaultHandler(); local
734 MyDefaultHandler dh = new MyDefaultHandler(); local
743 MyDefaultHandler dh = new MyDefaultHandler(); local
762 MyHandler dh = new MyHandler(); local
775 MyHandler dh = new MyHandler(); local
788 MyHandler dh = new MyHandler(); local
    [all...]
  /libcore/luni/src/main/java/javax/xml/parsers/
SAXParser.java 172 * @param dh The SAX DefaultHandler to use.
180 public void parse(InputStream is, DefaultHandler dh)
187 this.parse(input, dh);
196 * @param dh The SAX DefaultHandler to use.
207 DefaultHandler dh,
216 this.parse(input, dh);
251 * @param dh The SAX DefaultHandler to use.
259 public void parse(String uri, DefaultHandler dh)
266 this.parse(input, dh);
305 * @param dh The SAX DefaultHandler to use
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/
opc-b.pl 3 @dh = ( "", ".clr" );
16 foreach $d (@dh) {
42 foreach $d (@dh) {
  /external/libpcap/
pcap-canusb-linux.c 119 libusb_device_handle *dh = NULL; local
121 if ((ret = libusb_open(devs[i],&dh)) == 0)
125 int n = libusb_get_string_descriptor_ascii(dh,desc.iSerialNumber,sernum,64);
131 libusb_close(dh);
165 libusb_device_handle *dh = NULL; local
167 if (libusb_open(devs[i],&dh) != 0) continue;
169 n = libusb_get_string_descriptor_ascii(dh,desc.iSerialNumber,serial,64);
174 libusb_close(dh);
178 if ((libusb_kernel_driver_active(dh,0)) && (libusb_detach_kernel_driver(dh,0) != 0)
    [all...]
  /external/e2fsprogs/lib/quota/
quotaio_tree.c 91 struct qt_disk_dqdbheader *dh = (struct qt_disk_dqdbheader *)buf; local
101 info->dqi_free_blk = ext2fs_le32_to_cpu(dh->dqdh_next_free);
121 struct qt_disk_dqdbheader *dh = (struct qt_disk_dqdbheader *)buf; local
124 dh->dqdh_next_free = ext2fs_cpu_to_le32(info->dqi_free_blk);
125 dh->dqdh_prev_free = ext2fs_cpu_to_le32(0);
126 dh->dqdh_entries = ext2fs_cpu_to_le16(0);
136 struct qt_disk_dqdbheader *dh = (struct qt_disk_dqdbheader *)buf; local
137 uint nextblk = ext2fs_le32_to_cpu(dh->dqdh_next_free), prevblk =
139 ext2fs_le32_to_cpu(dh->dqdh_prev_free);
147 dh->dqdh_prev_free
169 struct qt_disk_dqdbheader *dh = (struct qt_disk_dqdbheader *)buf; local
194 struct qt_disk_dqdbheader *dh; local
350 struct qt_disk_dqdbheader *dh; local
549 struct qt_disk_dqdbheader *dh; local
    [all...]
  /external/wpa_supplicant_8/src/eap_common/
eap_eke_common.c 163 const struct dh_group *dh; local
167 dh = eap_eke_dh_group(group);
168 if (generator < 0 || generator > 255 || !dh)
173 if (random_get_bytes(ret_priv, dh->prime_len))
175 if (os_memcmp(ret_priv, dh->prime, dh->prime_len) > 0) {
179 for (i = 0; i < dh->prime_len - 1; i++) {
183 if (i == dh->prime_len - 1 && (ret_priv[i] == 0 || ret_priv[i] == 1))
185 wpa_hexdump_key(MSG_DEBUG, "EAP-EKE: DH private value",
186 ret_priv, dh->prime_len)
407 const struct dh_group *dh; local
    [all...]
  /external/libvpx/libvpx/vpx_scale/generic/
vpx_scale.c 493 int dh = (vscale - 1 + src->y_height * vratio) / vscale; local
497 (unsigned char *) dst->y_buffer, dst->y_stride, dw, dh,
501 for (i = 0; i < dh; i++)
504 if (dh < (int)dst->y_height)
505 for (i = dh - 1; i < (int)dst->y_height; i++)
506 memcpy(dst->y_buffer + i * dst->y_stride, dst->y_buffer + (dh - 2) * dst->y_stride, dst->y_width + 1);
509 (unsigned char *) dst->u_buffer, dst->uv_stride, dw / 2, dh / 2,
516 if (dh / 2 < (int)dst->uv_height)
517 for (i = dh / 2 - 1; i < (int)dst->y_height / 2; i++)
518 memcpy(dst->u_buffer + i * dst->uv_stride, dst->u_buffer + (dh / 2 - 2)*dst->uv_stride, dst->uv_width)
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/generic/
vpx_scale.c 492 int dh = (vscale - 1 + src->y_height * vratio) / vscale; local
496 (unsigned char *) dst->y_buffer, dst->y_stride, dw, dh,
500 for (i = 0; i < dh; i++)
503 if (dh < (int)dst->y_height)
504 for (i = dh - 1; i < (int)dst->y_height; i++)
505 vpx_memcpy(dst->y_buffer + i * dst->y_stride, dst->y_buffer + (dh - 2) * dst->y_stride, dst->y_width + 1);
508 (unsigned char *) dst->u_buffer, dst->uv_stride, dw / 2, dh / 2,
515 if (dh / 2 < (int)dst->uv_height)
516 for (i = dh / 2 - 1; i < (int)dst->y_height / 2; i++)
517 vpx_memcpy(dst->u_buffer + i * dst->uv_stride, dst->u_buffer + (dh / 2 - 2)*dst->uv_stride, dst->uv_width)
    [all...]
  /external/boringssl/src/ssl/
ssl_ecdh.c 212 DH_free((DH *)ctx->data);
216 DH *dh = (DH *)ctx->data; local
218 assert(dh != NULL);
219 assert(dh->priv_key == NULL);
223 return DH_generate_key(dh) &&
224 BN_bn2cbb_padded(out, BN_num_bytes(dh->p), dh->pub_key);
231 DH *dh = (DH *)ctx->data local
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
ikev2.h 19 int dh; member in struct:ikev2_proposal_data
35 const struct dh_group *dh; member in struct:ikev2_responder_data
  /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
  /external/libvpx/libvpx/third_party/libyuv/source/
convert_jpeg.cc 137 // TODO(fbarchard): review w and h requirement. dw and dh may be enough.
145 int dw, int dh) {
161 I420Buffers bufs = { y, y_stride, u, u_stride, v, v_stride, dw, dh };
172 ret = mjpeg_decoder.DecodeToCallback(&JpegCopyI420, &bufs, dw, dh);
183 ret = mjpeg_decoder.DecodeToCallback(&JpegI422ToI420, &bufs, dw, dh);
194 ret = mjpeg_decoder.DecodeToCallback(&JpegI444ToI420, &bufs, dw, dh);
205 ret = mjpeg_decoder.DecodeToCallback(&JpegI411ToI420, &bufs, dw, dh);
212 ret = mjpeg_decoder.DecodeToCallback(&JpegI400ToI420, &bufs, dw, dh);
301 // TODO(fbarchard): review w and h requirement. dw and dh may be enough.
307 int dw, int dh) {
    [all...]

Completed in 1193 milliseconds

1 2 3 4 5 6 7 8 910