Searched defs:dp (Results 26 - 50 of 179) sorted by relevance

12345678

/external/compiler-rt/lib/asan/tests/
H A Dasan_asm_test.cc199 T* dp = dst_bad + 4; local
201 asm_rep_movs(dp, sp, 0);
/external/e2fsprogs/intl/
H A Dprintf-parse.c121 DIRECTIVE *dp = &d->dir[d->count];/* pointer to next directive */ local
124 dp->dir_start = cp - 1;
125 dp->flags = 0;
126 dp->width_start = NULL;
127 dp->width_end = NULL;
128 dp->width_arg_index = ARG_NONE;
129 dp->precision_start = NULL;
130 dp->precision_end = NULL;
131 dp->precision_arg_index = ARG_NONE;
132 dp
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dfinddev.c48 struct dir_list *dp; local
50 dp = malloc(sizeof(struct dir_list));
51 if (!dp)
53 dp->name = malloc(strlen(name)+1);
54 if (!dp->name) {
55 free(dp);
58 strcpy(dp->name, name);
59 dp->next = *list;
60 *list = dp;
68 struct dir_list *dp, *nex local
82 struct dirent *dp; local
[all...]
/external/libnl/src/
H A Dnf-log.c33 struct nl_dump_params dp = { local
39 nl_object_dump(obj, &dp);
107 struct nl_dump_params dp = { local
114 nl_object_dump((struct nl_object *) log, &dp);
H A Dnf-queue.c39 struct nl_dump_params dp = { local
70 nl_object_dump(obj, &dp);
H A Dnl-addr-add.c48 struct nl_dump_params dp = { local
116 nl_object_dump(OBJ_CAST(addr), &dp); local
H A Dnl-route-add.c56 struct nl_dump_params dp = { local
128 nl_object_dump(OBJ_CAST(route), &dp); local
/external/libpng/
H A Dpngwtran.c36 png_bytep sp, dp; local
42 dp = row;
59 *dp = (png_byte)v;
60 dp++;
66 *dp = (png_byte)v;
73 png_bytep sp, dp; local
79 dp = row;
93 *dp = (png_byte)v;
94 dp++;
105 *dp
112 png_bytep sp, dp; local
319 png_bytep sp, dp; local
337 png_bytep sp, dp; local
364 png_bytep sp, dp; local
380 png_bytep sp, dp; local
413 png_bytep sp, dp; local
433 png_bytep sp, dp; local
460 png_bytep sp, dp; local
475 png_bytep sp, dp; local
[all...]
/external/openssh/openbsd-compat/
H A Dgetcwd.c47 #define ISDOT(dp) \
48 (dp->d_name[0] == '.' && (dp->d_name[1] == '\0' || \
49 (dp->d_name[1] == '.' && dp->d_name[2] == '\0')))
54 struct dirent *dp; local
162 if (!(dp = readdir(dir)))
164 if (dp->d_fileno == ino)
169 if (!(dp = readdir(dir)))
171 if (ISDOT(dp))
[all...]
/external/openssh/
H A Dsshbuf-getput-crypto.c173 u_char d[SSHBUF_MAX_BIGNUM], *dp; local
179 if ((r = sshbuf_reserve(buf, len_bytes + 2, &dp)) < 0) {
183 POKE_U16(dp, len_bits);
185 memcpy(dp + 2, d, len_bytes);
/external/tcpdump/
H A Dprint-aodv.c149 const struct rerr_unreach *dp = NULL; local
162 dp = &ap->rerr.r.dest[0];
169 ++dp, i -= sizeof(ap->rerr.r.dest[0])) {
170 printf(" {%s}(%ld)", ipaddr_string(&dp->u_da),
171 (unsigned long)EXTRACT_32BITS(&dp->u_ds));
H A Dprint-ip6opts.c294 const struct ip6_hbh *dp = (struct ip6_hbh *)bp; local
297 TCHECK(dp->ip6h_len);
298 hbhlen = (int)((dp->ip6h_len + 1) << 3);
299 TCHECK2(*dp, hbhlen);
302 ip6_opt_print((const u_char *)dp + sizeof(*dp), hbhlen - sizeof(*dp));
314 const struct ip6_dest *dp = (struct ip6_dest *)bp; local
317 TCHECK(dp->ip6d_len);
318 dstoptlen = (int)((dp
[all...]
/external/toybox/toys/posix/
H A Dkill.c90 DIR *dp; local
108 if (!(dp = opendir("/proc"))) perror_exit("/proc");
109 while ((entry = readdir(dp))) {
131 closedir(dp);
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
H A DPixelUtils.java35 //private static float SCALE = 1; // pix per dp
96 * Converts a dp value to pixels.
97 * @param dp
98 * @return Pixel value of dp.
100 public static float dpToPix(float dp) { argument
101 //return SCALE * dp + FLOAT_INT_AVG_NUDGE;
102 //InternalDimension id = new InternalDimension(dp, TypedValue.COMPLEX_UNIT_DIP);
103 return TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dp, metrics);
150 m.put("dp", TypedValue.COMPLEX_UNIT_DIP);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJCEECPublicKey.java114 ECDomainParameters dp = params.getParameters();
121 EllipticCurve ellipticCurve = EC5Util.convertCurve(dp.getCurve(), dp.getSeed());
123 this.ecSpec = createSpec(ellipticCurve, dp);
136 ECDomainParameters dp = params.getParameters();
143 EllipticCurve ellipticCurve = EC5Util.convertCurve(dp.getCurve(), dp.getSeed());
145 this.ecSpec = createSpec(ellipticCurve, dp);
167 private ECParameterSpec createSpec(EllipticCurve ellipticCurve, ECDomainParameters dp) argument
172 dp
[all...]
/external/clang/test/Sema/
H A Dconditional-expr.c10 double *dp; local
14 dp = vp;
15 vp = dp;
16 ip = dp; // expected-warning {{incompatible pointer types assigning to 'int *' from 'double *'}}
17 dp = ip; // expected-warning {{incompatible pointer types assigning to 'double *' from 'int *'}}
18 dp = 0 ? (double *)0 : (void *)0;
/external/e2fsprogs/lib/blkid/
H A Ddevno.c64 struct dir_list *dp; local
66 dp = malloc(sizeof(struct dir_list));
67 if (!dp)
69 dp->name = blkid_strdup(name);
70 if (!dp->name) {
71 free(dp);
74 dp->next = *list;
75 *list = dp;
83 struct dir_list *dp, *next; local
85 for (dp
97 struct dirent *dp; local
[all...]
/external/e2fsprogs/lib/quota/
H A Dquotaio_v2.c46 static void v2r1_disk2memdqblk(struct dquot *dquot, void *dp) argument
49 struct v2r1_disk_dqblk *d = dp, empty;
63 if (!memcmp(&empty, dp, sizeof(struct v2r1_disk_dqblk)))
70 static void v2r1_mem2diskdqblk(void *dp, struct dquot *dquot) argument
73 struct v2r1_disk_dqblk *d = dp;
84 if (qtree_entry_unused(&dquot->dq_h->qh_info.u.v2_mdqi.dqi_qtree, dp))
88 static int v2r1_is_id(void *dp, struct dquot *dquot) argument
90 struct v2r1_disk_dqblk *d = dp;
94 if (qtree_entry_unused(info, dp))
/external/iputils/
H A Dtftpsubs.c127 struct tftphdr *dp; local
134 dp = (struct tftphdr *)b->buf;
137 b->counter = read(fileno(file), dp->th_data, SEGSIZE);
141 p = dp->th_data;
160 b->counter = (int)(p - dp->th_data);
192 struct tftphdr *dp; local
200 dp = (struct tftphdr *)b->buf;
202 buf = dp->th_data;
/external/libedit/examples/
H A Dtc1.c96 struct dirent *dp; local
110 for (dp = readdir(dd); dp != NULL; dp = readdir(dd)) {
111 if (len > strlen(dp->d_name))
113 if (strncmp(dp->d_name, ptr, len) == 0) {
114 if (el_insertstr(el, &dp->d_name[len]) == -1)
/external/libedit/src/
H A Demacs.c442 Char *cp, *oldc, *dp; local
453 for (dp = oldc; cp < oldc && dp < el->el_line.lastchar; cp++)
454 *dp++ = *cp;
456 el->el_line.cursor = dp;/* put cursor at end */
/external/libpcap/
H A Dpcap-septel.c86 u_char *dp ; local
132 dp = get_param(m);/* get pointer to MSG parameter area (m->param) */
142 if ((p->fcode.bf_insns == NULL) || bpf_filter(p->fcode.bf_insns, dp, packet_len, caplen)) {
168 callback(user, &pcap_header, dp);
/external/libvpx/libvpx/test/
H A Dinvalid_file_test.cc33 std::ostream &operator<<(std::ostream &os, const DecodeParam &dp) { argument
34 return os << "threads: " << dp.threads << " file: " << dp.filename;
/external/libvpx/libvpx/vp8/common/
H A Dextend.c21 int dp, /* destination pitch */
48 dest_ptr1 += dp;
49 dest_ptr2 += dp;
56 src_ptr2 = d + dp * (h - 1) - el;
57 dest_ptr1 = d + dp * (-et) - el;
58 dest_ptr2 = d + dp * (h) - el;
64 dest_ptr1 += dp;
70 dest_ptr2 += dp;
16 copy_and_extend_plane( unsigned char *s, int sp, unsigned char *d, int dp, int h, int w, int et, int el, int eb, int er ) argument
/external/opencv/cv/src/
H A Dcvpgh.cpp249 int dp = (pt4.x - pt3.x) * dx + (pt4.y - pt3.y) * dy; local
251 dp = cvRound( dp * angle_coeff * buffer[j] ) +
253 dp = MAX( dp, 0 );
254 dp = MIN( dp, _CV_ACOS_TABLE_SIZE - 1 );
256 cvRound( icv_acos_table[dp] * angle_scale );

Completed in 1056 milliseconds

12345678