HomeSort by relevance Sort by last modified time
    Searched refs:dstp (Results 1 - 16 of 16) sorted by null

  /external/bison/lib/
vbitset.c 344 bitset_word *dstp = VBITSET_WORDS (dst); local
349 memset (dstp, -1, bytes);
357 bitset_word *dstp = VBITSET_WORDS (dst); local
362 memset (dstp, 0, bytes);
370 bitset_word *dstp = VBITSET_WORDS (dst); local
373 if (dstp[i])
384 bitset_word *dstp; local
394 dstp = VBITSET_WORDS (dst);
398 memcpy (dstp, srcp, sizeof (bitset_word) * ssize);
400 memset (dstp + sizeof (bitset_word) * ssize, 0
410 bitset_word *dstp; local
435 bitset_word *dstp = VBITSET_WORDS (dst); local
465 bitset_word *dstp = VBITSET_WORDS (dst); local
489 bitset_word *dstp = VBITSET_WORDS (dst); local
507 bitset_word *dstp; local
535 bitset_word *dstp; local
587 bitset_word *dstp; local
628 bitset_word *dstp; local
692 bitset_word *dstp; local
729 bitset_word *dstp; local
783 bitset_word *dstp; local
820 bitset_word *dstp; local
878 bitset_word *dstp; local
909 bitset_word *dstp; local
945 bitset_word *dstp; local
976 bitset_word *dstp; local
1012 bitset_word *dstp; local
1043 bitset_word *dstp; local
    [all...]
abitset.c 317 bitset_word *dstp = ABITSET_WORDS (dst); local
322 memset (dstp, -1, bytes);
330 bitset_word *dstp = ABITSET_WORDS (dst); local
335 memset (dstp, 0, bytes);
343 bitset_word *dstp = ABITSET_WORDS (dst); local
346 if (dstp[i])
357 bitset_word *dstp = ABITSET_WORDS (dst); local
360 if (srcp == dstp)
362 memcpy (dstp, srcp, sizeof (bitset_word) * size);
371 bitset_word *dstp = ABITSET_WORDS (dst) local
385 bitset_word *dstp = ABITSET_WORDS (dst); local
400 bitset_word *dstp = ABITSET_WORDS (dst); local
415 bitset_word *dstp = ABITSET_WORDS (dst); local
432 bitset_word *dstp = ABITSET_WORDS (dst); local
447 bitset_word *dstp = ABITSET_WORDS (dst); local
470 bitset_word *dstp = ABITSET_WORDS (dst); local
485 bitset_word *dstp = ABITSET_WORDS (dst); local
508 bitset_word *dstp = ABITSET_WORDS (dst); local
523 bitset_word *dstp = ABITSET_WORDS (dst); local
546 bitset_word *dstp = ABITSET_WORDS (dst); local
561 bitset_word *dstp = ABITSET_WORDS (dst); local
585 bitset_word *dstp = ABITSET_WORDS (dst); local
601 bitset_word *dstp = ABITSET_WORDS (dst); local
625 bitset_word *dstp = ABITSET_WORDS (dst); local
641 bitset_word *dstp = ABITSET_WORDS (dst); local
665 bitset_word *dstp = ABITSET_WORDS (dst); local
681 bitset_word *dstp = ABITSET_WORDS (dst); local
    [all...]
ebitset.c 1040 bitset_word *dstp; local
1089 dstp = EBITSET_WORDS (delt);
1096 for (i = 0; i < EBITSET_ELT_WORDS; i++, dstp++)
1100 if (*dstp != tmp)
1103 *dstp = tmp;
1109 for (i = 0; i < EBITSET_ELT_WORDS; i++, dstp++)
1113 if (*dstp != tmp)
1116 *dstp = tmp;
1122 for (i = 0; i < EBITSET_ELT_WORDS; i++, dstp++)
1126 if (*dstp != tmp
    [all...]
lbitset.c 1050 bitset_word *dstp; local
1112 dstp = dtmp->words;
1119 for (i = 0; i < LBITSET_ELT_WORDS; i++, dstp++)
1123 if (*dstp != tmp)
1126 *dstp = tmp;
1132 for (i = 0; i < LBITSET_ELT_WORDS; i++, dstp++)
1136 if (*dstp != tmp)
1139 *dstp = tmp;
1145 for (i = 0; i < LBITSET_ELT_WORDS; i++, dstp++)
1149 if (*dstp != tmp
    [all...]
  /external/clang/test/CodeGen/
2002-07-14-MiscTests.c 15 long long int dstp = (long long int) dstpp; local
17 while (dstp % 4 != 0)
19 ((unsigned char *) dstp)[0] = c;
20 dstp += 1;
  /external/libxml2/os400/
transcode.c 53 char * dstp; local
80 dstp = ts;
94 srcc = iconv(cd, &srcp, &srcc, &dstp, &dstc);
101 dstp[0] = dstp[1] = dstp[2] = dstp[3] = '\0';
105 ts = xmlRealloc(ts, (dstp - ts) + 4);
112 (xmlChar *) ts, dstp - ts + 1);
141 char * dstp; local
    [all...]
  /bionic/libc/dns/nameser/
ns_name.c 427 u_char *dstp; local
432 dstp = dst;
450 if (dstp + l + 1 >= dstlim || srcp + l >= eom) {
455 *dstp++ = n;
456 memcpy(dstp, srcp, (size_t)l);
457 dstp += l;
495 *dstp++ = 0;
497 *dstlen = dstp - dst;
528 u_char *dstp; local
534 dstp = dst
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
mbarrier.go 235 dstp := unsafe.Pointer(dst.array)
241 racewriterangepc(dstp, uintptr(n)*typ.size, callerpc, pc)
250 memmove(dstp, srcp, uintptr(n)*typ.size)
255 if uintptr(srcp) < uintptr(dstp) && uintptr(srcp)+uintptr(n)*typ.size > uintptr(dstp) {
257 // Copy backward, being careful not to move dstp/srcp
259 dstp = add(dstp, uintptr(n-1)*typ.size)
263 typedmemmove(typ, dstp, srcp)
267 dstp = add(dstp, -typ.size
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
mbarrier.go 235 dstp := unsafe.Pointer(dst.array)
241 racewriterangepc(dstp, uintptr(n)*typ.size, callerpc, pc)
250 memmove(dstp, srcp, uintptr(n)*typ.size)
255 if uintptr(srcp) < uintptr(dstp) && uintptr(srcp)+uintptr(n)*typ.size > uintptr(dstp) {
257 // Copy backward, being careful not to move dstp/srcp
259 dstp = add(dstp, uintptr(n-1)*typ.size)
263 typedmemmove(typ, dstp, srcp)
267 dstp = add(dstp, -typ.size
    [all...]
  /frameworks/native/cmds/installd/tests/
installd_utils_test.cpp 429 char *dstp = dst; local
432 EXPECT_EQ(0, append_and_increment(&dstp, src, &dst_size))
438 EXPECT_EQ(0, append_and_increment(&dstp, src, &dst_size))
448 char *dstp = dst; local
451 EXPECT_EQ(0, append_and_increment(&dstp, src, &dst_size))
457 EXPECT_EQ(-1, append_and_increment(&dstp, src, &dst_size))
  /external/tcpdump/
print-802_11.c     [all...]
  /external/libxml2/os400/iconv/bldcsndfa/
bldcsndfa.c 652 char * dstp; local
663 dstp = (char *) bytebuf;
665 iconv(icc, &srcp, &srcc, &dstp, &dstc);
666 dstp = (char *) bytebuf;
683 tp = uniquetransition(*dstp, f, (t_state *) NULL);
689 dstp++;
710 t = nfatransition(t, dstp[--cnt]);
712 newtransition(*dstp, f, t);
1692 char * dstp; local
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_atifragshader.c 330 GLfloat dst[2][4], *dstp; local
540 dstp = machine->Registers[dstreg - GL_REG_0_ATI];
546 dstp);
548 write_dst_addr(1, inst->DstReg[0].dstMod, 0, dst[1], dstp);
  /toolchain/binutils/binutils-2.25/bfd/
tekhex.c 295 getsym (char *dstp, char **srcp, unsigned int *lenp)
308 dstp[i] = src[i];
309 dstp[i] = 0;
  /external/valgrind/VEX/priv/
guest_ppc_helpers.c 186 unsigned char *srcp, *dstp; local
188 dstp = (unsigned char *)pU128_dst;
190 dstp[k] = *srcp;
  /external/compiler-rt/lib/msan/tests/
msan_test.cc     [all...]

Completed in 957 milliseconds