HomeSort by relevance Sort by last modified time
    Searched defs:dp (Results 76 - 100 of 214) sorted by null

1 2 34 5 6 7 8 9

  /external/dropbear/libtommath/
tommath.h 181 mp_digit *dp; member in struct:__anon17414
189 #define DIGIT(m,k) ((m)->dp[(k)])
222 #define mp_iseven(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 0)) ? MP_YES : MP_NO)
223 #define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO)
  /external/e2fsprogs/intl/
vasnprintf.c 139 DIRECTIVE *dp; local
207 for (cp = format, i = 0, dp = &d.dir[0]; ; cp = dp->dir_end, i++, dp++)
209 if (cp != dp->dir_start)
211 size_t n = dp->dir_start - cp;
222 if (dp->conversion == '%')
226 if (!(dp->arg_index == ARG_NONE))
235 if (!(dp->arg_index != ARG_NONE))
238 if (dp->conversion == 'n'
    [all...]
  /external/iputils/
tftpd.c 351 struct tftphdr *dp; local
358 dp = r_init();
361 size = readit(file, &dp, pf->f_convert);
366 dp->th_opcode = htons((u_short)DATA);
367 dp->th_block = htons((u_short)block);
372 if (send(peer, dp, size + 4, confirmed) != size + 4) {
422 struct tftphdr *dp; local
428 dp = w_init();
445 n = recv(peer, dp, PKTSIZE, 0);
451 dp->th_opcode = ntohs((u_short)dp->th_opcode)
    [all...]
  /external/libpcap/
pcap-win32.c 191 u_char *dp = NULL; local
236 dp = ((u_char *)header) + dag_record_size;
244 dp += 4;
256 dp += 2;
316 if (bpf_filter(p->fcode.bf_insns, dp, packet_len, caplen) == 0)
329 (*callback)(user, &pcap_header, dp);
  /external/libppp/src/
lqr.c 129 u_int32_t *sp, *dp; local
133 dp = (u_int32_t *) dst;
134 for (n = 0; n < sizeof(struct lqrdata) / sizeof(u_int32_t); n++, sp++, dp++)
135 *dp = ntohl(*sp);
  /external/libusb/libusb/
descriptor.c 44 unsigned char *sp = source, *dp = dest; local
51 *dp++ = *sp++;
54 dp += ((unsigned long)dp & 1); /* Align to word boundary */
57 memcpy(dp, sp, 2);
60 *((uint16_t *)dp) = w;
63 dp += 2;
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_transfer.c 633 get_ptr_t dp = get_ptr(dst); local
644 memcpy(dp(dst, dstmap, dst->x0 + x, dst->y0 + y, dst->z),
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_clip.h 86 struct brw_reg dp; member in struct:brw_clip_compile::__anon23633
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_vbo_t.c 318 char *dp = nouveau_get_scratch(ctx, n * a->stride, local
324 memcpy(dp + j * a->stride,
  /external/mesa3d/src/mesa/tnl/
t_vb_program.c 102 GLfloat dp = (coord[0] * a + local
107 if (dp < 0) {
  /external/openssl/crypto/dh/
dh_ameth.c 240 unsigned char *dp = NULL; local
268 dplen = i2d_ASN1_INTEGER(prkey, &dp);
273 V_ASN1_SEQUENCE, params, dp, dplen))
279 if (dp != NULL)
280 OPENSSL_free(dp);
  /external/openssl/crypto/dsa/
dsa_ameth.c 307 unsigned char *dp = NULL; local
335 dplen = i2d_ASN1_INTEGER(prkey, &dp);
340 V_ASN1_SEQUENCE, params, dp, dplen))
346 if (dp != NULL)
347 OPENSSL_free(dp);
  /external/ppp/pppd/
chap-new.c 160 chap_register_digest(struct chap_digest_type *dp)
162 dp->next = chap_digests;
163 chap_digests = dp;
202 struct chap_digest_type *dp; local
208 for (dp = chap_digests; dp != NULL; dp = dp->next)
209 if (dp->code == digest_code)
211 if (dp == NULL
232 struct chap_digest_type *dp; local
    [all...]
  /external/skia/src/effects/gradients/
SkGradientShader.cpp 118 SkFixed dp = SK_Fixed1 / (desc.fCount - 1); local
119 SkFixed p = dp;
120 SkFixed scale = (desc.fCount - 1) << 8; // (1 << 24) / dp
125 p += dp;
    [all...]
  /external/tcpdump/
print-atalk.c 97 register const struct atDDP *dp; local
137 dp = (const struct atDDP *)bp;
138 snet = EXTRACT_16BITS(&dp->srcNet);
139 printf("%s.%s", ataddr_string(snet, dp->srcNode),
140 ddpskt_string(dp->srcSkt));
142 ataddr_string(EXTRACT_16BITS(&dp->dstNet), dp->dstNode),
143 ddpskt_string(dp->dstSkt));
147 ddp_print(bp, length, dp->type, snet, dp->srcNode, dp->srcSkt)
172 register const struct atDDP *dp; local
    [all...]
print-decnet.c 437 u_char *dp; local
470 dp = &(nspp[data_off]);
471 TCHECK2(*dp, nsplen - data_off);
472 pdata(dp, nsplen - data_off);
483 u_char *dp; local
516 dp = &(nspp[data_off]);
517 TCHECK2(*dp, nsplen - data_off);
518 pdata(dp, nsplen - data_off);
661 u_char *dp; local
701 dp = &(nspp[sizeof(struct cimsg)])
715 u_char *dp; local
773 u_char *dp; local
    [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
filter_functions.c 132 double rho=0.9, *inp, *dp, *dp2; local
143 dp=weoutbuf;
146 *dp++ = wfdata->weostate[k];
152 weo=dp;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/
Quad.java 95 PointF dp = new PointF(topRight.x - topLeft.x, topRight.y - topLeft.y); local
96 float len = dp.length();
97 PointF np = new PointF(height * (dp.y / len), height * (dp.x / len));
  /frameworks/native/opengl/libs/EGL/
egl.cpp 252 egl_display_ptr dp = get_display(dpy); local
253 if (!dp)
255 if (!dp->isReady())
258 return dp;
264 egl_display_ptr dp = validate_display(dpy); local
265 if (!dp)
266 return dp;
271 return dp;
  /hardware/invensense/60xx/libsensors_iio/software/core/mllite/linux/
ml_sysfs_helper.c 52 DIR *dp; local
56 dp = opendir(iio_dir);
57 if (dp == NULL) {
62 while (ent = readdir(dp), ent != NULL) {
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/
ml_sysfs_helper.c 63 DIR *dp; local
67 dp = opendir(iio_dir);
68 if (dp == NULL) {
73 while (ent = readdir(dp), ent != NULL) {
308 DIR *dp; local
311 dp = opendir(iio_dir);
312 if (dp == NULL) {
317 while (ent = readdir(dp), ent != NULL) {
  /system/core/libutils/
ProcessCallStack.cpp 127 DIR *dp; local
131 dp = opendir(PATH_SELF_TASK);
132 if (dp == NULL) {
157 while ((code = readdir_r(dp, &entry, &ep)) == 0 && ep != NULL) {
199 closedir(dp);
  /bionic/libc/bionic/
fts.c 545 struct dirent *dp; local
648 for (head = tail = NULL, nitems = 0; dirp && (dp = readdir(dirp));) {
649 if (!ISSET(FTS_SEEDOT) && ISDOT(dp->d_name))
652 if (!(p = fts_alloc(sp, dp->d_name, strlen(dp->d_name))))
654 if (strlen(dp->d_name) >= maxlen) { /* include space for NUL */
656 if (fts_palloc(sp, strlen(dp->d_name) +len + 1)) {
683 p->fts_pathlen = len + strlen(dp->d_name);
709 dp->d_type != DT_DIR && dp->d_type != DT_UNKNOWN
    [all...]
  /bionic/libc/upstream-netbsd/libc/regex/
engine.c 187 const char *dp; local
214 for (dp = start; dp < stop; dp++)
215 if (*dp == g->must[0] && (size_t)(stop - dp) >= g->mlen &&
216 memcmp(dp, g->must, g->mlen) == 0)
218 if (dp == stop) /* we didn't find g->must */
272 dp = dissect(m, m->coldp, endp, gf, gl);
282 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0)
373 const char *dp; local
576 const char *dp; local
    [all...]
  /external/chromium_org/third_party/libpng/
pngread.c 863 png_bytepp dp; local
870 dp = display_row;
871 if (rp != NULL && dp != NULL)
875 png_bytep dptr = *dp++;
886 else if (dp != NULL)
889 png_bytep dptr = *dp;
891 dp++;
    [all...]

Completed in 840 milliseconds

1 2 34 5 6 7 8 9