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

12 3 4 5 6 7 8 9

  /external/quake/quake/src/QW/client/
block8.h 4 movb %dh,%ah variable
6 movb %dh,%ch variable
19 movb %dh,%ah variable
21 movb %dh,%ch variable
34 movb %dh,%ah variable
36 movb %dh,%ch variable
49 movb %dh,%ah variable
51 movb %dh,%ch variable
65 movb %dh,%ah variable
67 movb %dh,%c variable
80 movb %dh,%ah variable
82 movb %dh,%ch variable
96 movb %dh,%ah variable
98 movb %dh,%ch variable
112 movb %dh,%ah variable
114 movb %dh,%ch variable
    [all...]
surf8.s 113 movb %dh,%bh
118 movb %dh,%ch
129 movb %dh,%bh
133 movb %dh,%ch
146 movb %dh,%bh
149 movb %dh,%ch
160 movb %dh,%bh
164 movb %dh,%ch
177 movb %dh,%bh
180 movb %dh,%c
    [all...]
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...]
  /external/quake/quake/src/WinQuake/
block16.h 23 movb %dh,%ah variable
25 movb %dh,%ch variable
38 movb %dh,%ah variable
40 movb %dh,%ch variable
53 movb %dh,%ah variable
55 movb %dh,%ch variable
68 movb %dh,%ah variable
70 movb %dh,%ch variable
84 movb %dh,%ah variable
86 movb %dh,%c variable
99 movb %dh,%ah variable
101 movb %dh,%ch variable
115 movb %dh,%ah variable
117 movb %dh,%ch variable
131 movb %dh,%ah variable
133 movb %dh,%ch variable
    [all...]
block8.h 23 movb %dh,%ah variable
25 movb %dh,%ch variable
38 movb %dh,%ah variable
40 movb %dh,%ch variable
53 movb %dh,%ah variable
55 movb %dh,%ch variable
68 movb %dh,%ah variable
70 movb %dh,%ch variable
84 movb %dh,%ah variable
86 movb %dh,%c variable
99 movb %dh,%ah variable
101 movb %dh,%ch variable
115 movb %dh,%ah variable
117 movb %dh,%ch variable
131 movb %dh,%ah variable
133 movb %dh,%ch variable
    [all...]
surf8.s 113 movb %dh,%bh
118 movb %dh,%ch
129 movb %dh,%bh
133 movb %dh,%ch
146 movb %dh,%bh
149 movb %dh,%ch
160 movb %dh,%bh
164 movb %dh,%ch
177 movb %dh,%bh
180 movb %dh,%c
    [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...]
  /external/openssl/crypto/dh/
dh_depr.c 1 /* crypto/dh/dh_depr.c */
62 #include <openssl/dh.h>
67 DH *DH_generate_parameters(int prime_len, int generator,
71 DH *ret=NULL;
dh_lib.c 1 /* crypto/dh/dh_lib.c */
62 #include <openssl/dh.h>
96 int DH_set_method(DH *dh, const DH_METHOD *meth)
101 mtmp = dh->meth;
102 if (mtmp->finish) mtmp->finish(dh);
104 if (dh->engine)
106 ENGINE_finish(dh->engine);
107 dh->engine = NULL;
110 dh->meth = meth
    [all...]
  /external/openssl/apps/
gendh.c 77 #include <openssl/dh.h>
92 DH *dh=NULL; local
200 BIO_printf(bio_err,"Generating DH parameters, %d bit long safe prime, generator %d\n",num,g);
203 if(((dh = DH_new()) == NULL) || !DH_generate_parameters_ex(dh, num, g, &cb))
208 if (!PEM_write_bio_DHparams(out,dh))
215 if (dh != NULL) DH_free(dh);
  /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/libvpx/vpx_scale/generic/
vpxscale.c 553 int dh = (vscale - 1 + src->y_height * vratio) / vscale; local
557 (unsigned char *) dst->y_buffer, dst->y_stride, dw, dh,
561 for (i = 0; i < dh; i++)
564 if (dh < (int)dst->y_height)
565 for (i = dh - 1; i < (int)dst->y_height; i++)
566 duck_memcpy(dst->y_buffer + i * dst->y_stride, dst->y_buffer + (dh - 2) * dst->y_stride, dst->y_width + 1);
569 (unsigned char *) dst->u_buffer, dst->uv_stride, dw / 2, dh / 2,
576 if (dh / 2 < (int)dst->uv_height)
577 for (i = dh / 2 - 1; i < (int)dst->y_height / 2; i++)
578 duck_memcpy(dst->u_buffer + i * dst->uv_stride, dst->u_buffer + (dh / 2 - 2)*dst->uv_stride, dst->uv_width)
827 int dh = scale_vars->expanded_frame_height; local
865 dst_yuv_config->uv_stride, dw, dh); local
871 dst_yuv_config->uv_stride, dw, dh); 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/wpa_supplicant_8/src/crypto/
crypto_openssl.c 16 #include <openssl/dh.h>
465 DH *dh; local
472 dh = DH_new();
473 if (dh == NULL)
476 dh->g = BN_new();
477 if (dh->g == NULL || BN_set_word(dh->g, 2) != 1)
480 dh->p = get_group5_prime();
481 if (dh->p == NULL
513 DH *dh; local
552 DH *dh = ctx; local
585 DH *dh; local
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
Watermark.java 127 void positionSurface(int dw, int dh) {
128 if (mLastDW != dw || mLastDH != dh) {
130 mLastDH = dh;
131 mSurfaceControl.setSize(dw, dh);
139 final int dh = mLastDH; local
142 Rect dirty = new Rect(0, 0, dw, dh);
166 while (y < (dh+mTextHeight)) {
FakeWindowImpl.java 82 void layout(int dw, int dh) {
84 mWindowHandle.touchableRegion.set(0, 0, dw, dh);
91 mWindowHandle.frameBottom = dh;
  /external/openssl/crypto/des/asm/
des-586.S 23 movb %dh,%cl
29 movb %dh,%cl
52 movb %dh,%cl
58 movb %dh,%cl
81 movb %dh,%cl
87 movb %dh,%cl
110 movb %dh,%cl
116 movb %dh,%cl
139 movb %dh,%cl
145 movb %dh,%c
    [all...]
crypt586.S 57 movb %dh,%cl
63 movb %dh,%cl
107 movb %dh,%cl
113 movb %dh,%cl
157 movb %dh,%cl
163 movb %dh,%cl
207 movb %dh,%cl
213 movb %dh,%cl
257 movb %dh,%cl
263 movb %dh,%c
    [all...]
  /external/openssl/crypto/bf/asm/
bf-586.S 31 movb %dh,%cl
51 movb %dh,%cl
71 movb %dh,%cl
91 movb %dh,%cl
111 movb %dh,%cl
131 movb %dh,%cl
151 movb %dh,%cl
171 movb %dh,%cl
191 movb %dh,%cl
211 movb %dh,%c
    [all...]
  /frameworks/base/core/java/android/text/style/
DrawableMarginSpan.java 51 int dh = mDrawable.getIntrinsicHeight(); local
54 mDrawable.setBounds(ix, itop, ix+dw, itop+dh);
  /external/qemu-pc-bios/bochs/bios/
notes 13 out 1f5, cl (bits 6,7) & dh (bits 6,7) # cyl, bits 8..9, 10..11
14 out 1f6, dh (bits 0..3) --> bits 0..3 # head number
15 dh (bits 4..5) --> ??? # head number
  /external/opencv/cvaux/src/
cvsegment.cpp 265 int dh[3];
267 dh[0] = src[0] - src[-3];
269 dh[1] = src[1] - src[-2];
271 dh[2] = src[2] - src[-1];
274 m[0] = dh[0]*dh[0] + dh[1]*dh[1] + dh[2]*dh[2]
    [all...]
  /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/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);

Completed in 721 milliseconds

12 3 4 5 6 7 8 9